From 04b88b85eee0b54c35c6e08a619837d22ed06db4 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Mon, 22 Jun 2026 12:19:21 +0200 Subject: [PATCH 01/18] Migrate foundation to KMP --- .gitignore | 4 + .../ouds/app/ui/ChangeThemeSettingsDialog.kt | 2 - .../ui/components/ComponentVariantsScreen.kt | 7 -- build.gradle.kts | 2 + foundation/build.gradle.kts | 107 ++++++++++++++++-- .../{main => androidMain}/AndroidManifest.xml | 0 .../ouds/foundation/ExperimentalOudsApi.kt | 0 .../orange/ouds/foundation/InternalOudsApi.kt | 2 +- .../ouds/foundation/RestrictedOudsApi.kt | 2 +- .../ouds/foundation/extensions/StandardExt.kt | 2 +- .../ouds/foundation/extensions/StringExt.kt | 2 +- .../ouds/foundation/utilities/Preview.kt | 2 +- gradle/libs.versions.toml | 15 ++- 13 files changed, 121 insertions(+), 26 deletions(-) rename foundation/src/{main => androidMain}/AndroidManifest.xml (100%) rename foundation/src/{main/java => commonMain/kotlin}/com/orange/ouds/foundation/ExperimentalOudsApi.kt (100%) rename foundation/src/{main/java => commonMain/kotlin}/com/orange/ouds/foundation/InternalOudsApi.kt (98%) rename foundation/src/{main/java => commonMain/kotlin}/com/orange/ouds/foundation/RestrictedOudsApi.kt (99%) rename foundation/src/{main/java => commonMain/kotlin}/com/orange/ouds/foundation/extensions/StandardExt.kt (99%) rename foundation/src/{main/java => commonMain/kotlin}/com/orange/ouds/foundation/extensions/StringExt.kt (98%) rename foundation/src/{main/java => commonMain/kotlin}/com/orange/ouds/foundation/utilities/Preview.kt (98%) diff --git a/.gitignore b/.gitignore index 722f37f9a9..4aed9a63c7 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ .externalNativeBuild .cxx *.iml +.idea/artifacts .idea/caches .idea/compiler.xml .idea/deviceManager.xml @@ -40,3 +41,6 @@ app/src/main/res/raw/changelog.md # Mustache output Module.md + +# Kotlin Multiplatform +.kotlin/ diff --git a/app/src/main/java/com/orange/ouds/app/ui/ChangeThemeSettingsDialog.kt b/app/src/main/java/com/orange/ouds/app/ui/ChangeThemeSettingsDialog.kt index 68ea660167..dfa5ef90a5 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/ChangeThemeSettingsDialog.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/ChangeThemeSettingsDialog.kt @@ -15,7 +15,6 @@ package com.orange.ouds.app.ui import androidx.annotation.StringRes import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.padding import androidx.compose.runtime.Composable @@ -23,7 +22,6 @@ import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.saveable.rememberSaveable import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.res.stringResource import androidx.compose.ui.tooling.preview.PreviewLightDark diff --git a/app/src/main/java/com/orange/ouds/app/ui/components/ComponentVariantsScreen.kt b/app/src/main/java/com/orange/ouds/app/ui/components/ComponentVariantsScreen.kt index c6aab601ed..3f7649a33e 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/components/ComponentVariantsScreen.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/components/ComponentVariantsScreen.kt @@ -14,18 +14,11 @@ package com.orange.ouds.app.ui.components import androidx.compose.foundation.clickable import androidx.compose.foundation.layout.PaddingValues -import androidx.compose.foundation.layout.WindowInsets -import androidx.compose.foundation.layout.WindowInsetsSides -import androidx.compose.foundation.layout.asPaddingValues -import androidx.compose.foundation.layout.consumeWindowInsets import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.only import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.statusBars import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.items import androidx.compose.material3.Text -import androidx.compose.material3.TopAppBarDefaults import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier import androidx.compose.ui.res.stringResource diff --git a/build.gradle.kts b/build.gradle.kts index adfd08fe28..509b4f6c94 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,6 +16,8 @@ import com.orange.ouds.gradle.releaseVersion plugins { kotlin("jvm") alias(libs.plugins.compose.compiler) apply false + alias(libs.plugins.compose.multiplatform) apply false + id(libs.plugins.kotlin.multiplatform.get().pluginId) apply false id(libs.plugins.firebase.appdistribution.get().pluginId) apply false alias(libs.plugins.firebase.crashlytics) apply false alias(libs.plugins.google.services) apply false diff --git a/foundation/build.gradle.kts b/foundation/build.gradle.kts index fe2044847f..d53df280ce 100644 --- a/foundation/build.gradle.kts +++ b/foundation/build.gradle.kts @@ -11,20 +11,105 @@ */ plugins { - id("library") alias(libs.plugins.compose.compiler) + alias(libs.plugins.compose.multiplatform) + id(libs.plugins.kotlin.multiplatform.get().pluginId) + id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) } -android { - namespace = "com.orange.ouds.foundation" +kotlin { + jvmToolchain(17) - buildFeatures { - compose = true + // Target declarations - add or remove as needed below. These define + // which platforms this KMP module supports. + // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets + android { + namespace = "com.orange.ouds.foundation" + compileSdk = libs.versions.androidCompileSdk.get().toInt() + minSdk = libs.versions.androidMinSdk.get().toInt() + + withHostTestBuilder { + } + + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + } + + // For iOS targets, this is also where you should + // configure native binary output. For more information, see: + // https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks + + // A step-by-step guide on how to include this library in an XCode + // project can be found here: + // https://developer.android.com/kotlin/multiplatform/migrate + val xcfName = "oudsFoundation" + +// iosX64 { +// binaries.framework { +// baseName = xcfName +// } +// } + + iosArm64 { + binaries.framework { + baseName = xcfName + } } -} -dependencies { - implementation(platform(libs.androidx.compose.bom)) - implementation(libs.androidx.compose.ui) - api(libs.androidx.compose.ui.tooling.preview) -} \ No newline at end of file + iosSimulatorArm64 { + binaries.framework { + baseName = xcfName + } + } + + // Source set declarations. + // Declaring a target automatically creates a source set with the same name. By default, the + // Kotlin Gradle Plugin creates additional source sets that depend on each other, since it is + // common to share sources between related targets. + // See: https://kotlinlang.org/docs/multiplatform-hierarchy.html + sourceSets { + commonMain { + dependencies { + implementation(libs.kotlin.stdlib) + // Add KMP dependencies here + implementation(libs.compose.ui) + } + } + + commonTest { + dependencies { + implementation(libs.kotlin.test) + } + } + + androidMain { + dependencies { + // Add Android-specific dependencies here. Note that this source set depends on + // commonMain by default and will correctly pull the Android artifacts of any KMP + // dependencies declared in commonMain. + api(libs.androidx.compose.ui.tooling.preview) + } + } + + getByName("androidDeviceTest") { + dependencies { + implementation(libs.androidx.junit) + implementation(libs.androidx.runner) + implementation(libs.core) + } + } + + iosMain { + dependencies { + // Add iOS-specific dependencies here. This a source set created by Kotlin Gradle + // Plugin (KGP) that each specific iOS target (e.g., iosX64) depends on as + // part of KMP’s default source set hierarchy. Note that this source set depends + // on common by default and will correctly pull the iOS artifacts of any + // KMP dependencies declared in commonMain. + } + } + } +} diff --git a/foundation/src/main/AndroidManifest.xml b/foundation/src/androidMain/AndroidManifest.xml similarity index 100% rename from foundation/src/main/AndroidManifest.xml rename to foundation/src/androidMain/AndroidManifest.xml diff --git a/foundation/src/main/java/com/orange/ouds/foundation/ExperimentalOudsApi.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/ExperimentalOudsApi.kt similarity index 100% rename from foundation/src/main/java/com/orange/ouds/foundation/ExperimentalOudsApi.kt rename to foundation/src/commonMain/kotlin/com/orange/ouds/foundation/ExperimentalOudsApi.kt diff --git a/foundation/src/main/java/com/orange/ouds/foundation/InternalOudsApi.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/InternalOudsApi.kt similarity index 98% rename from foundation/src/main/java/com/orange/ouds/foundation/InternalOudsApi.kt rename to foundation/src/commonMain/kotlin/com/orange/ouds/foundation/InternalOudsApi.kt index 0a71617d73..4accc922ae 100644 --- a/foundation/src/main/java/com/orange/ouds/foundation/InternalOudsApi.kt +++ b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/InternalOudsApi.kt @@ -7,7 +7,7 @@ * the text of which is available at https://opensource.org/license/MIT/ * or see the "LICENSE" file for more details. * - * Software description: Android library of reusable graphical components + * Software description: Android library of reusable graphical components */ package com.orange.ouds.foundation diff --git a/foundation/src/main/java/com/orange/ouds/foundation/RestrictedOudsApi.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/RestrictedOudsApi.kt similarity index 99% rename from foundation/src/main/java/com/orange/ouds/foundation/RestrictedOudsApi.kt rename to foundation/src/commonMain/kotlin/com/orange/ouds/foundation/RestrictedOudsApi.kt index 591d741f50..e4d2c583e6 100644 --- a/foundation/src/main/java/com/orange/ouds/foundation/RestrictedOudsApi.kt +++ b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/RestrictedOudsApi.kt @@ -7,7 +7,7 @@ * the text of which is available at https://opensource.org/license/MIT/ * or see the "LICENSE" file for more details. * - * Software description: Android library of reusable graphical components + * Software description: Android library of reusable graphical components */ package com.orange.ouds.foundation diff --git a/foundation/src/main/java/com/orange/ouds/foundation/extensions/StandardExt.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/extensions/StandardExt.kt similarity index 99% rename from foundation/src/main/java/com/orange/ouds/foundation/extensions/StandardExt.kt rename to foundation/src/commonMain/kotlin/com/orange/ouds/foundation/extensions/StandardExt.kt index 248e62654c..f05bdb4782 100644 --- a/foundation/src/main/java/com/orange/ouds/foundation/extensions/StandardExt.kt +++ b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/extensions/StandardExt.kt @@ -7,7 +7,7 @@ * the text of which is available at https://opensource.org/license/MIT/ * or see the "LICENSE" file for more details. * - * Software description: Android library of reusable graphical components + * Software description: Android library of reusable graphical components */ package com.orange.ouds.foundation.extensions diff --git a/foundation/src/main/java/com/orange/ouds/foundation/extensions/StringExt.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/extensions/StringExt.kt similarity index 98% rename from foundation/src/main/java/com/orange/ouds/foundation/extensions/StringExt.kt rename to foundation/src/commonMain/kotlin/com/orange/ouds/foundation/extensions/StringExt.kt index e76076bf1c..c15b9f9fff 100644 --- a/foundation/src/main/java/com/orange/ouds/foundation/extensions/StringExt.kt +++ b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/extensions/StringExt.kt @@ -7,7 +7,7 @@ * the text of which is available at https://opensource.org/license/MIT/ * or see the "LICENSE" file for more details. * - * Software description: Android library of reusable graphical components + * Software description: Android library of reusable graphical components */ package com.orange.ouds.foundation.extensions diff --git a/foundation/src/main/java/com/orange/ouds/foundation/utilities/Preview.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Preview.kt similarity index 98% rename from foundation/src/main/java/com/orange/ouds/foundation/utilities/Preview.kt rename to foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Preview.kt index cc45416487..be3e492aee 100644 --- a/foundation/src/main/java/com/orange/ouds/foundation/utilities/Preview.kt +++ b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Preview.kt @@ -7,7 +7,7 @@ * the text of which is available at https://opensource.org/license/MIT/ * or see the "LICENSE" file for more details. * - * Software description: Android library of reusable graphical components + * Software description: Android library of reusable graphical components */ package com.orange.ouds.foundation.utilities diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d2dd915211..a8ea06a8ad 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -34,6 +34,10 @@ navigationCompose = "2.9.8" paparazzi = "2.0.0-alpha05" sdkCommon = "32.2.1" zxing = "3.5.4" +runner = "1.5.2" +coreVersion = "1.5.0" +junit = "1.3.0" +compose-multiplatform = "1.11.1" [libraries] android-gradle-plugin = { group = "com.android.tools.build", name = "gradle", version.ref = "gradle" } @@ -55,6 +59,7 @@ androidx-core = { group = "androidx.core", name = "core", version.ref = "core" } androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "dataStorePreferences" } androidx-hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hiltNavigationCompose" } androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" } +compose-ui = { module = "org.jetbrains.compose.ui:ui", version.ref = "compose-multiplatform" } dokka-android-documentation-plugin = { module = "org.jetbrains.dokka:android-documentation-plugin", version.ref = "dokka" } dokka-base = { module = "org.jetbrains.dokka:dokka-base", version.ref = "dokka" } dokka-core = { module = "org.jetbrains.dokka:dokka-core", version.ref = "dokka" } @@ -78,6 +83,8 @@ json = { module = "org.json:json", version.ref = "json" } kotlin-gradle-plugin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version.ref = "kotlin" } kotlin-metadata-jvm = { group = "org.jetbrains.kotlin", name = "kotlin-metadata-jvm", version.ref = "kotlin" } kotlin-reflect = { group = "org.jetbrains.kotlin", name = "kotlin-reflect", version.ref = "kotlin" } +kotlin-stdlib = { group = "org.jetbrains.kotlin", name = "kotlin-stdlib", version.ref = "kotlin" } +kotlin-test = { group = "org.jetbrains.kotlin", name = "kotlin-test", version.ref = "kotlin" } material = { group = "com.google.android.material", name = "material", version.ref = "material" } mockito-android = { group = "org.mockito", name = "mockito-android", version.ref = "mockitoAndroid" } mockito-kotlin = { group = "org.mockito.kotlin", name = "mockito-kotlin", version.ref = "mockitoKotlin" } @@ -85,18 +92,24 @@ mustache-java = { module = "com.github.spullara.mustache.java:compiler", version paparazzi = { module = "app.cash.paparazzi:paparazzi", version.ref = "paparazzi" } zxing-core = { module = "com.google.zxing:core", version.ref = "zxing" } zxing-javase = { module = "com.google.zxing:javase", version.ref = "zxing" } +androidx-runner = { group = "androidx.test", name = "runner", version.ref = "runner" } +core = { group = "androidx.test", name = "core", version.ref = "coreVersion" } +androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junit" } [plugins] android-application = { id = "com.android.application", version.ref = "gradle" } +android-kotlin-multiplatform-library = { id = "com.android.kotlin.multiplatform.library", version.ref = "gradle" } android-library = { id = "com.android.library", version.ref = "gradle" } +android-lint = { id = "com.android.lint", version.ref = "gradle" } compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } +compose-multiplatform = { id = "org.jetbrains.compose", version.ref = "compose-multiplatform" } dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } firebase-appdistribution = { id = "com.google.firebase.appdistribution", version.ref = "firebaseAppDistribution" } firebase-crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "firebaseCrashlytics" } google-services = { id = "com.google.gms.google-services", version.ref = "googleServices" } hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" } kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } +kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" } ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } paparazzi = { id = "app.cash.paparazzi", version.ref = "paparazzi" } - From b56a5b75a2c692baa894834575dcd856688c61db Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Tue, 23 Jun 2026 11:30:29 +0200 Subject: [PATCH 02/18] Migrate global-raw-tokens to KMP --- global-raw-tokens/build.gradle.kts | 112 ++++++++++++++++-- .../{main => androidMain}/AndroidManifest.xml | 0 .../ouds/tokens/raw/OudsBorderRawTokens.kt | 0 .../ouds/tokens/raw/OudsColorRawTokens.kt | 0 .../ouds/tokens/raw/OudsDimensionRawTokens.kt | 0 .../ouds/tokens/raw/OudsEffectRawTokens.kt | 0 .../ouds/tokens/raw/OudsElevationRawTokens.kt | 0 .../ouds/tokens/raw/OudsFontRawTokens.kt | 0 .../ouds/tokens/raw/OudsGridRawTokens.kt | 0 .../ouds/tokens/raw/OudsOpacityRawTokens.kt | 0 gradle/libs.versions.toml | 2 + 11 files changed, 103 insertions(+), 11 deletions(-) rename global-raw-tokens/src/{main => androidMain}/AndroidManifest.xml (100%) rename global-raw-tokens/src/{main/java => commonMain/kotlin}/com/orange/ouds/tokens/raw/OudsBorderRawTokens.kt (100%) rename global-raw-tokens/src/{main/java => commonMain/kotlin}/com/orange/ouds/tokens/raw/OudsColorRawTokens.kt (100%) rename global-raw-tokens/src/{main/java => commonMain/kotlin}/com/orange/ouds/tokens/raw/OudsDimensionRawTokens.kt (100%) rename global-raw-tokens/src/{main/java => commonMain/kotlin}/com/orange/ouds/tokens/raw/OudsEffectRawTokens.kt (100%) rename global-raw-tokens/src/{main/java => commonMain/kotlin}/com/orange/ouds/tokens/raw/OudsElevationRawTokens.kt (100%) rename global-raw-tokens/src/{main/java => commonMain/kotlin}/com/orange/ouds/tokens/raw/OudsFontRawTokens.kt (100%) rename global-raw-tokens/src/{main/java => commonMain/kotlin}/com/orange/ouds/tokens/raw/OudsGridRawTokens.kt (100%) rename global-raw-tokens/src/{main/java => commonMain/kotlin}/com/orange/ouds/tokens/raw/OudsOpacityRawTokens.kt (100%) diff --git a/global-raw-tokens/build.gradle.kts b/global-raw-tokens/build.gradle.kts index 9126f6b430..0688148aea 100644 --- a/global-raw-tokens/build.gradle.kts +++ b/global-raw-tokens/build.gradle.kts @@ -11,19 +11,109 @@ */ plugins { - id("dokka") - id("library") + //id("dokka") + alias(libs.plugins.compose.compiler) + alias(libs.plugins.compose.multiplatform) + id(libs.plugins.kotlin.multiplatform.get().pluginId) + id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) } // Temporary workaround for https://issuetracker.google.com/issues/476936389 -val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) -dokkaKotlinAdapter.apply(project) +//val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) +//dokkaKotlinAdapter.apply(project) -android { - namespace = "com.orange.ouds.tokens.global.raw" -} +kotlin { + jvmToolchain(17) + + // Target declarations - add or remove as needed below. These define + // which platforms this KMP module supports. + // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets + android { + namespace = "com.orange.ouds.tokens.global.raw" + compileSdk = libs.versions.androidCompileSdk.get().toInt() + minSdk = libs.versions.androidMinSdk.get().toInt() + + withHostTestBuilder { + } + + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + } + + // For iOS targets, this is also where you should + // configure native binary output. For more information, see: + // https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks + + // A step-by-step guide on how to include this library in an XCode + // project can be found here: + // https://developer.android.com/kotlin/multiplatform/migrate + val xcfName = "oudsGlobalRawTokens" + +// iosX64 { +// binaries.framework { +// baseName = xcfName +// } +// } -dependencies { - api(platform(libs.androidx.compose.bom)) - api(libs.androidx.compose.material3) -} \ No newline at end of file + iosArm64 { + binaries.framework { + baseName = xcfName + } + } + + iosSimulatorArm64 { + binaries.framework { + baseName = xcfName + } + } + + // Source set declarations. + // Declaring a target automatically creates a source set with the same name. By default, the + // Kotlin Gradle Plugin creates additional source sets that depend on each other, since it is + // common to share sources between related targets. + // See: https://kotlinlang.org/docs/multiplatform-hierarchy.html + sourceSets { + commonMain { + dependencies { + implementation(libs.kotlin.stdlib) + // Add KMP dependencies here + api(libs.compose.material3) + } + } + + commonTest { + dependencies { + implementation(libs.kotlin.test) + } + } + + androidMain { + dependencies { + // Add Android-specific dependencies here. Note that this source set depends on + // commonMain by default and will correctly pull the Android artifacts of any KMP + // dependencies declared in commonMain. + } + } + + getByName("androidDeviceTest") { + dependencies { + implementation(libs.androidx.junit) + implementation(libs.androidx.runner) + implementation(libs.core) + } + } + + iosMain { + dependencies { + // Add iOS-specific dependencies here. This a source set created by Kotlin Gradle + // Plugin (KGP) that each specific iOS target (e.g., iosX64) depends on as + // part of KMP’s default source set hierarchy. Note that this source set depends + // on common by default and will correctly pull the iOS artifacts of any + // KMP dependencies declared in commonMain. + } + } + } +} diff --git a/global-raw-tokens/src/main/AndroidManifest.xml b/global-raw-tokens/src/androidMain/AndroidManifest.xml similarity index 100% rename from global-raw-tokens/src/main/AndroidManifest.xml rename to global-raw-tokens/src/androidMain/AndroidManifest.xml diff --git a/global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsBorderRawTokens.kt b/global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsBorderRawTokens.kt similarity index 100% rename from global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsBorderRawTokens.kt rename to global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsBorderRawTokens.kt diff --git a/global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsColorRawTokens.kt b/global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsColorRawTokens.kt similarity index 100% rename from global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsColorRawTokens.kt rename to global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsColorRawTokens.kt diff --git a/global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsDimensionRawTokens.kt b/global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsDimensionRawTokens.kt similarity index 100% rename from global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsDimensionRawTokens.kt rename to global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsDimensionRawTokens.kt diff --git a/global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsEffectRawTokens.kt b/global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsEffectRawTokens.kt similarity index 100% rename from global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsEffectRawTokens.kt rename to global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsEffectRawTokens.kt diff --git a/global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsElevationRawTokens.kt b/global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsElevationRawTokens.kt similarity index 100% rename from global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsElevationRawTokens.kt rename to global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsElevationRawTokens.kt diff --git a/global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsFontRawTokens.kt b/global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsFontRawTokens.kt similarity index 100% rename from global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsFontRawTokens.kt rename to global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsFontRawTokens.kt diff --git a/global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsGridRawTokens.kt b/global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsGridRawTokens.kt similarity index 100% rename from global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsGridRawTokens.kt rename to global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsGridRawTokens.kt diff --git a/global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsOpacityRawTokens.kt b/global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsOpacityRawTokens.kt similarity index 100% rename from global-raw-tokens/src/main/java/com/orange/ouds/tokens/raw/OudsOpacityRawTokens.kt rename to global-raw-tokens/src/commonMain/kotlin/com/orange/ouds/tokens/raw/OudsOpacityRawTokens.kt diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index a8ea06a8ad..7aba136fb3 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -38,6 +38,7 @@ runner = "1.5.2" coreVersion = "1.5.0" junit = "1.3.0" compose-multiplatform = "1.11.1" +compose-material3 = "1.9.0" [libraries] android-gradle-plugin = { group = "com.android.tools.build", name = "gradle", version.ref = "gradle" } @@ -59,6 +60,7 @@ androidx-core = { group = "androidx.core", name = "core", version.ref = "core" } androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "dataStorePreferences" } androidx-hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hiltNavigationCompose" } androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" } +compose-material3 = { module = "org.jetbrains.compose.material3:material3", version.ref = "compose-material3" } compose-ui = { module = "org.jetbrains.compose.ui:ui", version.ref = "compose-multiplatform" } dokka-android-documentation-plugin = { module = "org.jetbrains.dokka:android-documentation-plugin", version.ref = "dokka" } dokka-base = { module = "org.jetbrains.dokka:dokka-base", version.ref = "dokka" } From 682c0c7e3060e57d41ab8ba97b6e3460d0b8804d Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Tue, 23 Jun 2026 12:47:51 +0200 Subject: [PATCH 03/18] Migrate theme-contract to KMP --- .../ouds/app/ui/ChangeThemeSettingsDialog.kt | 2 +- .../java/com/orange/ouds/app/ui/ThemeState.kt | 7 +- .../com/orange/ouds/theme/OudsVersion.kt | 2 +- .../com/orange/ouds/core/theme/OudsBorders.kt | 3 +- theme-contract/build.gradle.kts | 128 ++++++++++++++---- .../{main => androidMain}/AndroidManifest.xml | 0 .../ouds/theme/OudsDrawableResources.kt | 0 .../orange/ouds/theme/OudsThemeContract.kt | 0 .../orange/ouds/theme/OudsThemeSettings.kt | 35 ++++- .../com/orange/ouds/theme/OudsVersion.kt | 0 .../ouds/theme/tokens/OudsBorderKeyToken.kt | 0 .../ouds/theme/tokens/OudsColorKeyToken.kt | 0 .../ouds/theme/tokens/OudsEffectKeyToken.kt | 0 .../theme/tokens/OudsElevationKeyToken.kt | 0 .../ouds/theme/tokens/OudsGridKeyToken.kt | 0 .../orange/ouds/theme/tokens/OudsKeyToken.kt | 0 .../tokens/OudsLightDarkColorKeyToken.kt | 0 .../ouds/theme/tokens/OudsOpacityKeyToken.kt | 0 .../ouds/theme/tokens/OudsSizeKeyToken.kt | 0 .../ouds/theme/tokens/OudsSpaceKeyToken.kt | 0 .../theme/tokens/OudsTypographyKeyToken.kt | 0 .../tokens/components/OudsAlertTokens.kt | 0 .../tokens/components/OudsBadgeTokens.kt | 0 .../theme/tokens/components/OudsBarTokens.kt | 0 .../tokens/components/OudsBulletListTokens.kt | 0 .../tokens/components/OudsButtonMonoTokens.kt | 0 .../tokens/components/OudsButtonTokens.kt | 0 .../tokens/components/OudsCheckboxTokens.kt | 0 .../theme/tokens/components/OudsChipTokens.kt | 0 .../tokens/components/OudsComponentsTokens.kt | 0 .../components/OudsControlItemTokens.kt | 0 .../tokens/components/OudsDividerTokens.kt | 0 .../theme/tokens/components/OudsIconTokens.kt | 0 .../tokens/components/OudsInputTagTokens.kt | 0 .../tokens/components/OudsLightDarkColor.kt | 0 .../tokens/components/OudsLinkMonoTokens.kt | 0 .../theme/tokens/components/OudsLinkTokens.kt | 0 .../components/OudsPinCodeInputTokens.kt | 0 .../components/OudsProgressIndicatorTokens.kt | 0 .../components/OudsRadioButtonTokens.kt | 0 .../tokens/components/OudsSwitchTokens.kt | 0 .../theme/tokens/components/OudsTagTokens.kt | 0 .../tokens/components/OudsTextAreaTokens.kt | 0 .../tokens/components/OudsTextInputTokens.kt | 0 .../material/OudsMaterialColorTokens.kt | 0 .../semantic/OudsBorderSemanticTokens.kt | 0 .../semantic/OudsColorActionSemanticTokens.kt | 0 .../semantic/OudsColorAlwaysSemanticTokens.kt | 0 .../semantic/OudsColorBgSemanticTokens.kt | 0 .../semantic/OudsColorBorderSemanticTokens.kt | 0 .../OudsColorContentSemanticTokens.kt | 0 .../semantic/OudsColorModeSemanticTokens.kt | 0 .../OudsColorOpacitySemanticTokens.kt | 0 .../OudsColorOverlaySemanticTokens.kt | 0 .../OudsColorRepositorySemanticTokens.kt | 0 .../semantic/OudsColorSemanticTokens.kt | 0 .../OudsColorSurfaceSemanticTokens.kt | 0 .../semantic/OudsEffectSemanticTokens.kt | 0 .../semantic/OudsElevationSemanticTokens.kt | 0 .../tokens/semantic/OudsFontSemanticTokens.kt | 0 .../tokens/semantic/OudsGridSemanticTokens.kt | 0 .../semantic/OudsOpacitySemanticTokens.kt | 0 .../tokens/semantic/OudsSizeSemanticTokens.kt | 0 .../semantic/OudsSpaceSemanticTokens.kt | 0 64 files changed, 143 insertions(+), 34 deletions(-) rename theme-contract/src/{main => androidMain}/AndroidManifest.xml (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/OudsDrawableResources.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/OudsThemeContract.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/OudsThemeSettings.kt (74%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/OudsVersion.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsBorderKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsColorKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsEffectKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsElevationKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsGridKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsLightDarkColorKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsOpacityKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsSpaceKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/OudsTypographyKeyToken.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsAlertTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsBadgeTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsBarTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsBulletListTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsButtonMonoTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsCheckboxTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsChipTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsControlItemTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsDividerTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsIconTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsInputTagTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsLightDarkColor.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsLinkMonoTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsLinkTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsPinCodeInputTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsProgressIndicatorTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsRadioButtonTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsSwitchTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsTagTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsTextAreaTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/components/OudsTextInputTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/material/OudsMaterialColorTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsBorderSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorActionSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorAlwaysSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorBgSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorBorderSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorContentSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorModeSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorOpacitySemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorOverlaySemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorRepositorySemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsColorSurfaceSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsEffectSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsElevationSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsFontSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsGridSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsOpacitySemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt (100%) rename theme-contract/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/tokens/semantic/OudsSpaceSemanticTokens.kt (100%) diff --git a/app/src/main/java/com/orange/ouds/app/ui/ChangeThemeSettingsDialog.kt b/app/src/main/java/com/orange/ouds/app/ui/ChangeThemeSettingsDialog.kt index dfa5ef90a5..899cfbd7df 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/ChangeThemeSettingsDialog.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/ChangeThemeSettingsDialog.kt @@ -51,7 +51,7 @@ fun ChangeThemeSettingsDialog(themeState: ThemeState, onThemeSettingsChange: (Ou @Composable private fun ChangeThemeSettingsDialogContent(themeState: ThemeState, onThemeSettingsChange: (OudsThemeSettings) -> Unit) { - var themeSettings by rememberSaveable { mutableStateOf(themeState.settings) } + var themeSettings by rememberSaveable(stateSaver = OudsThemeSettings.Saver) { mutableStateOf(themeState.settings) } DialogContent( title = stringResource(R.string.app_themeSettingsDialog_label) ) { diff --git a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt index 26e1091e27..9d7caef3a9 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt @@ -64,17 +64,18 @@ class ThemeState( save = { state -> with(state) { listOf( - settings, + with(OudsThemeSettings.Saver) { save(settings) }, themeNames, currentThemeName, areDownloadableOrangeFontFamilyPreloaded ) } }, - restore = { list -> + restore = { list: List -> + val settings = list[0]?.let { OudsThemeSettings.Saver.restore(it) } @Suppress("UNCHECKED_CAST") ThemeState( - list[0] as OudsThemeSettings, + settings as OudsThemeSettings, list[1] as List, list[2] as String, list[3] as Boolean diff --git a/buildSrc/src/main/kotlin/com/orange/ouds/theme/OudsVersion.kt b/buildSrc/src/main/kotlin/com/orange/ouds/theme/OudsVersion.kt index c09fe9bea2..3a42862f3a 120000 --- a/buildSrc/src/main/kotlin/com/orange/ouds/theme/OudsVersion.kt +++ b/buildSrc/src/main/kotlin/com/orange/ouds/theme/OudsVersion.kt @@ -1 +1 @@ -../../../../../../../../theme-contract/src/main/java/com/orange/ouds/theme/OudsVersion.kt \ No newline at end of file +../../../../../../../../theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsVersion.kt \ No newline at end of file diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsBorders.kt b/core/src/main/java/com/orange/ouds/core/theme/OudsBorders.kt index 191375c3a1..76d311a534 100644 --- a/core/src/main/java/com/orange/ouds/core/theme/OudsBorders.kt +++ b/core/src/main/java/com/orange/ouds/core/theme/OudsBorders.kt @@ -37,7 +37,6 @@ import androidx.compose.ui.unit.isSpecified import com.orange.ouds.foundation.InternalOudsApi import com.orange.ouds.theme.tokens.OudsBorderKeyToken import com.orange.ouds.theme.tokens.semantic.OudsBorderSemanticTokens -import java.util.Locale /** * Holds all the border-related properties defined in the OUDS theme. @@ -217,7 +216,7 @@ enum class OudsBorderStyle { */ fun fromString(string: String): OudsBorderStyle { return try { - OudsBorderStyle.valueOf(string.lowercase().replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() }) + OudsBorderStyle.valueOf(string.lowercase().replaceFirstChar { it.uppercase() }) } catch (exception: IllegalArgumentException) { // If the provided border style value is unknown, return the default border style None diff --git a/theme-contract/build.gradle.kts b/theme-contract/build.gradle.kts index c21155b884..b425c6dbcd 100644 --- a/theme-contract/build.gradle.kts +++ b/theme-contract/build.gradle.kts @@ -11,37 +11,119 @@ */ plugins { - id("dokka") - id("library") + //id("dokka") alias(libs.plugins.compose.compiler) - id(libs.plugins.kotlin.parcelize.get().pluginId) // https://github.com/gradle/gradle/issues/20084#issuecomment-1060822638 + alias(libs.plugins.compose.multiplatform) + id(libs.plugins.kotlin.multiplatform.get().pluginId) + id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) } // Temporary workaround for https://issuetracker.google.com/issues/476936389 -val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) -dokkaKotlinAdapter.apply(project) +//val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) +//dokkaKotlinAdapter.apply(project) -android { - namespace = "com.orange.ouds.theme" +kotlin { + jvmToolchain(17) - buildFeatures { - compose = true + compilerOptions { + freeCompilerArgs.addAll( + "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", + "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", + "-opt-in=com.orange.ouds.foundation.InternalOudsApi" + ) } - kotlin { - compilerOptions { - freeCompilerArgs.addAll( - "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", - "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", - "-opt-in=com.orange.ouds.foundation.InternalOudsApi" - ) + // Target declarations - add or remove as needed below. These define + // which platforms this KMP module supports. + // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets + android { + namespace = "com.orange.ouds.theme" + compileSdk = libs.versions.androidCompileSdk.get().toInt() + minSdk = libs.versions.androidMinSdk.get().toInt() + + withHostTestBuilder { + } + + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } } -} -dependencies { - implementation(project(":foundation")) - implementation(project(":global-raw-tokens")) - api(platform(libs.androidx.compose.bom)) - api(libs.androidx.compose.material3) -} \ No newline at end of file + // For iOS targets, this is also where you should + // configure native binary output. For more information, see: + // https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks + + // A step-by-step guide on how to include this library in an XCode + // project can be found here: + // https://developer.android.com/kotlin/multiplatform/migrate + val xcfName = "oudsThemeContract" + +// iosX64 { +// binaries.framework { +// baseName = xcfName +// } +// } + + iosArm64 { + binaries.framework { + baseName = xcfName + } + } + + iosSimulatorArm64 { + binaries.framework { + baseName = xcfName + } + } + + // Source set declarations. + // Declaring a target automatically creates a source set with the same name. By default, the + // Kotlin Gradle Plugin creates additional source sets that depend on each other, since it is + // common to share sources between related targets. + // See: https://kotlinlang.org/docs/multiplatform-hierarchy.html + sourceSets { + commonMain { + dependencies { + implementation(libs.kotlin.stdlib) + // Add KMP dependencies here + implementation(project(":foundation")) + implementation(project(":global-raw-tokens")) + api(libs.compose.material3) + } + } + + commonTest { + dependencies { + implementation(libs.kotlin.test) + } + } + + androidMain { + dependencies { + // Add Android-specific dependencies here. Note that this source set depends on + // commonMain by default and will correctly pull the Android artifacts of any KMP + // dependencies declared in commonMain. + } + } + + getByName("androidDeviceTest") { + dependencies { + implementation(libs.androidx.junit) + implementation(libs.androidx.runner) + implementation(libs.core) + } + } + + iosMain { + dependencies { + // Add iOS-specific dependencies here. This a source set created by Kotlin Gradle + // Plugin (KGP) that each specific iOS target (e.g., iosX64) depends on as + // part of KMP’s default source set hierarchy. Note that this source set depends + // on common by default and will correctly pull the iOS artifacts of any + // KMP dependencies declared in commonMain. + } + } + } +} diff --git a/theme-contract/src/main/AndroidManifest.xml b/theme-contract/src/androidMain/AndroidManifest.xml similarity index 100% rename from theme-contract/src/main/AndroidManifest.xml rename to theme-contract/src/androidMain/AndroidManifest.xml diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/OudsDrawableResources.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/OudsDrawableResources.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/OudsThemeContract.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/OudsThemeContract.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/OudsThemeSettings.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeSettings.kt similarity index 74% rename from theme-contract/src/main/java/com/orange/ouds/theme/OudsThemeSettings.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeSettings.kt index c6b50b3d99..17d10ce386 100644 --- a/theme-contract/src/main/java/com/orange/ouds/theme/OudsThemeSettings.kt +++ b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeSettings.kt @@ -12,8 +12,9 @@ package com.orange.ouds.theme -import android.os.Parcelable -import kotlinx.parcelize.Parcelize +import androidx.compose.runtime.saveable.listSaver +import com.orange.ouds.theme.OudsThemeSettings.Companion.Saver +import kotlin.jvm.JvmOverloads /** * Theme settings. @@ -45,10 +46,36 @@ import kotlinx.parcelize.Parcelize * * @constructor Creates an instance of [OudsThemeSettings]. */ -@Parcelize data class OudsThemeSettings @JvmOverloads constructor( val roundedCornerButtons: Boolean? = null, val roundedCornerTextInputs: Boolean? = null, val roundedCornerAlertMessages: Boolean? = null, val roundedCornerProgressIndicators: Boolean? = null -) : Parcelable \ No newline at end of file +) { + companion object { + + /** + * [Saver] implementation for [OudsThemeSettings] to support saving/restoring state in Compose. + */ + val Saver = listSaver( + save = { settings -> + with(settings) { + listOf( + roundedCornerButtons, + roundedCornerTextInputs, + roundedCornerAlertMessages, + roundedCornerProgressIndicators + ) + } + }, + restore = { list -> + OudsThemeSettings( + roundedCornerButtons = list[0] as Boolean, + roundedCornerTextInputs = list[1] as Boolean, + roundedCornerAlertMessages = list[2] as Boolean, + roundedCornerProgressIndicators = list[3] as Boolean + ) + } + ) + } +} diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/OudsVersion.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsVersion.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/OudsVersion.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsVersion.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsBorderKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsBorderKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsBorderKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsBorderKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsColorKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsColorKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsColorKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsColorKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsEffectKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsEffectKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsEffectKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsEffectKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsElevationKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsElevationKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsElevationKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsElevationKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsGridKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsGridKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsGridKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsGridKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsLightDarkColorKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsLightDarkColorKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsLightDarkColorKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsLightDarkColorKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsOpacityKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsOpacityKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsOpacityKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsOpacityKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsSizeKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsSpaceKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsSpaceKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsSpaceKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsSpaceKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsTypographyKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsTypographyKeyToken.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/OudsTypographyKeyToken.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsTypographyKeyToken.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsAlertTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsAlertTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsAlertTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsAlertTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsBadgeTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsBadgeTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsBadgeTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsBadgeTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsBarTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsBarTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsBarTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsBarTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsBulletListTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsBulletListTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsBulletListTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsBulletListTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsButtonMonoTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsButtonMonoTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsButtonMonoTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsButtonMonoTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsButtonTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsCheckboxTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsCheckboxTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsCheckboxTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsCheckboxTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsChipTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsChipTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsChipTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsChipTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsComponentsTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsControlItemTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsControlItemTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsControlItemTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsControlItemTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsDividerTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsDividerTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsDividerTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsDividerTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsIconTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsIconTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsIconTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsIconTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsInputTagTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsInputTagTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsInputTagTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsInputTagTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsLightDarkColor.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsLightDarkColor.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsLightDarkColor.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsLightDarkColor.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsLinkMonoTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsLinkMonoTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsLinkMonoTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsLinkMonoTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsLinkTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsLinkTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsLinkTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsLinkTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsPinCodeInputTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsPinCodeInputTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsPinCodeInputTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsPinCodeInputTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsProgressIndicatorTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsProgressIndicatorTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsProgressIndicatorTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsProgressIndicatorTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsRadioButtonTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsRadioButtonTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsRadioButtonTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsRadioButtonTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsSwitchTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsSwitchTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsSwitchTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsSwitchTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsTagTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsTagTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsTagTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsTagTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsTextAreaTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsTextAreaTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsTextAreaTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsTextAreaTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsTextInputTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsTextInputTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/components/OudsTextInputTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/components/OudsTextInputTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/material/OudsMaterialColorTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/material/OudsMaterialColorTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/material/OudsMaterialColorTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/material/OudsMaterialColorTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsBorderSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsBorderSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsBorderSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsBorderSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorActionSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorActionSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorActionSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorActionSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorAlwaysSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorAlwaysSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorAlwaysSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorAlwaysSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorBgSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorBgSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorBgSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorBgSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorBorderSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorBorderSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorBorderSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorBorderSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorContentSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorContentSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorContentSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorContentSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorModeSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorModeSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorModeSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorModeSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorOpacitySemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorOpacitySemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorOpacitySemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorOpacitySemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorOverlaySemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorOverlaySemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorOverlaySemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorOverlaySemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorRepositorySemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorRepositorySemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorRepositorySemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorRepositorySemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorSurfaceSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorSurfaceSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsColorSurfaceSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsColorSurfaceSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsEffectSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsEffectSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsEffectSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsEffectSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsElevationSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsElevationSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsElevationSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsElevationSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsFontSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsFontSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsFontSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsFontSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsGridSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsGridSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsGridSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsGridSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsOpacitySemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsOpacitySemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsOpacitySemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsOpacitySemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsSizeSemanticTokens.kt diff --git a/theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsSpaceSemanticTokens.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsSpaceSemanticTokens.kt similarity index 100% rename from theme-contract/src/main/java/com/orange/ouds/theme/tokens/semantic/OudsSpaceSemanticTokens.kt rename to theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/semantic/OudsSpaceSemanticTokens.kt From 5e3beae23f0b04a524eb58a1378e28ad95ab2de6 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Tue, 23 Jun 2026 17:27:20 +0200 Subject: [PATCH 04/18] Migrate theme-wireframe to KMP (WIP) --- .idea/.name | 2 +- app/build.gradle.kts | 8 +- app/src/main/AndroidManifest.xml | 8 +- .../com/orange/ouds/app/OudsApplication.kt | 12 +- .../java/com/orange/ouds/app/ui/MainScreen.kt | 8 +- .../java/com/orange/ouds/app/ui/ThemeState.kt | 58 +++---- .../ui/utilities/ThemeDrawableResources.kt | 58 +++---- .../app/ui/utilities/composable/AppPreview.kt | 8 +- .../ui/utilities/composable/CodeSnippet.kt | 5 +- .../composable/CustomizationElements.kt | 4 +- build.gradle.kts | 6 +- core/build.gradle.kts | 12 +- .../orange/ouds/core/component/OudsAlert.kt | 12 +- .../ouds/core/component/OudsAlertMessage.kt | 4 +- .../orange/ouds/core/component/OudsBadge.kt | 11 +- .../ouds/core/component/OudsBasicChip.kt | 4 +- .../ouds/core/component/OudsBulletList.kt | 4 +- .../ouds/core/component/OudsCheckbox.kt | 3 +- .../ouds/core/component/OudsControlItem.kt | 4 +- .../ouds/core/component/OudsInlineAlert.kt | 4 +- .../ouds/core/component/OudsInputTag.kt | 4 +- .../orange/ouds/core/component/OudsLink.kt | 5 +- .../core/component/OudsNavigationButton.kt | 3 +- .../ouds/core/component/OudsPasswordInput.kt | 13 +- .../ouds/core/component/OudsRadioButton.kt | 3 +- .../orange/ouds/core/component/OudsSwitch.kt | 4 +- .../com/orange/ouds/core/component/OudsTag.kt | 10 +- .../ouds/core/component/OudsTextArea.kt | 3 +- .../ouds/core/component/OudsTextInput.kt | 3 +- .../ouds/core/component/OudsTopAppBar.kt | 8 +- .../com/orange/ouds/core/theme/OudsTheme.kt | 6 +- .../orange/ouds/core/utilities/OudsPreview.kt | 7 +- gradle/libs.versions.toml | 11 +- settings.gradle.kts | 8 +- theme-contract/build.gradle.kts | 3 + .../ouds/theme/OudsDrawableResources.kt | 100 ++++------- .../orange/ouds/theme/OudsThemeContract.kt | 20 +-- theme-wireframe/build.gradle.kts | 139 +++++++++++---- .../{main => androidMain}/AndroidManifest.xml | 0 ...ame_communication_accessibility_vision.xml | 0 ...cation_security_and_safety_lock_closed.xml | 0 ...reframe_component_alert_important_fill.xml | 0 ...ic_wireframe_component_alert_info_fill.xml | 0 ...component_alert_tick_confirmation_fill.xml | 0 ...component_alert_warning_external_shape.xml | 0 ...component_alert_warning_internal_shape.xml | 0 ...eframe_component_badge_icon_error_fill.xml | 0 ...reframe_component_badge_icon_info_fill.xml | 0 ...nent_badge_icon_tick_confirmation_fill.xml | 0 ...nent_badge_icon_warning_external_shape.xml | 0 ...nent_badge_icon_warning_internal_shape.xml | 0 ...wireframe_component_bullet_list_level0.xml | 0 ...wireframe_component_bullet_list_level1.xml | 0 ...wireframe_component_bullet_list_level2.xml | 0 ...c_wireframe_component_bullet_list_tick.xml | 0 .../ic_wireframe_component_button_expurge.xml | 0 .../ic_wireframe_component_button_next.xml | 0 ...ic_wireframe_component_button_previous.xml | 0 ..._wireframe_component_checkbox_selected.xml | 0 ...eframe_component_checkbox_undetermined.xml | 0 .../ic_wireframe_component_chip_tick.xml | 0 .../ic_wireframe_component_link_next.xml | 0 .../ic_wireframe_component_link_previous.xml | 0 ...eframe_component_radio_button_selected.xml | 0 ...frame_component_switch_selected_switch.xml | 0 .../ic_wireframe_component_tag_close.xml | 0 ..._functional_actions_delete_cross_round.xml | 0 ...unctional_navigation_form_chevron_left.xml | 0 ...nctional_navigation_menu_grid_ui_round.xml | 0 ..._settings_and_tools_accessibility_hide.xml | 0 ..._social_and_engagement_heart_recommend.xml | 0 .../font/shantellsans_bold.ttf | Bin .../font/shantellsans_bolditalic.ttf | Bin .../font/shantellsans_extrabold.ttf | Bin .../font/shantellsans_extrabolditalic.ttf | Bin .../font/shantellsans_italic.ttf | Bin .../font/shantellsans_light.ttf | Bin .../font/shantellsans_lightitalic.ttf | Bin .../font/shantellsans_medium.ttf | Bin .../font/shantellsans_mediumitalic.ttf | Bin .../font/shantellsans_regular.ttf | Bin .../font/shantellsans_semibold.ttf | Bin .../font/shantellsans_semibolditalic.ttf | Bin .../wireframe/WireframeDrawableResources.kt | 159 ++++++++++++++++++ .../ouds/theme/wireframe/WireframeTheme.kt | 52 ++++-- .../tokens/components/WireframeAlertTokens.kt | 0 .../tokens/components/WireframeBadgeTokens.kt | 0 .../tokens/components/WireframeBarTokens.kt | 0 .../components/WireframeBulletListTokens.kt | 0 .../components/WireframeButtonMonoTokens.kt | 0 .../components/WireframeButtonTokens.kt | 0 .../components/WireframeCheckboxTokens.kt | 0 .../tokens/components/WireframeChipTokens.kt | 0 .../components/WireframeComponentsTokens.kt | 0 .../components/WireframeControlItemTokens.kt | 0 .../components/WireframeDividerTokens.kt | 0 .../tokens/components/WireframeIconTokens.kt | 0 .../components/WireframeInputTagTokens.kt | 0 .../components/WireframeLinkMonoTokens.kt | 0 .../tokens/components/WireframeLinkTokens.kt | 0 .../components/WireframePinCodeInputTokens.kt | 0 .../WireframeProgressIndicatorTokens.kt | 0 .../components/WireframeRadioButtonTokens.kt | 0 .../components/WireframeSwitchTokens.kt | 0 .../tokens/components/WireframeTagTokens.kt | 0 .../components/WireframeTextAreaTokens.kt | 0 .../components/WireframeTextInputTokens.kt | 0 .../material/WireframeMaterialColorTokens.kt | 0 .../tokens/raw/WireframeColorRawTokens.kt | 0 .../semantic/WireframeBorderSemanticTokens.kt | 0 .../WireframeColorActionSemanticTokens.kt | 0 .../WireframeColorAlwaysSemanticTokens.kt | 0 .../WireframeColorBgSemanticTokens.kt | 0 .../WireframeColorBorderSemanticTokens.kt | 0 .../WireframeColorContentSemanticTokens.kt | 0 .../WireframeColorModeSemanticTokens.kt | 0 .../WireframeColorOpacitySemanticTokens.kt | 0 .../WireframeColorOverlaySemanticTokens.kt | 0 .../WireframeColorRepositorySemanticTokens.kt | 0 .../semantic/WireframeColorSemanticTokens.kt | 0 .../WireframeColorSurfaceSemanticTokens.kt | 0 .../semantic/WireframeEffectSemanticTokens.kt | 0 .../WireframeElevationSemanticTokens.kt | 0 .../semantic/WireframeFontSemanticTokens.kt | 0 .../semantic/WireframeGridSemanticTokens.kt | 0 .../WireframeOpacitySemanticTokens.kt | 0 .../semantic/WireframeSizeSemanticTokens.kt | 0 .../semantic/WireframeSpaceSemanticTokens.kt | 0 .../wireframe/WireframeComponentTestSuite.kt | 0 ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...eTest$Default_takeDarkThemeSnapshot[3].png | Bin ...eTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[0].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[1].png | Bin ...est$WithIcon_takeLightThemeSnapshot[0].png | Bin ...est$WithIcon_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...heetScaffoldTest_takeDarkThemeSnapshot.png | Bin ...eetScaffoldTest_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[0].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[1].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithIconBadge_takeLightThemeSnapshot[0].png | Bin ...ithIconBadge_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...t_takeDarkThemeHighContrastSnapshot[4].png | Bin ...t_takeDarkThemeHighContrastSnapshot[5].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[0].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[1].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[2].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[3].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[4].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[5].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[4].png | Bin ..._takeLightThemeHighContrastSnapshot[5].png | Bin ...CheckboxTest_takeLightThemeSnapshot[0].png | Bin ...CheckboxTest_takeLightThemeSnapshot[1].png | Bin ...CheckboxTest_takeLightThemeSnapshot[2].png | Bin ...CheckboxTest_takeLightThemeSnapshot[3].png | Bin ...CheckboxTest_takeLightThemeSnapshot[4].png | Bin ...CheckboxTest_takeLightThemeSnapshot[5].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[0].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[1].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[2].png | Bin ...ndicatorTest_takeLightThemeSnapshot[0].png | Bin ...ndicatorTest_takeLightThemeSnapshot[1].png | Bin ...ndicatorTest_takeLightThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[0].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[10].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[11].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[12].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[13].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[14].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[15].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[16].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[17].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[18].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[19].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[1].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[20].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[21].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[22].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[23].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[24].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[25].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[3].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[4].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[5].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[6].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[7].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[8].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[9].png | Bin ...loredBoxTest_takeLightThemeSnapshot[0].png | Bin ...oredBoxTest_takeLightThemeSnapshot[10].png | Bin ...oredBoxTest_takeLightThemeSnapshot[11].png | Bin ...oredBoxTest_takeLightThemeSnapshot[12].png | Bin ...oredBoxTest_takeLightThemeSnapshot[13].png | Bin ...oredBoxTest_takeLightThemeSnapshot[14].png | Bin ...oredBoxTest_takeLightThemeSnapshot[15].png | Bin ...oredBoxTest_takeLightThemeSnapshot[16].png | Bin ...oredBoxTest_takeLightThemeSnapshot[17].png | Bin ...oredBoxTest_takeLightThemeSnapshot[18].png | Bin ...oredBoxTest_takeLightThemeSnapshot[19].png | Bin ...loredBoxTest_takeLightThemeSnapshot[1].png | Bin ...oredBoxTest_takeLightThemeSnapshot[20].png | Bin ...oredBoxTest_takeLightThemeSnapshot[21].png | Bin ...oredBoxTest_takeLightThemeSnapshot[22].png | Bin ...oredBoxTest_takeLightThemeSnapshot[23].png | Bin ...oredBoxTest_takeLightThemeSnapshot[24].png | Bin ...oredBoxTest_takeLightThemeSnapshot[25].png | Bin ...loredBoxTest_takeLightThemeSnapshot[2].png | Bin ...loredBoxTest_takeLightThemeSnapshot[3].png | Bin ...loredBoxTest_takeLightThemeSnapshot[4].png | Bin ...loredBoxTest_takeLightThemeSnapshot[5].png | Bin ...loredBoxTest_takeLightThemeSnapshot[6].png | Bin ...loredBoxTest_takeLightThemeSnapshot[7].png | Bin ...loredBoxTest_takeLightThemeSnapshot[8].png | Bin ...loredBoxTest_takeLightThemeSnapshot[9].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[2].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[3].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[4].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[5].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[6].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[7].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[8].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[2].png | Bin ...t$Horizontal_takeLightThemeSnapshot[3].png | Bin ...t$Horizontal_takeLightThemeSnapshot[4].png | Bin ...t$Horizontal_takeLightThemeSnapshot[5].png | Bin ...t$Horizontal_takeLightThemeSnapshot[6].png | Bin ...t$Horizontal_takeLightThemeSnapshot[7].png | Bin ...t$Horizontal_takeLightThemeSnapshot[8].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[0].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[1].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[2].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[3].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[4].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[5].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[6].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[7].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[8].png | Bin ...est$Vertical_takeLightThemeSnapshot[0].png | Bin ...est$Vertical_takeLightThemeSnapshot[1].png | Bin ...est$Vertical_takeLightThemeSnapshot[2].png | Bin ...est$Vertical_takeLightThemeSnapshot[3].png | Bin ...est$Vertical_takeLightThemeSnapshot[4].png | Bin ...est$Vertical_takeLightThemeSnapshot[5].png | Bin ...est$Vertical_takeLightThemeSnapshot[6].png | Bin ...est$Vertical_takeLightThemeSnapshot[7].png | Bin ...est$Vertical_takeLightThemeSnapshot[8].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...pTest$Default_takeDarkThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[4].png | Bin ...pTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Extended_takeDarkThemeSnapshot[0].png | Bin ...Test$Extended_takeDarkThemeSnapshot[1].png | Bin ...est$Extended_takeLightThemeSnapshot[0].png | Bin ...est$Extended_takeLightThemeSnapshot[1].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[1].png | Bin ...onTest$Large_takeLightThemeSnapshot[0].png | Bin ...onTest$Large_takeLightThemeSnapshot[1].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[1].png | Bin ...onTest$Small_takeLightThemeSnapshot[0].png | Bin ...onTest$Small_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...OudsInputTagTest_takeDarkThemeSnapshot.png | Bin ...udsInputTagTest_takeLightThemeSnapshot.png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...hLongHelperText_takeLightThemeSnapshot.png | Bin ...kTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...kTest$Default_takeDarkThemeSnapshot[1].png | Bin ...kTest$Default_takeDarkThemeSnapshot[2].png | Bin ...kTest$Default_takeDarkThemeSnapshot[3].png | Bin ...kTest$Default_takeDarkThemeSnapshot[4].png | Bin ...kTest$Default_takeDarkThemeSnapshot[5].png | Bin ...kTest$Default_takeDarkThemeSnapshot[6].png | Bin ...kTest$Default_takeDarkThemeSnapshot[7].png | Bin ...kTest$Default_takeDarkThemeSnapshot[8].png | Bin ...kTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...lBottomSheetTest_takeDarkThemeSnapshot.png | Bin ...BottomSheetTest_takeLightThemeSnapshot.png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...rizontalItems_takeDarkThemeSnapshot[0].png | Bin ...rizontalItems_takeDarkThemeSnapshot[1].png | Bin ...izontalItems_takeLightThemeSnapshot[0].png | Bin ...izontalItems_takeLightThemeSnapshot[1].png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeDarkThemeSnapshot[30].png | Bin ...Test$Default_takeDarkThemeSnapshot[31].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$Default_takeLightThemeSnapshot[30].png | Bin ...est$Default_takeLightThemeSnapshot[31].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...undedCorners_takeLightThemeSnapshot[0].png | Bin ...undedCorners_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[0].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[1].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[2].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ...ioButtonTest_takeLightThemeSnapshot[0].png | Bin ...ioButtonTest_takeLightThemeSnapshot[1].png | Bin ...ioButtonTest_takeLightThemeSnapshot[2].png | Bin ...ioButtonTest_takeLightThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[0].png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[1].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[0].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[0].png | Bin ...gTest$Default_takeDarkThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[2].png | Bin ...gTest$Default_takeDarkThemeSnapshot[3].png | Bin ...gTest$Default_takeDarkThemeSnapshot[4].png | Bin ...gTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t$AutoResize_takeLightThemeSnapshot[0].png | Bin ...t$AutoResize_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[0].png | Bin ...aTest$Default_takeDarkThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[2].png | Bin ...aTest$Default_takeDarkThemeSnapshot[3].png | Bin ...aTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithLongLabels_takeLightThemeSnapshot.png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ntedLeadingIcon_takeLightThemeSnapshot.png | Bin ...CenterAligned_takeDarkThemeSnapshot[0].png | Bin ...CenterAligned_takeDarkThemeSnapshot[1].png | Bin ...CenterAligned_takeDarkThemeSnapshot[2].png | Bin ...enterAligned_takeLightThemeSnapshot[0].png | Bin ...enterAligned_takeLightThemeSnapshot[1].png | Bin ...enterAligned_takeLightThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[0].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[1].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[2].png | Bin ...arTest$Large_takeLightThemeSnapshot[0].png | Bin ...arTest$Large_takeLightThemeSnapshot[1].png | Bin ...arTest$Large_takeLightThemeSnapshot[2].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[0].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[1].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[2].png | Bin ...rTest$Medium_takeLightThemeSnapshot[0].png | Bin ...rTest$Medium_takeLightThemeSnapshot[1].png | Bin ...rTest$Medium_takeLightThemeSnapshot[2].png | Bin .../wireframe/WireframeDrawableResources.kt | 126 -------------- 706 files changed, 513 insertions(+), 409 deletions(-) rename theme-wireframe/src/{main => androidMain}/AndroidManifest.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_communication_accessibility_vision.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_communication_security_and_safety_lock_closed.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_alert_important_fill.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_alert_info_fill.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_alert_tick_confirmation_fill.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_alert_warning_external_shape.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_alert_warning_internal_shape.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_badge_icon_error_fill.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_badge_icon_info_fill.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_badge_icon_tick_confirmation_fill.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_badge_icon_warning_external_shape.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_badge_icon_warning_internal_shape.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_bullet_list_level0.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_bullet_list_level1.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_bullet_list_level2.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_bullet_list_tick.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_button_expurge.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_button_next.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_button_previous.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_checkbox_selected.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_checkbox_undetermined.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_chip_tick.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_link_next.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_link_previous.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_radio_button_selected.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_switch_selected_switch.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_component_tag_close.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_functional_actions_delete_cross_round.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_functional_navigation_form_chevron_left.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_functional_navigation_menu_grid_ui_round.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_functional_settings_and_tools_accessibility_hide.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/drawable/ic_wireframe_functional_social_and_engagement_heart_recommend.xml (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_bold.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_bolditalic.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_extrabold.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_extrabolditalic.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_italic.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_light.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_lightitalic.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_medium.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_mediumitalic.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_regular.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_semibold.ttf (100%) rename theme-wireframe/src/{main/res => commonMain/composeResources}/font/shantellsans_semibolditalic.ttf (100%) create mode 100644 theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeDrawableResources.kt rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/WireframeTheme.kt (61%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeAlertTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeBadgeTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeBarTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeBulletListTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonMonoTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeCheckboxTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeChipTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeControlItemTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeDividerTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeIconTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeInputTagTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkMonoTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframePinCodeInputTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeRadioButtonTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeSwitchTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeTagTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextAreaTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextInputTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/material/WireframeMaterialColorTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/raw/WireframeColorRawTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeBorderSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorActionSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorAlwaysSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBgSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBorderSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorContentSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorModeSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOpacitySemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOverlaySemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorRepositorySemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSurfaceSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeEffectSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeElevationSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeFontSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeGridSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeOpacitySemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt (100%) rename theme-wireframe/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSpaceSemanticTokens.kt (100%) rename theme-wireframe/src/{test => commonTest}/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{test => commonTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png (100%) delete mode 100644 theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/WireframeDrawableResources.kt diff --git a/.idea/.name b/.idea/.name index 34d515a2ed..279da84b7b 100644 --- a/.idea/.name +++ b/.idea/.name @@ -1 +1 @@ -OUDS Android \ No newline at end of file +OUDS_Android \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 49cb422ca1..3718747337 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -119,9 +119,9 @@ firebaseAppDistributionDefault { dependencies { implementation(project(":core")) implementation(project(":foundation")) - implementation(project(":theme-orange")) - implementation(project(":theme-orange-compact")) - implementation(project(":theme-sosh")) +// implementation(project(":theme-orange")) +// implementation(project(":theme-orange-compact")) +// implementation(project(":theme-sosh")) implementation(project(":theme-wireframe")) implementation(libs.androidx.activity.compose) @@ -194,7 +194,7 @@ fun updateBuildConfig() { gradle.projectsEvaluated { tasks["preBuild"].apply { dependsOn(":checkDocumentation") - dependsOn(":checkNotice") + //dependsOn(":checkNotice") dependsOn(tasks["updateAppChangelog"]) } updateBuildConfig() diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 7173917c5d..7da1a3f3ad 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -22,10 +22,10 @@ android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.MaterialComponents.NoActionBar"> - + + + + diff --git a/app/src/main/java/com/orange/ouds/app/OudsApplication.kt b/app/src/main/java/com/orange/ouds/app/OudsApplication.kt index 2860004837..2838e9248c 100644 --- a/app/src/main/java/com/orange/ouds/app/OudsApplication.kt +++ b/app/src/main/java/com/orange/ouds/app/OudsApplication.kt @@ -18,9 +18,9 @@ import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.setValue import com.google.firebase.Firebase import com.google.firebase.crashlytics.crashlytics -import com.orange.ouds.theme.orange.OrangeFontFamily -import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic -import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin +//import com.orange.ouds.theme.orange.OrangeFontFamily +//import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic +//import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin import dagger.hilt.android.HiltAndroidApp @HiltAndroidApp @@ -39,9 +39,9 @@ class OudsApplication : Application() { // Thus we use the Android Downloadable Fonts feature to retrieve the files on a remote server. // However the preferred way of using the Helvetica Neue font in the Orange themes is configuring // bundled font files with `OrangeHelveticaNeueLatin.Bundled` and/or `OrangeHelveticaNeueArabic.Bundled`. - OrangeFontFamily.preloadDownloadableFontFamilies(this, listOf(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable)) { - areDownloadableOrangeFontFamiliesPreloaded = true - } +// OrangeFontFamily.preloadDownloadableFontFamilies(this, listOf(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable)) { +// areDownloadableOrangeFontFamiliesPreloaded = true +// } } private fun initializeCrashlytics() { diff --git a/app/src/main/java/com/orange/ouds/app/ui/MainScreen.kt b/app/src/main/java/com/orange/ouds/app/ui/MainScreen.kt index 501cb74439..9c82481502 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/MainScreen.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/MainScreen.kt @@ -57,7 +57,8 @@ import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.foundation.RestrictedOudsApi import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.theme.OudsThemeSettings -import com.orange.ouds.theme.orange.ORANGE_THEME_NAME +import com.orange.ouds.theme.wireframe.WIREFRAME_THEME_NAME +//import com.orange.ouds.theme.orange.ORANGE_THEME_NAME import dev.chrisbanes.haze.HazeStyle import dev.chrisbanes.haze.hazeEffect import dev.chrisbanes.haze.hazeSource @@ -67,7 +68,8 @@ import dev.chrisbanes.haze.rememberHazeState fun MainScreen(mainViewModel: MainViewModel = hiltViewModel()) { MainScreen( themeSettings = mainViewModel.getUserThemeSettings().orElse { OudsThemeSettings() }, - currentThemeName = mainViewModel.getUserThemeName().orElse { ORANGE_THEME_NAME }, + //currentThemeName = mainViewModel.getUserThemeName().orElse { ORANGE_THEME_NAME }, + currentThemeName = mainViewModel.getUserThemeName().orElse { WIREFRAME_THEME_NAME }, onThemeChange = { themeName -> mainViewModel.storeUserThemeName(themeName) }, @@ -204,7 +206,7 @@ private fun PreviewMainScreen() = AppPreview { // See https://issuetracker.google.com/issues/240601093 MainScreen( themeSettings = OudsThemeSettings(), - currentThemeName = ORANGE_THEME_NAME, + currentThemeName = WIREFRAME_THEME_NAME,//ORANGE_THEME_NAME, onThemeChange = {}, onThemeSettingsChange = {} ) diff --git a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt index 9d7caef3a9..552a29ffd7 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt @@ -21,15 +21,15 @@ import androidx.compose.runtime.setValue import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings -import com.orange.ouds.theme.orange.ORANGE_THEME_NAME -import com.orange.ouds.theme.orange.OrangeFontFamily -import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic -import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin -import com.orange.ouds.theme.orange.OrangeTheme -import com.orange.ouds.theme.orangecompact.ORANGE_COMPACT_THEME_NAME -import com.orange.ouds.theme.orangecompact.OrangeCompactTheme -import com.orange.ouds.theme.sosh.SOSH_THEME_NAME -import com.orange.ouds.theme.sosh.SoshTheme +//import com.orange.ouds.theme.orange.ORANGE_THEME_NAME +//import com.orange.ouds.theme.orange.OrangeFontFamily +//import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic +//import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin +//import com.orange.ouds.theme.orange.OrangeTheme +//import com.orange.ouds.theme.orangecompact.ORANGE_COMPACT_THEME_NAME +//import com.orange.ouds.theme.orangecompact.OrangeCompactTheme +//import com.orange.ouds.theme.sosh.SOSH_THEME_NAME +//import com.orange.ouds.theme.sosh.SoshTheme import com.orange.ouds.theme.wireframe.WIREFRAME_THEME_NAME import com.orange.ouds.theme.wireframe.WireframeTheme @@ -37,12 +37,12 @@ import com.orange.ouds.theme.wireframe.WireframeTheme fun rememberThemeState( settings: OudsThemeSettings = OudsThemeSettings(), themeNames: List = listOf( - ORANGE_THEME_NAME, - ORANGE_COMPACT_THEME_NAME, - SOSH_THEME_NAME, +// ORANGE_THEME_NAME, +// ORANGE_COMPACT_THEME_NAME, +// SOSH_THEME_NAME, WIREFRAME_THEME_NAME ), - currentThemeName: String = ORANGE_THEME_NAME, + currentThemeName: String = WIREFRAME_THEME_NAME,//ORANGE_THEME_NAME, areDownloadableOrangeFontFamiliesPreloaded: Boolean = false ) = rememberSaveable(settings, themeNames, currentThemeName, areDownloadableOrangeFontFamiliesPreloaded, saver = ThemeState.Saver) { ThemeState(settings, themeNames, currentThemeName, areDownloadableOrangeFontFamiliesPreloaded) @@ -108,7 +108,7 @@ class ThemeState( private fun getCurrentTheme(name: String): OudsThemeContract { return themes.firstOrNull { it.name == name } - .orElse { themes.firstOrNull { it.name == ORANGE_THEME_NAME } } + .orElse { themes.firstOrNull { it.name == WIREFRAME_THEME_NAME } } .orElse { themes.first() } } @@ -116,21 +116,21 @@ class ThemeState( return with(settings) { names.mapNotNull { name -> when (name) { - ORANGE_THEME_NAME -> OrangeTheme( - orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), - roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, - roundedCornerButtons = roundedCornerButtons.orElse { false }, - roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, - roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } - ) - ORANGE_COMPACT_THEME_NAME -> OrangeCompactTheme( - orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), - roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, - roundedCornerButtons = roundedCornerButtons.orElse { false }, - roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, - roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } - ) - SOSH_THEME_NAME -> SoshTheme() +// ORANGE_THEME_NAME -> OrangeTheme( +// orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), +// roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, +// roundedCornerButtons = roundedCornerButtons.orElse { false }, +// roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, +// roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } +// ) +// ORANGE_COMPACT_THEME_NAME -> OrangeCompactTheme( +// orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), +// roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, +// roundedCornerButtons = roundedCornerButtons.orElse { false }, +// roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, +// roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } +// ) +// SOSH_THEME_NAME -> SoshTheme() WIREFRAME_THEME_NAME -> WireframeTheme() else -> null } diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt index ab00d2349c..df55a09dd0 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt @@ -16,9 +16,9 @@ import androidx.annotation.DrawableRes import androidx.compose.runtime.staticCompositionLocalOf import com.orange.ouds.app.R import com.orange.ouds.theme.OudsThemeContract -import com.orange.ouds.theme.orange.OrangeTheme -import com.orange.ouds.theme.orangecompact.OrangeCompactTheme -import com.orange.ouds.theme.sosh.SoshTheme +//import com.orange.ouds.theme.orange.OrangeTheme +//import com.orange.ouds.theme.orangecompact.OrangeCompactTheme +//import com.orange.ouds.theme.sosh.SoshTheme import com.orange.ouds.theme.wireframe.WireframeTheme import kotlin.reflect.KProperty1 @@ -29,8 +29,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val avatar: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_avatar - is SoshTheme -> R.drawable.ic_sosh_avatar +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_avatar +// is SoshTheme -> R.drawable.ic_sosh_avatar is WireframeTheme -> R.drawable.ic_wireframe_avatar else -> error(ThemeDrawableResources::avatar) } @@ -38,8 +38,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val call: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_call - is SoshTheme -> R.drawable.ic_sosh_call +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_call +// is SoshTheme -> R.drawable.ic_sosh_call is WireframeTheme -> R.drawable.ic_wireframe_call else -> error(ThemeDrawableResources::call) } @@ -47,8 +47,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val filters: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_filters - is SoshTheme -> R.drawable.ic_sosh_filters +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_filters +// is SoshTheme -> R.drawable.ic_sosh_filters is WireframeTheme -> R.drawable.ic_wireframe_filters else -> error(ThemeDrawableResources::filters) } @@ -56,8 +56,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val formChevronDown: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_form_chevron_down - is SoshTheme -> R.drawable.ic_sosh_form_chevron_down +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_form_chevron_down +// is SoshTheme -> R.drawable.ic_sosh_form_chevron_down is WireframeTheme -> R.drawable.ic_wireframe_form_chevron_down else -> error(ThemeDrawableResources::formChevronDown) } @@ -65,8 +65,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val home: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_home - is SoshTheme -> R.drawable.ic_sosh_home +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_home +// is SoshTheme -> R.drawable.ic_sosh_home is WireframeTheme -> R.drawable.ic_wireframe_home else -> error(ThemeDrawableResources::home) } @@ -74,8 +74,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val info: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_info - is SoshTheme -> R.drawable.ic_sosh_info +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_info +// is SoshTheme -> R.drawable.ic_sosh_info is WireframeTheme -> R.drawable.ic_wireframe_info else -> error(ThemeDrawableResources::info) } @@ -83,8 +83,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val menuGrid: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_menu_grid - is SoshTheme -> R.drawable.ic_sosh_menu_grid +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_menu_grid +// is SoshTheme -> R.drawable.ic_sosh_menu_grid is WireframeTheme -> R.drawable.ic_wireframe_menu_grid else -> error(ThemeDrawableResources::menuGrid) } @@ -92,8 +92,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val notificationAlert: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_notification_alert - is SoshTheme -> R.drawable.ic_sosh_notification_alert +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_notification_alert +// is SoshTheme -> R.drawable.ic_sosh_notification_alert is WireframeTheme -> R.drawable.ic_wireframe_notification_alert else -> error(ThemeDrawableResources::notificationAlert) } @@ -101,8 +101,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val palette: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_palette - is SoshTheme -> R.drawable.ic_sosh_palette +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_palette +// is SoshTheme -> R.drawable.ic_sosh_palette is WireframeTheme -> R.drawable.ic_wireframe_palette else -> error(ThemeDrawableResources::palette) } @@ -110,8 +110,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val settings: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_settings - is SoshTheme -> R.drawable.ic_sosh_settings +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_settings +// is SoshTheme -> R.drawable.ic_sosh_settings is WireframeTheme -> R.drawable.ic_wireframe_settings else -> error(ThemeDrawableResources::settings) } @@ -119,8 +119,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val shop: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_shop - is SoshTheme -> R.drawable.ic_sosh_shop +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_shop +// is SoshTheme -> R.drawable.ic_sosh_shop is WireframeTheme -> R.drawable.ic_wireframe_shop else -> error(ThemeDrawableResources::shop) } @@ -128,8 +128,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val smsMessage: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_sms_message - is SoshTheme -> R.drawable.ic_sosh_sms_message +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_sms_message +// is SoshTheme -> R.drawable.ic_sosh_sms_message is WireframeTheme -> R.drawable.ic_wireframe_sms_message else -> error(ThemeDrawableResources::smsMessage) } @@ -137,8 +137,8 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val tipsAndTricks: Int @DrawableRes get() = when (theme) { - is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_tips_and_tricks - is SoshTheme -> R.drawable.ic_sosh_tips_and_tricks +// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_tips_and_tricks +// is SoshTheme -> R.drawable.ic_sosh_tips_and_tricks is WireframeTheme -> R.drawable.ic_wireframe_tips_and_tricks else -> error(ThemeDrawableResources::tipsAndTricks) } diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt index 73da5d0c2b..73d1ec8f23 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt @@ -22,8 +22,10 @@ import com.orange.ouds.app.ui.utilities.LocalThemeDrawableResources import com.orange.ouds.app.ui.utilities.ThemeDrawableResources import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.foundation.InternalOudsApi -import com.orange.ouds.theme.orange.OrangeTheme -import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily +import com.orange.ouds.theme.wireframe.WireframeTheme + +//import com.orange.ouds.theme.orange.OrangeTheme +//import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily @OptIn(InternalOudsApi::class) @Composable @@ -31,7 +33,7 @@ fun AppPreview( modifier: Modifier = Modifier, content: @Composable () -> Unit ) { - val theme = OrangeTheme(getPreviewOrangeFontFamily()) + val theme = WireframeTheme()//OrangeTheme(getPreviewOrangeFontFamily()) CompositionLocalProvider(value = LocalThemeDrawableResources provides ThemeDrawableResources(theme)) { OudsTheme( theme = theme, diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CodeSnippet.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CodeSnippet.kt index 7f11398c23..76b9946d65 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CodeSnippet.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CodeSnippet.kt @@ -45,7 +45,8 @@ import androidx.compose.ui.unit.dp import com.orange.ouds.app.R import com.orange.ouds.app.ui.utilities.Code import com.orange.ouds.core.theme.OudsTheme -import com.orange.ouds.theme.orange.OrangeTheme +import com.orange.ouds.theme.wireframe.WireframeTheme +//import com.orange.ouds.theme.orange.OrangeTheme import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.launch @@ -109,7 +110,7 @@ internal fun PreviewCodeSnippet() = AppPreview { comment("Apply Orange theme") functionCall("OudsTheme") { trailingLambda = true - constructorCallArgument("theme") + constructorCallArgument("theme") functionCallArgument("darkThemeEnabled", "isSystemInDarkTheme") lambdaArgument("content") { comment("Content") diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt index be2e0fbc8e..885a918507 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt @@ -128,7 +128,7 @@ fun CustomizationFilterChips( } else { true } - + Row( modifier = Modifier .fillMaxWidth() @@ -202,7 +202,7 @@ fun CustomizationTextInput( keyboardOptions = keyboardOptions, trailingIconButton = if (value.text.isNotEmpty()) { OudsTextInputTrailingIconButton( - painter = painterResource(com.orange.ouds.theme.orange.R.drawable.ic_orange_component_tag_close), + painter = painterResource(R.drawable.ic_copy), contentDescription = stringResource(R.string.app_components_common_textInputClearIcon_a11y), onClick = { onValueChange(value.copy(text = resetValue)) diff --git a/build.gradle.kts b/build.gradle.kts index 509b4f6c94..5881b79bb8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -37,9 +37,9 @@ dependencies { dokka(project(":core")) dokka(project(":global-raw-tokens")) dokka(project(":theme-contract")) - dokka(project(":theme-orange")) - dokka(project(":theme-orange-compact")) - dokka(project(":theme-sosh")) +// dokka(project(":theme-orange")) +// dokka(project(":theme-orange-compact")) +// dokka(project(":theme-sosh")) dokka(project(":theme-wireframe")) } diff --git a/core/build.gradle.kts b/core/build.gradle.kts index c233f918eb..3ef7fd2f01 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -47,9 +47,9 @@ dependencies { implementation(project(":foundation")) api(project(":theme-contract")) // compileOnly dependencies on themes are needed for previews - compileOnly(project(":theme-orange")) - compileOnly(project(":theme-orange-compact")) - compileOnly(project(":theme-sosh")) +// compileOnly(project(":theme-orange")) +// compileOnly(project(":theme-orange-compact")) +// compileOnly(project(":theme-sosh")) compileOnly(project(":theme-wireframe")) implementation(platform(libs.androidx.compose.bom)) @@ -61,9 +61,11 @@ dependencies { implementation(libs.androidx.constraintlayout.compose) implementation(libs.material) + implementation(libs.compose.components.resources) + testImplementation(project(":core-test")) - testImplementation(project(":theme-orange")) - androidTestImplementation(project(":theme-orange")) + //testImplementation(project(":theme-orange")) + //androidTestImplementation(project(":theme-orange")) androidTestImplementation(libs.androidx.compose.ui.test.junit4) androidTestImplementation(libs.kotlin.reflect) androidTestImplementation(libs.mockito.android) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsAlert.kt b/core/src/main/java/com/orange/ouds/core/component/OudsAlert.kt index fe5d13339f..27f22f4d47 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsAlert.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsAlert.kt @@ -17,7 +17,6 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource import com.orange.ouds.core.R import com.orange.ouds.core.component.content.OudsComponentContent @@ -26,6 +25,7 @@ import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.core.theme.value import com.orange.ouds.core.utilities.LayeredTintedPainter import com.orange.ouds.foundation.extensions.orElse +import org.jetbrains.compose.resources.painterResource /** * Base class for defining the semantic status of an alert component ([OudsInlineAlert] or [OudsAlertMessage]). @@ -64,15 +64,15 @@ internal sealed class OudsAlertStatus( @Composable protected fun getDefaultIconPainter(status: OudsAlertStatus): Painter? { return when (status) { - is Negative -> painterResource(OudsTheme.drawableResources.component.alert.importantFill) - is Positive -> painterResource(OudsTheme.drawableResources.component.alert.tickConfirmationFill) - is Info -> painterResource(OudsTheme.drawableResources.component.alert.infoFill) + is Negative -> painterResource(resource = OudsTheme.drawableResources.component.alert.importantFill) + is Positive -> painterResource(resource = OudsTheme.drawableResources.component.alert.tickConfirmationFill) + is Info -> painterResource(resource = OudsTheme.drawableResources.component.alert.infoFill) is Warning -> { val iconTokens = OudsTheme.componentsTokens.icon LayeredTintedPainter( - backPainter = painterResource(id = OudsTheme.drawableResources.component.alert.warningExternalShape), + backPainter = painterResource(resource = OudsTheme.drawableResources.component.alert.warningExternalShape), backPainterColor = iconTokens.colorContentStatusWarningExternalShape.value, - frontPainter = painterResource(id = OudsTheme.drawableResources.component.alert.warningInternalShape), + frontPainter = painterResource(resource = OudsTheme.drawableResources.component.alert.warningInternalShape), frontPainterColor = iconTokens.colorContentStatusWarningInternalShape.value ) } diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsAlertMessage.kt b/core/src/main/java/com/orange/ouds/core/component/OudsAlertMessage.kt index 826c811474..0970ef5a86 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsAlertMessage.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsAlertMessage.kt @@ -42,7 +42,6 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.draw.clip import androidx.compose.ui.graphics.Color import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.semantics import androidx.compose.ui.tooling.preview.Preview @@ -74,6 +73,7 @@ import com.orange.ouds.core.utilities.rememberRainbowHeartPainter import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Alert message is a UI element that displays system feedback, status changes or required action; throughout detailed, prominent, persistent and actionable @@ -285,7 +285,7 @@ private fun OudsAlertMessage( onClose?.let { OudsButton( icon = OudsButtonIcon( - painter = painterResource(LocalDrawableResources.current.component.button.expurge), + painter = painterResource(resource = LocalDrawableResources.current.component.button.expurge), contentDescription = stringResource(R.string.core_alertMessage_close_a11y) ), onClick = onClose, diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBadge.kt b/core/src/main/java/com/orange/ouds/core/component/OudsBadge.kt index 5f76ec7011..9cc3636763 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsBadge.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsBadge.kt @@ -36,7 +36,6 @@ import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.painterResource import androidx.compose.ui.semantics.clearAndSetSemantics import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics @@ -62,6 +61,7 @@ import com.orange.ouds.core.utilities.rememberRainbowHeartPainter import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Badge is a UI element that emphasizes system notifications, status, or the categorization of an information, @@ -543,7 +543,8 @@ sealed class OudsIconBadgeStatus(val icon: OudsBadgeIcon) { * * @constructor Creates an instance of [OudsIconBadgeStatus.Positive] with its default dedicated icon. */ - data object Positive : OudsIconBadgeStatus(OudsBadgeIcon({ painterResource(OudsTheme.drawableResources.component.badgeIcon.tickConfirmationFill) }, true)) + data object Positive : + OudsIconBadgeStatus(OudsBadgeIcon({ painterResource(resource = OudsTheme.drawableResources.component.badgeIcon.tickConfirmationFill) }, true)) /** * Provides informational context without urgency. @@ -551,7 +552,7 @@ sealed class OudsIconBadgeStatus(val icon: OudsBadgeIcon) { * * @constructor Creates an instance of [OudsIconBadgeStatus.Info] with its default dedicated icon. */ - data object Info : OudsIconBadgeStatus(OudsBadgeIcon({ painterResource(OudsTheme.drawableResources.component.badgeIcon.infoFill) }, true)) + data object Info : OudsIconBadgeStatus(OudsBadgeIcon({ painterResource(resource = OudsTheme.drawableResources.component.badgeIcon.infoFill) }, true)) /** * Negatives the user to potential risks or cautionary messages. @@ -565,9 +566,9 @@ sealed class OudsIconBadgeStatus(val icon: OudsBadgeIcon) { if (icon.enabled == true) { val iconTokens = OudsTheme.componentsTokens.icon LayeredTintedPainter( - backPainter = painterResource(id = OudsTheme.drawableResources.component.badgeIcon.warningExternalShape), + backPainter = painterResource(resource = OudsTheme.drawableResources.component.badgeIcon.warningExternalShape), backPainterColor = iconTokens.colorContentStatusWarningExternalShape.value, - frontPainter = painterResource(id = OudsTheme.drawableResources.component.badgeIcon.warningInternalShape), + frontPainter = painterResource(resource = OudsTheme.drawableResources.component.badgeIcon.warningInternalShape), frontPainterColor = iconTokens.colorContentStatusWarningInternalShape.value ) } else { diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBasicChip.kt b/core/src/main/java/com/orange/ouds/core/component/OudsBasicChip.kt index eecf0c9f58..758f29145b 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsBasicChip.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsBasicChip.kt @@ -33,7 +33,6 @@ import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.painterResource import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics @@ -47,6 +46,7 @@ import com.orange.ouds.core.theme.takeUnlessHairline import com.orange.ouds.core.theme.value import com.orange.ouds.core.utilities.getPreviewEnumEntry import com.orange.ouds.foundation.extensions.orElse +import org.jetbrains.compose.resources.painterResource @Composable internal fun OudsBasicChip( @@ -141,7 +141,7 @@ internal fun OudsBasicChip( tickColor.value?.let { tickColor -> Icon( modifier = Modifier.size(chipTokens.sizeIcon.value * iconScale), - painter = painterResource(id = OudsTheme.drawableResources.component.chip.tick), + painter = painterResource(resource = OudsTheme.drawableResources.component.chip.tick), tint = tickColor, contentDescription = null ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBulletList.kt b/core/src/main/java/com/orange/ouds/core/component/OudsBulletList.kt index 533e51f43f..025f567d8b 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsBulletList.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsBulletList.kt @@ -45,7 +45,6 @@ import androidx.compose.ui.graphics.vector.rememberVectorPainter import androidx.compose.ui.platform.LocalConfiguration import androidx.compose.ui.platform.LocalLayoutDirection import androidx.compose.ui.platform.LocalResources -import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.clearAndSetSemantics import androidx.compose.ui.semantics.contentDescription @@ -77,6 +76,7 @@ import com.orange.ouds.core.utilities.OudsPreviewableComponent import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource @DslMarker annotation class OudsBulletListDslMarker @@ -499,7 +499,7 @@ sealed interface OudsBulletListUnorderedAsset : OudsPolymorphicComponentContent 1 -> OudsTheme.drawableResources.component.bulletList.level1 else -> OudsTheme.drawableResources.component.bulletList.level2 } - painterResource(iconRes) + painterResource(resource = iconRes) } }, { "" }) { diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsCheckbox.kt b/core/src/main/java/com/orange/ouds/core/component/OudsCheckbox.kt index a0e64dca1c..4c2cf8758e 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsCheckbox.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsCheckbox.kt @@ -60,6 +60,7 @@ import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Checkbox is a UI element that allows to select multiple options from a set of mutually non exclusive choices. Checkbox that does not show icon or text, @@ -243,7 +244,7 @@ internal fun OudsCheckboxIndicator( indicatorResource?.let { resource -> Icon( modifier = Modifier.fillMaxSize(), - painter = painterResource(resource), + painter = painterResource(resource = resource), tint = checkColor(state = state, error = error), contentDescription = null ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsControlItem.kt b/core/src/main/java/com/orange/ouds/core/component/OudsControlItem.kt index 8038bd4d23..de6329c4f2 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsControlItem.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsControlItem.kt @@ -35,7 +35,6 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.res.painterResource import androidx.compose.ui.semantics.clearAndSetSemantics import androidx.compose.ui.semantics.error import androidx.compose.ui.semantics.semantics @@ -53,6 +52,7 @@ import com.orange.ouds.core.theme.value import com.orange.ouds.core.utilities.CheckedContent import com.orange.ouds.core.utilities.getPreviewEnumEntry import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider +import org.jetbrains.compose.resources.painterResource /** * The control item composable helps factorize common layout elements shared by [OudsCheckboxItem], [OudsTriStateCheckboxItem], [OudsRadioButtonItem], @@ -297,7 +297,7 @@ private fun ErrorIcon(state: OudsControlState, modifier: Modifier = Modifier) { modifier = modifier .padding(spacePaddingInlineErrorIcon.value) .size(sizeErrorIcon.value), - painter = painterResource(id = OudsTheme.drawableResources.component.alert.importantFill), + painter = painterResource(resource = OudsTheme.drawableResources.component.alert.importantFill), contentDescription = null, tint = errorColor(state = state) ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsInlineAlert.kt b/core/src/main/java/com/orange/ouds/core/component/OudsInlineAlert.kt index 82627a0764..a22031f115 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsInlineAlert.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsInlineAlert.kt @@ -22,7 +22,6 @@ import androidx.compose.material3.Text import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.painterResource import androidx.compose.ui.semantics.semantics import androidx.compose.ui.tooling.preview.PreviewParameter import com.orange.ouds.core.extensions.iconSize @@ -35,6 +34,7 @@ import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.core.utilities.rememberRainbowHeartPainter import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Inline alert is a lightweight UI element, placed in the content flow, that displays information, system feedback, status changes throughout short, prominent, @@ -134,7 +134,7 @@ sealed class OudsInlineAlertStatus(internal val value: OudsAlertStatus, val icon * @property icon The [OudsAlertIcon] to be displayed in the inline alert. */ class Accent(icon: OudsAlertIcon) : OudsInlineAlertStatus( - OudsAlertStatus.Accent({ painterResource(OudsTheme.drawableResources.functional.socialAndEngagement.heartRecommend) }), + OudsAlertStatus.Accent({ painterResource(resource = OudsTheme.drawableResources.functional.socialAndEngagement.heartRecommend) }), icon ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsInputTag.kt b/core/src/main/java/com/orange/ouds/core/component/OudsInputTag.kt index 7221247e1a..ab376f6116 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsInputTag.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsInputTag.kt @@ -35,7 +35,6 @@ import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.Role import androidx.compose.ui.text.style.LineHeightStyle @@ -55,6 +54,7 @@ import com.orange.ouds.core.utilities.getPreviewEnumEntry import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Input tag is a UI element that allows to enter multiple values, each represented as a tag. As users type @@ -158,7 +158,7 @@ fun OudsInputTag( ) Icon( modifier = Modifier.size(tagTokens.sizeAssetDefault.value * LocalConfiguration.current.fontScale), - painter = painterResource(id = OudsTheme.drawableResources.component.tag.close), + painter = painterResource(resource = OudsTheme.drawableResources.component.tag.close), contentDescription = null, tint = contentColor.value ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsLink.kt b/core/src/main/java/com/orange/ouds/core/component/OudsLink.kt index c4db8fc61d..4daf7c20bd 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsLink.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsLink.kt @@ -61,6 +61,7 @@ import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.tokens.components.OudsLinkMonoTokens +import org.jetbrains.compose.resources.painterResource /** * Link is a UI element that allows to navigate from one location to another, either within the same page @@ -282,7 +283,7 @@ private fun OudsLink( verticalAlignment = Alignment.CenterVertically ) { if (icon != null || chevron == OudsLinkChevron.Back) { - icon.orElse { OudsLinkIcon(painterResource(OudsTheme.drawableResources.component.link.previous)) }.Content( + icon.orElse { OudsLinkIcon(painterResource(resource = OudsTheme.drawableResources.component.link.previous)) }.Content( modifier = Modifier.iconSize(iconSize, icon?.tinted.orElse { true }), extraParameters = ExtraParameters(tint = iconTint) ) @@ -294,7 +295,7 @@ private fun OudsLink( style = textStyle ) if (chevron == OudsLinkChevron.Next) { - OudsLinkIcon(painterResource(OudsTheme.drawableResources.component.link.next)).Content( + OudsLinkIcon(painterResource(resource = OudsTheme.drawableResources.component.link.next)).Content( modifier = Modifier .size(iconSize) .fillMaxHeight() diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt b/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt index 5d5455f60e..83260bbf5c 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt @@ -25,6 +25,7 @@ import com.orange.ouds.core.utilities.PreviewEnumEntries import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Navigation button is a UI element that allows to move between different pages within a multipage interface. @@ -77,7 +78,7 @@ fun OudsNavigationButton( OudsButton( nullableIcon = OudsButtonIcon( - painter = painterResource(iconResource), + painter = painterResource(resource = iconResource), contentDescription = "" // Not necessary because a label is present ), nullableLabel = label, diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsPasswordInput.kt b/core/src/main/java/com/orange/ouds/core/component/OudsPasswordInput.kt index a8123a2464..28414da7f8 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsPasswordInput.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsPasswordInput.kt @@ -26,7 +26,6 @@ import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue import androidx.compose.runtime.remember import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource import androidx.compose.ui.text.TextLayoutResult import androidx.compose.ui.text.input.ImeAction @@ -50,6 +49,8 @@ import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings +import org.jetbrains.compose.resources.DrawableResource +import org.jetbrains.compose.resources.painterResource /** * Password input is a UI element that allows to securely and confidentially capture a user's password. @@ -348,23 +349,23 @@ object OudsPasswordInputDefaults { @Composable private fun textInputLockIcon() = OudsTextInputLeadingIcon( - painter = painterResource(OudsTheme.drawableResources.communication.securityAndSafety.lockClosed), + painter = painterResource(resource = OudsTheme.drawableResources.communication.securityAndSafety.lockClosed), contentDescription = "" ) @Composable private fun trailingIconButton(isPasswordHidden: Boolean, onClick: () -> Unit): OudsTextInputTrailingIconButton { - val painterResId: Int + val painterResource: DrawableResource val contentDescriptionResId: Int if (isPasswordHidden) { - painterResId = OudsTheme.drawableResources.communication.accessibility.vision + painterResource = OudsTheme.drawableResources.communication.accessibility.vision contentDescriptionResId = R.string.core_passwordInput_showPassword_a11y } else { - painterResId = OudsTheme.drawableResources.functional.settingsAndTools.accessibilityHide + painterResource = OudsTheme.drawableResources.functional.settingsAndTools.accessibilityHide contentDescriptionResId = R.string.core_passwordInput_hidePassword_a11y } return OudsTextInputTrailingIconButton( - painter = painterResource(painterResId), + painter = painterResource(resource = painterResource), contentDescription = stringResource(contentDescriptionResId), onClick = onClick ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsRadioButton.kt b/core/src/main/java/com/orange/ouds/core/component/OudsRadioButton.kt index 1136af78a6..24d3cda1e0 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsRadioButton.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsRadioButton.kt @@ -59,6 +59,7 @@ import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Radio button is a UI element that allows to select a single option from a set of mutually exclusive choices. Radio button that does not show icon or text, @@ -168,7 +169,7 @@ internal fun OudsRadioButtonIndicator(state: OudsControlState, selected: Boolean if (selected) { Icon( modifier = Modifier.fillMaxSize(), - painter = painterResource(OudsTheme.drawableResources.component.radioButton.selected), + painter = painterResource(resource = OudsTheme.drawableResources.component.radioButton.selected), tint = selectionColor(state = state, error = error), contentDescription = null ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsSwitch.kt b/core/src/main/java/com/orange/ouds/core/component/OudsSwitch.kt index bd2996d321..b932142568 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsSwitch.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsSwitch.kt @@ -45,7 +45,6 @@ import androidx.compose.ui.draw.shadow import androidx.compose.ui.geometry.Size import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.res.painterResource import androidx.compose.ui.semantics.Role import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.dp @@ -59,6 +58,7 @@ import com.orange.ouds.core.utilities.PreviewEnumEntries import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Switch is a UI element that allows to toggle between two states, typically "On" and "Off", and used to enable or disable features, options or settings. @@ -169,7 +169,7 @@ internal fun OudsSwitchIndicator(state: OudsControlState, checked: Boolean, modi modifier = Modifier .alpha(switchTokens.opacityCheck.value) .alpha(checkAlpha), - painter = painterResource(id = OudsTheme.drawableResources.component.switch.selected), + painter = painterResource(resource = OudsTheme.drawableResources.component.switch.selected), contentDescription = null, tint = checkColor ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTag.kt b/core/src/main/java/com/orange/ouds/core/component/OudsTag.kt index 4f29cba9fa..cc21eb2e64 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTag.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsTag.kt @@ -36,7 +36,6 @@ import androidx.compose.ui.graphics.StrokeCap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.hideFromAccessibility import androidx.compose.ui.semantics.semantics @@ -64,6 +63,7 @@ import com.orange.ouds.core.utilities.rememberRainbowHeartPainter import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * Tag is a UI element that allows to display short info like a label, keyword, or category. Tag helps users quickly find, group, or understand content. @@ -639,7 +639,7 @@ sealed class OudsTagStatus(val asset: OudsTagAsset? = null) { @Composable override fun getDefaultIconPainter(appearance: OudsTagAppearance, enabled: Boolean) = - painterResource(OudsTheme.drawableResources.component.alert.tickConfirmationFill) + painterResource(resource = OudsTheme.drawableResources.component.alert.tickConfirmationFill) } /** @@ -691,11 +691,11 @@ sealed class OudsTagStatus(val asset: OudsTagAsset? = null) { override fun getDefaultIconPainter(appearance: OudsTagAppearance, enabled: Boolean): Painter { val iconTokens = OudsTheme.componentsTokens.icon return when { - appearance == OudsTagAppearance.Emphasized || !enabled -> painterResource(id = OudsTheme.drawableResources.component.alert.warningExternalShape) + appearance == OudsTagAppearance.Emphasized || !enabled -> painterResource(resource = OudsTheme.drawableResources.component.alert.warningExternalShape) else -> LayeredTintedPainter( - backPainter = painterResource(id = OudsTheme.drawableResources.component.alert.warningExternalShape), + backPainter = painterResource(resource = OudsTheme.drawableResources.component.alert.warningExternalShape), backPainterColor = iconTokens.colorContentStatusWarningExternalShape.value, - frontPainter = painterResource(id = OudsTheme.drawableResources.component.alert.warningInternalShape), + frontPainter = painterResource(resource = OudsTheme.drawableResources.component.alert.warningInternalShape), frontPainterColor = iconTokens.colorContentStatusWarningInternalShape.value ) } diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt b/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt index 69020bf8a9..7f5787ebab 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt @@ -84,6 +84,7 @@ import com.orange.ouds.core.utilities.mapSettings import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings +import org.jetbrains.compose.resources.painterResource /** * Text area is a UI element that allows to type, edit, or select longer blocks of textual data, such as comments, messages or descriptions; by expanding @@ -1332,7 +1333,7 @@ internal fun OudsTextAreaDecorator( if (hasError) { Icon( modifier = Modifier.size(buttonTokens.sizeIconOnly.value * iconScale), - painter = painterResource(id = OudsTheme.drawableResources.component.alert.importantFill), + painter = painterResource(resource = OudsTheme.drawableResources.component.alert.importantFill), contentDescription = if (error.message.isBlank()) stringResource(R.string.core_common_error_a11y) else null, tint = errorIconColor(state = state) ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt b/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt index b6a25eaa5e..83bee6b9fd 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt @@ -103,6 +103,7 @@ import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings +import org.jetbrains.compose.resources.painterResource /** * Text input is a UI element that allows to enter, edit, or select single-line textual data. Text input is one of the most fundamental form elements used @@ -1177,7 +1178,7 @@ internal fun OudsTextInputDecorator( ) { Icon( modifier = Modifier.size(buttonTokens.sizeIconOnly.value * iconScale), - painter = painterResource(id = OudsTheme.drawableResources.component.alert.importantFill), + painter = painterResource(resource = OudsTheme.drawableResources.component.alert.importantFill), contentDescription = if (error.message.isBlank()) stringResource(R.string.core_common_error_a11y) else null, tint = errorIconColor(state = state) ) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTopAppBar.kt b/core/src/main/java/com/orange/ouds/core/component/OudsTopAppBar.kt index b84fef5e02..9c91f827d6 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTopAppBar.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsTopAppBar.kt @@ -38,7 +38,6 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.res.painterResource import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics @@ -61,6 +60,7 @@ import com.orange.ouds.core.utilities.OudsPreviewLightDark import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import org.jetbrains.compose.resources.painterResource /** * App bar (aka Top app bar on Material 2) is a top-aligned component that displays the screen title and provides access to key actions and navigation @@ -434,7 +434,7 @@ open class OudsTopAppBarNavigationIcon private constructor( * @param onClick Callback invoked when the navigation icon is clicked. */ class Back(onClick: () -> Unit) : OudsTopAppBarNavigationIcon( - { painterResource(id = OudsTheme.drawableResources.functional.navigation.formChevronLeft) }, + { painterResource(resource = OudsTheme.drawableResources.functional.navigation.formChevronLeft) }, { stringResource(R.string.core_topAppBar_backNavigationIcon_a11y) }, onClick ) @@ -446,7 +446,7 @@ open class OudsTopAppBarNavigationIcon private constructor( * @param onClick Callback invoked when the navigation icon is clicked. */ class Close(onClick: () -> Unit) : OudsTopAppBarNavigationIcon( - { painterResource(id = OudsTheme.drawableResources.functional.actions.deleteCrossRound) }, + { painterResource(resource = OudsTheme.drawableResources.functional.actions.deleteCrossRound) }, { stringResource(R.string.core_topAppBar_closeNavigationIcon_a11y) }, onClick ) @@ -458,7 +458,7 @@ open class OudsTopAppBarNavigationIcon private constructor( * @param onClick Callback invoked when the navigation icon is clicked. */ class Menu(onClick: () -> Unit) : OudsTopAppBarNavigationIcon( - { painterResource(id = OudsTheme.drawableResources.functional.navigation.menuGridUiRound) }, + { painterResource(resource = OudsTheme.drawableResources.functional.navigation.menuGridUiRound) }, { stringResource(R.string.core_topAppBar_menuNavigationIcon_a11y) }, onClick ) diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt b/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt index 99ab72fd51..9b81eebebc 100644 --- a/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt +++ b/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt @@ -23,6 +23,8 @@ import androidx.compose.runtime.staticCompositionLocalOf import androidx.compose.ui.platform.LocalConfiguration import androidx.compose.ui.platform.LocalContext import androidx.compose.ui.platform.LocalInspectionMode +import androidx.compose.ui.platform.LocalLocale +import androidx.compose.ui.text.intl.Locale import androidx.core.app.LocaleManagerCompat import androidx.core.os.ConfigurationCompat import androidx.core.os.LocaleListCompat @@ -192,7 +194,7 @@ fun OudsTheme( } val locale = applicationLocaleList.get(0) .orElse { ConfigurationCompat.getLocales(LocalConfiguration.current).get(0) } - .orElse { java.util.Locale.getDefault() } + .orElse { LocalLocale.current.platformLocale } CompositionLocalProvider( LocalDarkThemeEnabled provides darkThemeEnabled, @@ -205,7 +207,7 @@ fun OudsTheme( LocalBorders provides borderTokens.getBorders(), LocalEffects provides effectTokens.getEffects(), LocalElevations provides elevationTokens.getElevations(), - LocalTypography provides fontTokens.getTypography(getFontFamily(locale), windowWidthSizeClass), + LocalTypography provides fontTokens.getTypography(getFontFamily(Locale.current), windowWidthSizeClass), LocalGrids provides gridTokens.getGrids(windowWidthSizeClass), LocalOpacities provides opacityTokens.getOpacities(), LocalSizes provides sizeTokens.getSizes(windowWidthSizeClass), diff --git a/core/src/main/java/com/orange/ouds/core/utilities/OudsPreview.kt b/core/src/main/java/com/orange/ouds/core/utilities/OudsPreview.kt index 614d8626cf..a29d7abdac 100644 --- a/core/src/main/java/com/orange/ouds/core/utilities/OudsPreview.kt +++ b/core/src/main/java/com/orange/ouds/core/utilities/OudsPreview.kt @@ -57,8 +57,9 @@ import com.orange.ouds.core.theme.LocalHighContrastModeEnabled import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings -import com.orange.ouds.theme.orange.OrangeTheme -import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily +import com.orange.ouds.theme.wireframe.WireframeTheme +//import com.orange.ouds.theme.orange.OrangeTheme +//import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily import kotlin.enums.enumEntries import kotlin.math.ceil import kotlin.math.min @@ -126,7 +127,7 @@ internal fun OudsThemeContract.mapSettings(transform: (OudsThemeSettings) -> (Ou } } -internal fun getPreviewTheme(): OudsThemeContract = OrangeTheme(getPreviewOrangeFontFamily()) +internal fun getPreviewTheme(): OudsThemeContract = WireframeTheme()//OrangeTheme(getPreviewOrangeFontFamily()) internal fun buildPreviewAnnotatedErrorMessage() = buildOudsAnnotatedErrorMessage { append("Error message with ") diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7aba136fb3..721e9d8034 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -37,8 +37,8 @@ zxing = "3.5.4" runner = "1.5.2" coreVersion = "1.5.0" junit = "1.3.0" -compose-multiplatform = "1.11.1" -compose-material3 = "1.9.0" +composeMultiplatform = "1.11.1" +composeMaterial3 = "1.9.0" [libraries] android-gradle-plugin = { group = "com.android.tools.build", name = "gradle", version.ref = "gradle" } @@ -60,8 +60,9 @@ androidx-core = { group = "androidx.core", name = "core", version.ref = "core" } androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "dataStorePreferences" } androidx-hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hiltNavigationCompose" } androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" } -compose-material3 = { module = "org.jetbrains.compose.material3:material3", version.ref = "compose-material3" } -compose-ui = { module = "org.jetbrains.compose.ui:ui", version.ref = "compose-multiplatform" } +compose-components-resources = { module = "org.jetbrains.compose.components:components-resources", version.ref = "composeMultiplatform" } +compose-material3 = { module = "org.jetbrains.compose.material3:material3", version.ref = "composeMaterial3" } +compose-ui = { module = "org.jetbrains.compose.ui:ui", version.ref = "composeMultiplatform" } dokka-android-documentation-plugin = { module = "org.jetbrains.dokka:android-documentation-plugin", version.ref = "dokka" } dokka-base = { module = "org.jetbrains.dokka:dokka-base", version.ref = "dokka" } dokka-core = { module = "org.jetbrains.dokka:dokka-core", version.ref = "dokka" } @@ -104,7 +105,7 @@ android-kotlin-multiplatform-library = { id = "com.android.kotlin.multiplatform. android-library = { id = "com.android.library", version.ref = "gradle" } android-lint = { id = "com.android.lint", version.ref = "gradle" } compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } -compose-multiplatform = { id = "org.jetbrains.compose", version.ref = "compose-multiplatform" } +compose-multiplatform = { id = "org.jetbrains.compose", version.ref = "composeMultiplatform" } dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } firebase-appdistribution = { id = "com.google.firebase.appdistribution", version.ref = "firebaseAppDistribution" } firebase-crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "firebaseCrashlytics" } diff --git a/settings.gradle.kts b/settings.gradle.kts index 98a89aed8d..63ec78e43e 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -31,7 +31,7 @@ dependencyResolutionManagement { } } -rootProject.name = "OUDS Android" +rootProject.name = "OUDS_Android" include(":dokka-plugin") include(":app") include(":foundation") @@ -39,7 +39,7 @@ include(":core") include(":core-test") include(":global-raw-tokens") include(":theme-contract") -include(":theme-orange") -include(":theme-orange-compact") -include(":theme-sosh") +//include(":theme-orange") +//include(":theme-orange-compact") +//include(":theme-sosh") include(":theme-wireframe") \ No newline at end of file diff --git a/theme-contract/build.gradle.kts b/theme-contract/build.gradle.kts index b425c6dbcd..cf3c2be93c 100644 --- a/theme-contract/build.gradle.kts +++ b/theme-contract/build.gradle.kts @@ -41,6 +41,8 @@ kotlin { compileSdk = libs.versions.androidCompileSdk.get().toInt() minSdk = libs.versions.androidMinSdk.get().toInt() + androidResources.enable = true + withHostTestBuilder { } @@ -86,6 +88,7 @@ kotlin { sourceSets { commonMain { dependencies { + implementation(libs.compose.components.resources) implementation(libs.kotlin.stdlib) // Add KMP dependencies here implementation(project(":foundation")) diff --git a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt index 78b19aaed4..74d12f7914 100644 --- a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt +++ b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt @@ -12,8 +12,8 @@ package com.orange.ouds.theme -import androidx.annotation.DrawableRes import com.orange.ouds.foundation.InternalOudsApi +import org.jetbrains.compose.resources.DrawableResource /** * @suppress @@ -29,13 +29,11 @@ interface OudsDrawableResources { val securityAndSafety: SecurityAndSafety interface Accessibility { - @get:DrawableRes - val vision: Int + val vision: DrawableResource } interface SecurityAndSafety { - @get:DrawableRes - val lockClosed: Int + val lockClosed: DrawableResource } } @@ -52,98 +50,73 @@ interface OudsDrawableResources { val tag: Tag interface Alert { - @get:DrawableRes - val importantFill: Int + val importantFill: DrawableResource - @get:DrawableRes - val infoFill: Int + val infoFill: DrawableResource + + val tickConfirmationFill: DrawableResource - @get:DrawableRes - val tickConfirmationFill: Int + val warningExternalShape: DrawableResource - @get:DrawableRes - val warningExternalShape: Int - - @get:DrawableRes - val warningInternalShape: Int + val warningInternalShape: DrawableResource } interface BadgeIcon { - @get:DrawableRes - val errorFill: Int + val errorFill: DrawableResource - @get:DrawableRes - val infoFill: Int + val infoFill: DrawableResource - @get:DrawableRes - val tickConfirmationFill: Int + val tickConfirmationFill: DrawableResource - @get:DrawableRes - val warningExternalShape: Int + val warningExternalShape: DrawableResource - @get:DrawableRes - val warningInternalShape: Int + val warningInternalShape: DrawableResource } interface BulletList { - @get:DrawableRes - val level0: Int + val level0: DrawableResource - @get:DrawableRes - val level1: Int + val level1: DrawableResource - @get:DrawableRes - val level2: Int + val level2: DrawableResource - @get:DrawableRes - val tick: Int + val tick: DrawableResource } interface Button { - @get:DrawableRes - val expurge: Int + val expurge: DrawableResource - @get:DrawableRes - val next: Int + val next: DrawableResource - @get:DrawableRes - val previous: Int + val previous: DrawableResource } interface Checkbox { - @get:DrawableRes - val selected: Int + val selected: DrawableResource - @get:DrawableRes - val undetermined: Int + val undetermined: DrawableResource } interface Chip { - @get:DrawableRes - val tick: Int + val tick: DrawableResource } interface Link { - @get:DrawableRes - val next: Int + val next: DrawableResource - @get:DrawableRes - val previous: Int + val previous: DrawableResource } interface RadioButton { - @get:DrawableRes - val selected: Int + val selected: DrawableResource } interface Switch { - @get:DrawableRes - val selected: Int + val selected: DrawableResource } interface Tag { - @get:DrawableRes - val close: Int + val close: DrawableResource } } @@ -154,26 +127,21 @@ interface OudsDrawableResources { val socialAndEngagement: SocialAndEngagement interface Actions { - @get:DrawableRes - val deleteCrossRound: Int + val deleteCrossRound: DrawableResource } interface Navigation { - @get:DrawableRes - val formChevronLeft: Int + val formChevronLeft: DrawableResource - @get:DrawableRes - val menuGridUiRound: Int + val menuGridUiRound: DrawableResource } interface SettingsAndTools { - @get:DrawableRes - val accessibilityHide: Int + val accessibilityHide: DrawableResource } interface SocialAndEngagement { - @get:DrawableRes - val heartRecommend: Int + val heartRecommend: DrawableResource } } } \ No newline at end of file diff --git a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt index 8eb8ddfd8d..6e99a07cc7 100644 --- a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt +++ b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt @@ -12,7 +12,9 @@ package com.orange.ouds.theme +import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.intl.Locale import com.orange.ouds.theme.tokens.components.OudsComponentsTokens import com.orange.ouds.theme.tokens.material.OudsMaterialColorTokens import com.orange.ouds.theme.tokens.semantic.OudsBorderSemanticTokens @@ -24,7 +26,6 @@ import com.orange.ouds.theme.tokens.semantic.OudsGridSemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsOpacitySemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsSizeSemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsSpaceSemanticTokens -import java.util.Locale /** * An interface to create an OUDS supported theme. @@ -71,19 +72,6 @@ interface OudsThemeContract { */ val elevationTokens: OudsElevationSemanticTokens - /** - * The font family used in the theme. - * - * Defaults to [FontFamily.Default] (system font). - * You can provide a custom font family, for example: `FontFamily(Font(R.font.my_custom_font))`. - */ - @Deprecated( - "Use getFontFamily instead.", - ReplaceWith("getFontFamily(Locale.getDefault())") - ) - val fontFamily: FontFamily - get() = FontFamily.Default - /** * The font family used in the theme. * @@ -92,8 +80,8 @@ interface OudsThemeContract { * * @param locale The locale to use for the font family. */ - @Suppress("DEPRECATION") - fun getFontFamily(locale: Locale): FontFamily = fontFamily + @Composable + fun getFontFamily(locale: Locale): FontFamily = FontFamily.Default /** * The collection of typography semantic tokens (font sizes, weights, line heights) used in the theme. diff --git a/theme-wireframe/build.gradle.kts b/theme-wireframe/build.gradle.kts index 7ad00cb543..adfcd114cf 100644 --- a/theme-wireframe/build.gradle.kts +++ b/theme-wireframe/build.gradle.kts @@ -11,49 +11,126 @@ */ plugins { - id("dokka") - id("library") +// id("dokka") +// id("library") id("paparazzi") alias(libs.plugins.compose.compiler) - id(libs.plugins.kotlin.parcelize.get().pluginId) // https://github.com/gradle/gradle/issues/20084#issuecomment-1060822638 alias(libs.plugins.paparazzi) + alias(libs.plugins.compose.multiplatform) + id(libs.plugins.kotlin.multiplatform.get().pluginId) + id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) } // Temporary workaround for https://issuetracker.google.com/issues/476936389 -val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) -dokkaKotlinAdapter.apply(project) +//val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) +//dokkaKotlinAdapter.apply(project) -android { - namespace = "com.orange.ouds.theme.wireframe" +kotlin { + jvmToolchain(17) - buildFeatures { - compose = true + compilerOptions { + freeCompilerArgs.addAll( + "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", + "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", + "-opt-in=com.orange.ouds.foundation.InternalOudsApi" + ) } - kotlin { - compilerOptions { - freeCompilerArgs.addAll( - "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", - "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", - "-opt-in=com.orange.ouds.foundation.InternalOudsApi" - ) + // Target declarations - add or remove as needed below. These define + // which platforms this KMP module supports. + // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets + android { + namespace = "com.orange.ouds.theme.wireframe" + compileSdk = libs.versions.androidCompileSdk.get().toInt() + minSdk = libs.versions.androidMinSdk.get().toInt() + + androidResources.enable = true + + withHostTestBuilder { + } + + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } } -} -dependencies { - // TODO Remove the core dependency when https://github.com/cashapp/paparazzi/issues/1060 is fixed - // A few considerations about this fix: - // - The core dependency is needed otherwise core resources are not found during Paparazzi tests - // - We use runtimeOnly instead of implementation otherwise there is a cyclic dependency between core and this module if it is used as the preview theme - // - Moreover, although using runtimeOnly works when launching tests, this leads to a cyclic dependency when launching the linter, - // that's why we only add this dependency when launching Paparazzi tasks - if (gradle.startParameter.taskNames.any { it.contains("paparazzi", ignoreCase = true) }) { - runtimeOnly(project(":core")) + // For iOS targets, this is also where you should + // configure native binary output. For more information, see: + // https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks + + // A step-by-step guide on how to include this library in an XCode + // project can be found here: + // https://developer.android.com/kotlin/multiplatform/migrate + val xcfName = "oudsThemeContract" + +// iosX64 { +// binaries.framework { +// baseName = xcfName +// } +// } + + iosArm64 { + binaries.framework { + baseName = xcfName + } + } + + iosSimulatorArm64 { + binaries.framework { + baseName = xcfName + } } - implementation(project(":foundation")) - implementation(project(":global-raw-tokens")) - implementation(project(":theme-contract")) - testImplementation(project(":core-test")) -} \ No newline at end of file + // Source set declarations. + // Declaring a target automatically creates a source set with the same name. By default, the + // Kotlin Gradle Plugin creates additional source sets that depend on each other, since it is + // common to share sources between related targets. + // See: https://kotlinlang.org/docs/multiplatform-hierarchy.html + sourceSets { + commonMain { + dependencies { + implementation(libs.compose.components.resources) + implementation(libs.kotlin.stdlib) + // Add KMP dependencies here + implementation(project(":foundation")) + implementation(project(":global-raw-tokens")) + implementation(project(":theme-contract")) + //testImplementation(project(":core-test")) + } + } + + commonTest { + dependencies { + implementation(libs.kotlin.test) + } + } + + androidMain { + dependencies { + // Add Android-specific dependencies here. Note that this source set depends on + // commonMain by default and will correctly pull the Android artifacts of any KMP + // dependencies declared in commonMain. + } + } + + getByName("androidDeviceTest") { + dependencies { + implementation(libs.androidx.junit) + implementation(libs.androidx.runner) + implementation(libs.core) + } + } + + iosMain { + dependencies { + // Add iOS-specific dependencies here. This a source set created by Kotlin Gradle + // Plugin (KGP) that each specific iOS target (e.g., iosX64) depends on as + // part of KMP’s default source set hierarchy. Note that this source set depends + // on common by default and will correctly pull the iOS artifacts of any + // KMP dependencies declared in commonMain. + } + } + } +} diff --git a/theme-wireframe/src/main/AndroidManifest.xml b/theme-wireframe/src/androidMain/AndroidManifest.xml similarity index 100% rename from theme-wireframe/src/main/AndroidManifest.xml rename to theme-wireframe/src/androidMain/AndroidManifest.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_communication_accessibility_vision.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_communication_accessibility_vision.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_communication_accessibility_vision.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_communication_accessibility_vision.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_communication_security_and_safety_lock_closed.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_communication_security_and_safety_lock_closed.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_communication_security_and_safety_lock_closed.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_communication_security_and_safety_lock_closed.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_important_fill.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_important_fill.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_important_fill.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_important_fill.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_info_fill.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_info_fill.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_info_fill.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_info_fill.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_tick_confirmation_fill.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_tick_confirmation_fill.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_tick_confirmation_fill.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_tick_confirmation_fill.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_warning_external_shape.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_warning_external_shape.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_warning_external_shape.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_warning_external_shape.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_warning_internal_shape.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_warning_internal_shape.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_alert_warning_internal_shape.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_alert_warning_internal_shape.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_error_fill.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_error_fill.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_error_fill.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_error_fill.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_info_fill.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_info_fill.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_info_fill.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_info_fill.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_tick_confirmation_fill.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_tick_confirmation_fill.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_tick_confirmation_fill.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_tick_confirmation_fill.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_warning_external_shape.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_warning_external_shape.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_warning_external_shape.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_warning_external_shape.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_warning_internal_shape.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_warning_internal_shape.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_badge_icon_warning_internal_shape.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_badge_icon_warning_internal_shape.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_bullet_list_level0.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_bullet_list_level0.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_bullet_list_level0.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_bullet_list_level0.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_bullet_list_level1.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_bullet_list_level1.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_bullet_list_level1.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_bullet_list_level1.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_bullet_list_level2.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_bullet_list_level2.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_bullet_list_level2.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_bullet_list_level2.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_bullet_list_tick.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_bullet_list_tick.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_bullet_list_tick.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_bullet_list_tick.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_button_expurge.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_button_expurge.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_button_expurge.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_button_expurge.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_button_next.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_button_next.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_button_next.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_button_next.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_button_previous.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_button_previous.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_button_previous.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_button_previous.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_checkbox_selected.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_checkbox_selected.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_checkbox_selected.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_checkbox_selected.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_checkbox_undetermined.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_checkbox_undetermined.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_checkbox_undetermined.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_checkbox_undetermined.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_chip_tick.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_chip_tick.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_chip_tick.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_chip_tick.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_link_next.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_link_next.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_link_next.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_link_next.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_link_previous.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_link_previous.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_link_previous.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_link_previous.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_radio_button_selected.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_radio_button_selected.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_radio_button_selected.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_radio_button_selected.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_switch_selected_switch.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_switch_selected_switch.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_switch_selected_switch.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_switch_selected_switch.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_component_tag_close.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_tag_close.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_component_tag_close.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_component_tag_close.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_functional_actions_delete_cross_round.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_actions_delete_cross_round.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_functional_actions_delete_cross_round.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_actions_delete_cross_round.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_functional_navigation_form_chevron_left.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_navigation_form_chevron_left.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_functional_navigation_form_chevron_left.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_navigation_form_chevron_left.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_functional_navigation_menu_grid_ui_round.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_navigation_menu_grid_ui_round.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_functional_navigation_menu_grid_ui_round.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_navigation_menu_grid_ui_round.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_functional_settings_and_tools_accessibility_hide.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_settings_and_tools_accessibility_hide.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_functional_settings_and_tools_accessibility_hide.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_settings_and_tools_accessibility_hide.xml diff --git a/theme-wireframe/src/main/res/drawable/ic_wireframe_functional_social_and_engagement_heart_recommend.xml b/theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_social_and_engagement_heart_recommend.xml similarity index 100% rename from theme-wireframe/src/main/res/drawable/ic_wireframe_functional_social_and_engagement_heart_recommend.xml rename to theme-wireframe/src/commonMain/composeResources/drawable/ic_wireframe_functional_social_and_engagement_heart_recommend.xml diff --git a/theme-wireframe/src/main/res/font/shantellsans_bold.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_bold.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_bold.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_bold.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_bolditalic.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_bolditalic.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_bolditalic.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_bolditalic.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_extrabold.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_extrabold.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_extrabold.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_extrabold.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_extrabolditalic.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_extrabolditalic.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_extrabolditalic.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_extrabolditalic.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_italic.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_italic.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_italic.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_italic.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_light.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_light.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_light.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_light.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_lightitalic.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_lightitalic.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_lightitalic.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_lightitalic.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_medium.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_medium.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_medium.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_medium.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_mediumitalic.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_mediumitalic.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_mediumitalic.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_mediumitalic.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_regular.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_regular.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_regular.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_regular.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_semibold.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_semibold.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_semibold.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_semibold.ttf diff --git a/theme-wireframe/src/main/res/font/shantellsans_semibolditalic.ttf b/theme-wireframe/src/commonMain/composeResources/font/shantellsans_semibolditalic.ttf similarity index 100% rename from theme-wireframe/src/main/res/font/shantellsans_semibolditalic.ttf rename to theme-wireframe/src/commonMain/composeResources/font/shantellsans_semibolditalic.ttf diff --git a/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeDrawableResources.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeDrawableResources.kt new file mode 100644 index 0000000000..45884c17d4 --- /dev/null +++ b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeDrawableResources.kt @@ -0,0 +1,159 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.theme.wireframe + +import com.orange.ouds.theme.OudsDrawableResources +import ouds_android.theme_wireframe.generated.resources.Res +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_communication_accessibility_vision +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_communication_security_and_safety_lock_closed +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_alert_important_fill +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_alert_info_fill +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_alert_tick_confirmation_fill +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_alert_warning_external_shape +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_alert_warning_internal_shape +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_badge_icon_error_fill +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_badge_icon_info_fill +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_badge_icon_tick_confirmation_fill +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_badge_icon_warning_external_shape +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_badge_icon_warning_internal_shape +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_bullet_list_level0 +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_bullet_list_level1 +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_bullet_list_level2 +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_bullet_list_tick +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_button_expurge +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_button_next +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_button_previous +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_checkbox_selected +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_checkbox_undetermined +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_chip_tick +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_link_next +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_link_previous +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_radio_button_selected +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_switch_selected_switch +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_component_tag_close +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_functional_actions_delete_cross_round +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_functional_navigation_form_chevron_left +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_functional_navigation_menu_grid_ui_round +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_functional_settings_and_tools_accessibility_hide +import ouds_android.theme_wireframe.generated.resources.ic_wireframe_functional_social_and_engagement_heart_recommend + +internal class WireframeDrawableResources : OudsDrawableResources { + override val communication = Communication() + override val component = Component() + override val functional = Functional() + + class Communication : OudsDrawableResources.Communication { + override val accessibility = Accessibility() + override val securityAndSafety = SecurityAndSafety() + + class Accessibility : OudsDrawableResources.Communication.Accessibility { + override val vision = Res.drawable.ic_wireframe_communication_accessibility_vision + } + + class SecurityAndSafety : OudsDrawableResources.Communication.SecurityAndSafety { + override val lockClosed = Res.drawable.ic_wireframe_communication_security_and_safety_lock_closed + } + } + + class Component : OudsDrawableResources.Component { + override val alert = Alert() + override val badgeIcon = BadgeIcon() + override val bulletList = BulletList() + override val button = Button() + override val checkbox = Checkbox() + override val chip = Chip() + override val link = Link() + override val radioButton = RadioButton() + override val switch = Switch() + override val tag = Tag() + + class Alert : OudsDrawableResources.Component.Alert { + override val importantFill = Res.drawable.ic_wireframe_component_alert_important_fill + override val infoFill = Res.drawable.ic_wireframe_component_alert_info_fill + override val tickConfirmationFill = Res.drawable.ic_wireframe_component_alert_tick_confirmation_fill + override val warningExternalShape = Res.drawable.ic_wireframe_component_alert_warning_external_shape + override val warningInternalShape = Res.drawable.ic_wireframe_component_alert_warning_internal_shape + } + + class BadgeIcon : OudsDrawableResources.Component.BadgeIcon { + override val errorFill = Res.drawable.ic_wireframe_component_badge_icon_error_fill + override val infoFill = Res.drawable.ic_wireframe_component_badge_icon_info_fill + override val tickConfirmationFill = Res.drawable.ic_wireframe_component_badge_icon_tick_confirmation_fill + override val warningExternalShape = Res.drawable.ic_wireframe_component_badge_icon_warning_external_shape + override val warningInternalShape = Res.drawable.ic_wireframe_component_badge_icon_warning_internal_shape + } + + class BulletList : OudsDrawableResources.Component.BulletList { + override val level0 = Res.drawable.ic_wireframe_component_bullet_list_level0 + override val level1 = Res.drawable.ic_wireframe_component_bullet_list_level1 + override val level2 = Res.drawable.ic_wireframe_component_bullet_list_level2 + override val tick = Res.drawable.ic_wireframe_component_bullet_list_tick + } + + class Button : OudsDrawableResources.Component.Button { + override val expurge = Res.drawable.ic_wireframe_component_button_expurge + override val next = Res.drawable.ic_wireframe_component_button_next + override val previous = Res.drawable.ic_wireframe_component_button_previous + } + + class Checkbox : OudsDrawableResources.Component.Checkbox { + override val selected = Res.drawable.ic_wireframe_component_checkbox_selected + override val undetermined = Res.drawable.ic_wireframe_component_checkbox_undetermined + } + + class Chip : OudsDrawableResources.Component.Chip { + override val tick = Res.drawable.ic_wireframe_component_chip_tick + } + + class Link : OudsDrawableResources.Component.Link { + override val next = Res.drawable.ic_wireframe_component_link_next + override val previous = Res.drawable.ic_wireframe_component_link_previous + } + + class RadioButton : OudsDrawableResources.Component.RadioButton { + override val selected = Res.drawable.ic_wireframe_component_radio_button_selected + } + + class Switch : OudsDrawableResources.Component.Switch { + override val selected = Res.drawable.ic_wireframe_component_switch_selected_switch + } + + class Tag : OudsDrawableResources.Component.Tag { + override val close = Res.drawable.ic_wireframe_component_tag_close + } + } + + class Functional : OudsDrawableResources.Functional { + override val actions = Actions() + override val navigation = Navigation() + override val settingsAndTools = SettingsAndTools() + override val socialAndEngagement = SocialAndEngagement() + + class Actions : OudsDrawableResources.Functional.Actions { + override val deleteCrossRound = Res.drawable.ic_wireframe_functional_actions_delete_cross_round + } + + class Navigation : OudsDrawableResources.Functional.Navigation { + override val formChevronLeft = Res.drawable.ic_wireframe_functional_navigation_form_chevron_left + override val menuGridUiRound = Res.drawable.ic_wireframe_functional_navigation_menu_grid_ui_round + } + + class SettingsAndTools : OudsDrawableResources.Functional.SettingsAndTools { + override val accessibilityHide = Res.drawable.ic_wireframe_functional_settings_and_tools_accessibility_hide + } + + class SocialAndEngagement : OudsDrawableResources.Functional.SocialAndEngagement { + override val heartRecommend = Res.drawable.ic_wireframe_functional_social_and_engagement_heart_recommend + } + } +} diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/WireframeTheme.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeTheme.kt similarity index 61% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/WireframeTheme.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeTheme.kt index bc4a6f9ec9..8affd5753b 100644 --- a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/WireframeTheme.kt +++ b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeTheme.kt @@ -12,10 +12,11 @@ package com.orange.ouds.theme.wireframe -import androidx.compose.ui.text.font.Font +import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily import androidx.compose.ui.text.font.FontStyle import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.text.intl.Locale import com.orange.ouds.theme.OudsDrawableResources import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings @@ -41,6 +42,20 @@ import com.orange.ouds.theme.wireframe.tokens.semantic.WireframeGridSemanticToke import com.orange.ouds.theme.wireframe.tokens.semantic.WireframeOpacitySemanticTokens import com.orange.ouds.theme.wireframe.tokens.semantic.WireframeSizeSemanticTokens import com.orange.ouds.theme.wireframe.tokens.semantic.WireframeSpaceSemanticTokens +import org.jetbrains.compose.resources.Font +import ouds_android.theme_wireframe.generated.resources.Res +import ouds_android.theme_wireframe.generated.resources.shantellsans_bold +import ouds_android.theme_wireframe.generated.resources.shantellsans_bolditalic +import ouds_android.theme_wireframe.generated.resources.shantellsans_extrabold +import ouds_android.theme_wireframe.generated.resources.shantellsans_extrabolditalic +import ouds_android.theme_wireframe.generated.resources.shantellsans_italic +import ouds_android.theme_wireframe.generated.resources.shantellsans_light +import ouds_android.theme_wireframe.generated.resources.shantellsans_lightitalic +import ouds_android.theme_wireframe.generated.resources.shantellsans_medium +import ouds_android.theme_wireframe.generated.resources.shantellsans_mediumitalic +import ouds_android.theme_wireframe.generated.resources.shantellsans_regular +import ouds_android.theme_wireframe.generated.resources.shantellsans_semibold +import ouds_android.theme_wireframe.generated.resources.shantellsans_semibolditalic const val WIREFRAME_THEME_NAME = "Wireframe" @@ -55,23 +70,6 @@ class WireframeTheme : OudsThemeContract { override val settings: OudsThemeSettings get() = OudsThemeSettings() - @Suppress("OVERRIDE_DEPRECATION") - override val fontFamily: FontFamily - get() = FontFamily( - Font(R.font.shantellsans_extrabold, weight = FontWeight.ExtraBold), - Font(R.font.shantellsans_extrabolditalic, weight = FontWeight.ExtraBold, style = FontStyle.Italic), - Font(R.font.shantellsans_bold, weight = FontWeight.Bold), - Font(R.font.shantellsans_bolditalic, weight = FontWeight.Bold, style = FontStyle.Italic), - Font(R.font.shantellsans_semibold, weight = FontWeight.SemiBold), - Font(R.font.shantellsans_semibolditalic, weight = FontWeight.SemiBold, style = FontStyle.Italic), - Font(R.font.shantellsans_medium, weight = FontWeight.Medium), - Font(R.font.shantellsans_mediumitalic, weight = FontWeight.Medium, style = FontStyle.Italic), - Font(R.font.shantellsans_regular, weight = FontWeight.Normal), - Font(R.font.shantellsans_italic, weight = FontWeight.Normal, style = FontStyle.Italic), - Font(R.font.shantellsans_light, weight = FontWeight.Light), - Font(R.font.shantellsans_lightitalic, weight = FontWeight.Light, style = FontStyle.Italic) - ) - override val colorTokens: OudsColorSemanticTokens get() = WireframeColorSemanticTokens() @@ -107,4 +105,22 @@ class WireframeTheme : OudsThemeContract { override val drawableResources: OudsDrawableResources get() = WireframeDrawableResources() + + @Composable + override fun getFontFamily(locale: Locale): FontFamily { + return FontFamily( + Font(resource = Res.font.shantellsans_extrabold, weight = FontWeight.ExtraBold), + Font(resource = Res.font.shantellsans_extrabolditalic, weight = FontWeight.ExtraBold, style = FontStyle.Italic), + Font(resource = Res.font.shantellsans_bold, weight = FontWeight.Bold), + Font(resource = Res.font.shantellsans_bolditalic, weight = FontWeight.Bold, style = FontStyle.Italic), + Font(resource = Res.font.shantellsans_semibold, weight = FontWeight.SemiBold), + Font(resource = Res.font.shantellsans_semibolditalic, weight = FontWeight.SemiBold, style = FontStyle.Italic), + Font(resource = Res.font.shantellsans_medium, weight = FontWeight.Medium), + Font(resource = Res.font.shantellsans_mediumitalic, weight = FontWeight.Medium, style = FontStyle.Italic), + Font(resource = Res.font.shantellsans_regular, weight = FontWeight.Normal), + Font(resource = Res.font.shantellsans_italic, weight = FontWeight.Normal, style = FontStyle.Italic), + Font(resource = Res.font.shantellsans_light, weight = FontWeight.Light), + Font(resource = Res.font.shantellsans_lightitalic, weight = FontWeight.Light, style = FontStyle.Italic) + ) + } } diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeAlertTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeAlertTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeAlertTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeAlertTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeBadgeTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeBadgeTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeBadgeTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeBadgeTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeBarTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeBarTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeBarTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeBarTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeBulletListTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeBulletListTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeBulletListTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeBulletListTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonMonoTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonMonoTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonMonoTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonMonoTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeButtonTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeCheckboxTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeCheckboxTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeCheckboxTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeCheckboxTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeChipTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeChipTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeChipTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeChipTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeComponentsTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeControlItemTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeControlItemTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeControlItemTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeControlItemTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeDividerTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeDividerTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeDividerTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeDividerTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeIconTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeIconTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeIconTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeIconTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeInputTagTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeInputTagTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeInputTagTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeInputTagTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkMonoTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkMonoTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkMonoTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkMonoTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeLinkTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframePinCodeInputTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframePinCodeInputTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframePinCodeInputTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframePinCodeInputTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeProgressIndicatorTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeRadioButtonTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeRadioButtonTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeRadioButtonTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeRadioButtonTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeSwitchTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeSwitchTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeSwitchTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeSwitchTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeTagTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeTagTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeTagTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeTagTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextAreaTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextAreaTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextAreaTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextAreaTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextInputTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextInputTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextInputTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/components/WireframeTextInputTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/material/WireframeMaterialColorTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/material/WireframeMaterialColorTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/material/WireframeMaterialColorTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/material/WireframeMaterialColorTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/raw/WireframeColorRawTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/raw/WireframeColorRawTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/raw/WireframeColorRawTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/raw/WireframeColorRawTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeBorderSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeBorderSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeBorderSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeBorderSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorActionSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorActionSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorActionSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorActionSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorAlwaysSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorAlwaysSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorAlwaysSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorAlwaysSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBgSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBgSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBgSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBgSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBorderSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBorderSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBorderSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorBorderSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorContentSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorContentSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorContentSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorContentSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorModeSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorModeSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorModeSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorModeSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOpacitySemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOpacitySemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOpacitySemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOpacitySemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOverlaySemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOverlaySemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOverlaySemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorOverlaySemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorRepositorySemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorRepositorySemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorRepositorySemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorRepositorySemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSurfaceSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSurfaceSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSurfaceSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeColorSurfaceSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeEffectSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeEffectSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeEffectSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeEffectSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeElevationSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeElevationSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeElevationSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeElevationSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeFontSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeFontSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeFontSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeFontSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeGridSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeGridSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeGridSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeGridSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeOpacitySemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeOpacitySemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeOpacitySemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeOpacitySemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSizeSemanticTokens.kt diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSpaceSemanticTokens.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSpaceSemanticTokens.kt similarity index 100% rename from theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSpaceSemanticTokens.kt rename to theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/tokens/semantic/WireframeSpaceSemanticTokens.kt diff --git a/theme-wireframe/src/test/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt b/theme-wireframe/src/commonTest/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt similarity index 100% rename from theme-wireframe/src/test/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt rename to theme-wireframe/src/commonTest/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png b/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/WireframeDrawableResources.kt b/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/WireframeDrawableResources.kt deleted file mode 100644 index 3a485ebf1f..0000000000 --- a/theme-wireframe/src/main/java/com/orange/ouds/theme/wireframe/WireframeDrawableResources.kt +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Software Name: OUDS Android - * SPDX-FileCopyrightText: Copyright (c) Orange SA - * SPDX-License-Identifier: MIT - * - * This software is distributed under the MIT license, - * the text of which is available at https://opensource.org/license/MIT/ - * or see the "LICENSE" file for more details. - * - * Software description: Android library of reusable graphical components - */ - -package com.orange.ouds.theme.wireframe - -import com.orange.ouds.theme.OudsDrawableResources - -internal class WireframeDrawableResources : OudsDrawableResources { - override val communication = Communication() - override val component = Component() - override val functional = Functional() - - class Communication : OudsDrawableResources.Communication { - override val accessibility = Accessibility() - override val securityAndSafety = SecurityAndSafety() - - class Accessibility : OudsDrawableResources.Communication.Accessibility { - override val vision = R.drawable.ic_wireframe_communication_accessibility_vision - } - - class SecurityAndSafety : OudsDrawableResources.Communication.SecurityAndSafety { - override val lockClosed = R.drawable.ic_wireframe_communication_security_and_safety_lock_closed - } - } - - class Component : OudsDrawableResources.Component { - override val alert = Alert() - override val badgeIcon = BadgeIcon() - override val bulletList = BulletList() - override val button = Button() - override val checkbox = Checkbox() - override val chip = Chip() - override val link = Link() - override val radioButton = RadioButton() - override val switch = Switch() - override val tag = Tag() - - class Alert : OudsDrawableResources.Component.Alert { - override val importantFill = R.drawable.ic_wireframe_component_alert_important_fill - override val infoFill = R.drawable.ic_wireframe_component_alert_info_fill - override val tickConfirmationFill = R.drawable.ic_wireframe_component_alert_tick_confirmation_fill - override val warningExternalShape = R.drawable.ic_wireframe_component_alert_warning_external_shape - override val warningInternalShape = R.drawable.ic_wireframe_component_alert_warning_internal_shape - } - - class BadgeIcon : OudsDrawableResources.Component.BadgeIcon { - override val errorFill = R.drawable.ic_wireframe_component_badge_icon_error_fill - override val infoFill = R.drawable.ic_wireframe_component_badge_icon_info_fill - override val tickConfirmationFill = R.drawable.ic_wireframe_component_badge_icon_tick_confirmation_fill - override val warningExternalShape = R.drawable.ic_wireframe_component_badge_icon_warning_external_shape - override val warningInternalShape = R.drawable.ic_wireframe_component_badge_icon_warning_internal_shape - } - - class BulletList : OudsDrawableResources.Component.BulletList { - override val level0 = R.drawable.ic_wireframe_component_bullet_list_level0 - override val level1 = R.drawable.ic_wireframe_component_bullet_list_level1 - override val level2 = R.drawable.ic_wireframe_component_bullet_list_level2 - override val tick = R.drawable.ic_wireframe_component_bullet_list_tick - } - - class Button : OudsDrawableResources.Component.Button { - override val expurge = R.drawable.ic_wireframe_component_button_expurge - override val next = R.drawable.ic_wireframe_component_button_next - override val previous = R.drawable.ic_wireframe_component_button_previous - } - - class Checkbox : OudsDrawableResources.Component.Checkbox { - override val selected = R.drawable.ic_wireframe_component_checkbox_selected - override val undetermined = R.drawable.ic_wireframe_component_checkbox_undetermined - } - - class Chip : OudsDrawableResources.Component.Chip { - override val tick = R.drawable.ic_wireframe_component_chip_tick - } - - class Link : OudsDrawableResources.Component.Link { - override val next = R.drawable.ic_wireframe_component_link_next - override val previous = R.drawable.ic_wireframe_component_link_previous - } - - class RadioButton : OudsDrawableResources.Component.RadioButton { - override val selected = R.drawable.ic_wireframe_component_radio_button_selected - } - - class Switch : OudsDrawableResources.Component.Switch { - override val selected = R.drawable.ic_wireframe_component_switch_selected_switch - } - - class Tag : OudsDrawableResources.Component.Tag { - override val close = R.drawable.ic_wireframe_component_tag_close - } - } - - class Functional : OudsDrawableResources.Functional { - override val actions = Actions() - override val navigation = Navigation() - override val settingsAndTools = SettingsAndTools() - override val socialAndEngagement = SocialAndEngagement() - - class Actions : OudsDrawableResources.Functional.Actions { - override val deleteCrossRound = R.drawable.ic_wireframe_functional_actions_delete_cross_round - } - - class Navigation : OudsDrawableResources.Functional.Navigation { - override val formChevronLeft = R.drawable.ic_wireframe_functional_navigation_form_chevron_left - override val menuGridUiRound = R.drawable.ic_wireframe_functional_navigation_menu_grid_ui_round - } - - class SettingsAndTools : OudsDrawableResources.Functional.SettingsAndTools { - override val accessibilityHide = R.drawable.ic_wireframe_functional_settings_and_tools_accessibility_hide - } - - class SocialAndEngagement : OudsDrawableResources.Functional.SocialAndEngagement { - override val heartRecommend = R.drawable.ic_wireframe_functional_social_and_engagement_heart_recommend - } - } -} From 620ffca6a1bbb8fb90773caa29a516f75c5db1f8 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Wed, 24 Jun 2026 11:23:11 +0200 Subject: [PATCH 05/18] Replace Locale with language string --- .../com/orange/ouds/core/theme/OudsTheme.kt | 19 +--------- foundation/build.gradle.kts | 7 ++++ .../foundation/locale/Language.android.kt | 38 +++++++++++++++++++ .../orange/ouds/foundation/locale/Language.kt | 20 ++++++++++ .../ouds/foundation/locale/Language.ios.kt | 22 +++++++++++ .../orange/ouds/theme/OudsThemeContract.kt | 5 +-- .../ouds/theme/wireframe/WireframeTheme.kt | 3 +- 7 files changed, 92 insertions(+), 22 deletions(-) create mode 100644 foundation/src/androidMain/kotlin/com/orange/ouds/foundation/locale/Language.android.kt create mode 100644 foundation/src/commonMain/kotlin/com/orange/ouds/foundation/locale/Language.kt create mode 100644 foundation/src/iosMain/kotlin/com/orange/ouds/foundation/locale/Language.ios.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt b/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt index 9b81eebebc..edd6258443 100644 --- a/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt +++ b/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt @@ -20,17 +20,10 @@ import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.runtime.ReadOnlyComposable import androidx.compose.runtime.compositionLocalOf import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.platform.LocalConfiguration import androidx.compose.ui.platform.LocalContext -import androidx.compose.ui.platform.LocalInspectionMode -import androidx.compose.ui.platform.LocalLocale -import androidx.compose.ui.text.intl.Locale -import androidx.core.app.LocaleManagerCompat -import androidx.core.os.ConfigurationCompat -import androidx.core.os.LocaleListCompat import com.orange.ouds.core.extensions.isHighContrastModeEnabled import com.orange.ouds.foundation.RestrictedOudsApi -import com.orange.ouds.foundation.extensions.orElse +import com.orange.ouds.foundation.locale.getLanguage import com.orange.ouds.theme.OudsDrawableResources import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings @@ -187,14 +180,6 @@ fun OudsTheme( val materialColorScheme = if (darkThemeEnabled) materialColorTokens.materialDarkColorScheme else materialColorTokens.materialLightColorScheme val windowWidthSizeClass = WindowWidthSizeClass.compute(currentWindowWidth()) val context = LocalContext.current - val applicationLocaleList = if (!LocalInspectionMode.current) { - LocaleManagerCompat.getApplicationLocales(context) - } else { - LocaleListCompat.getEmptyLocaleList() - } - val locale = applicationLocaleList.get(0) - .orElse { ConfigurationCompat.getLocales(LocalConfiguration.current).get(0) } - .orElse { LocalLocale.current.platformLocale } CompositionLocalProvider( LocalDarkThemeEnabled provides darkThemeEnabled, @@ -207,7 +192,7 @@ fun OudsTheme( LocalBorders provides borderTokens.getBorders(), LocalEffects provides effectTokens.getEffects(), LocalElevations provides elevationTokens.getElevations(), - LocalTypography provides fontTokens.getTypography(getFontFamily(Locale.current), windowWidthSizeClass), + LocalTypography provides fontTokens.getTypography(getFontFamily(language = getLanguage()), windowWidthSizeClass), LocalGrids provides gridTokens.getGrids(windowWidthSizeClass), LocalOpacities provides opacityTokens.getOpacities(), LocalSizes provides sizeTokens.getSizes(windowWidthSizeClass), diff --git a/foundation/build.gradle.kts b/foundation/build.gradle.kts index d53df280ce..4931a289d3 100644 --- a/foundation/build.gradle.kts +++ b/foundation/build.gradle.kts @@ -20,6 +20,12 @@ plugins { kotlin { jvmToolchain(17) + compilerOptions { + freeCompilerArgs.addAll( + "-Xexpect-actual-classes" + ) + } + // Target declarations - add or remove as needed below. These define // which platforms this KMP module supports. // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets @@ -91,6 +97,7 @@ kotlin { // commonMain by default and will correctly pull the Android artifacts of any KMP // dependencies declared in commonMain. api(libs.androidx.compose.ui.tooling.preview) + implementation(libs.androidx.core) } } diff --git a/foundation/src/androidMain/kotlin/com/orange/ouds/foundation/locale/Language.android.kt b/foundation/src/androidMain/kotlin/com/orange/ouds/foundation/locale/Language.android.kt new file mode 100644 index 0000000000..d7b528794b --- /dev/null +++ b/foundation/src/androidMain/kotlin/com/orange/ouds/foundation/locale/Language.android.kt @@ -0,0 +1,38 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.foundation.locale + +import androidx.compose.runtime.Composable +import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalContext +import androidx.compose.ui.platform.LocalInspectionMode +import androidx.core.app.LocaleManagerCompat +import androidx.core.os.ConfigurationCompat +import androidx.core.os.LocaleListCompat +import com.orange.ouds.foundation.extensions.orElse +import java.util.Locale + +@Composable +actual fun getLanguage(): String { + val applicationLocaleList = if (!LocalInspectionMode.current) { + val context = LocalContext.current + LocaleManagerCompat.getApplicationLocales(context) + } else { + LocaleListCompat.getEmptyLocaleList() + } + val locale = applicationLocaleList.get(0) + .orElse { ConfigurationCompat.getLocales(LocalConfiguration.current).get(0) } + .orElse { Locale.getDefault() } + + return locale.toString() +} diff --git a/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/locale/Language.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/locale/Language.kt new file mode 100644 index 0000000000..b8da82e4db --- /dev/null +++ b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/locale/Language.kt @@ -0,0 +1,20 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.foundation.locale + +import androidx.compose.runtime.Composable +import com.orange.ouds.foundation.InternalOudsApi + +@Composable +@InternalOudsApi +expect fun getLanguage(): String diff --git a/foundation/src/iosMain/kotlin/com/orange/ouds/foundation/locale/Language.ios.kt b/foundation/src/iosMain/kotlin/com/orange/ouds/foundation/locale/Language.ios.kt new file mode 100644 index 0000000000..f0a2e680df --- /dev/null +++ b/foundation/src/iosMain/kotlin/com/orange/ouds/foundation/locale/Language.ios.kt @@ -0,0 +1,22 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.foundation.locale + +import androidx.compose.runtime.Composable +import platform.Foundation.NSLocale +import platform.Foundation.preferredLanguages + +@Composable +actual fun getLanguage(): String { + return NSLocale.preferredLanguages.first() as String +} diff --git a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt index 6e99a07cc7..c1d35557ed 100644 --- a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt +++ b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeContract.kt @@ -14,7 +14,6 @@ package com.orange.ouds.theme import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily -import androidx.compose.ui.text.intl.Locale import com.orange.ouds.theme.tokens.components.OudsComponentsTokens import com.orange.ouds.theme.tokens.material.OudsMaterialColorTokens import com.orange.ouds.theme.tokens.semantic.OudsBorderSemanticTokens @@ -78,10 +77,10 @@ interface OudsThemeContract { * Defaults to [FontFamily.Default] (system font). * You can provide a custom font family, for example: `FontFamily(Font(R.font.my_custom_font))`. * - * @param locale The locale to use for the font family. + * @param language The language to use for the font family. */ @Composable - fun getFontFamily(locale: Locale): FontFamily = FontFamily.Default + fun getFontFamily(language: String): FontFamily = FontFamily.Default /** * The collection of typography semantic tokens (font sizes, weights, line heights) used in the theme. diff --git a/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeTheme.kt b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeTheme.kt index 8affd5753b..e49ea84322 100644 --- a/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeTheme.kt +++ b/theme-wireframe/src/commonMain/kotlin/com/orange/ouds/theme/wireframe/WireframeTheme.kt @@ -16,7 +16,6 @@ import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily import androidx.compose.ui.text.font.FontStyle import androidx.compose.ui.text.font.FontWeight -import androidx.compose.ui.text.intl.Locale import com.orange.ouds.theme.OudsDrawableResources import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings @@ -107,7 +106,7 @@ class WireframeTheme : OudsThemeContract { get() = WireframeDrawableResources() @Composable - override fun getFontFamily(locale: Locale): FontFamily { + override fun getFontFamily(language: String): FontFamily { return FontFamily( Font(resource = Res.font.shantellsans_extrabold, weight = FontWeight.ExtraBold), Font(resource = Res.font.shantellsans_extrabolditalic, weight = FontWeight.ExtraBold, style = FontStyle.Italic), From 233bb9bdefac8a3ff9614341fd0500c4b86a45a7 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Tue, 30 Jun 2026 10:03:22 +0200 Subject: [PATCH 06/18] Fix Wireframe snapshot tests --- .../orange/ouds/core/component/OudsAvatarTest.kt | 5 ++--- .../ouds/core/component/OudsBadgedIconTest.kt | 5 ++--- .../ouds/core/component/OudsDigitInputTest.kt | 7 +++---- theme-wireframe/build.gradle.kts | 4 ++-- .../theme/wireframe/WireframeComponentTestSuite.kt | 0 ...MessageTest$Default_takeDarkThemeSnapshot[0].png | Bin ...MessageTest$Default_takeDarkThemeSnapshot[1].png | Bin ...MessageTest$Default_takeDarkThemeSnapshot[2].png | Bin ...essageTest$Default_takeLightThemeSnapshot[0].png | Bin ...essageTest$Default_takeLightThemeSnapshot[1].png | Bin ...essageTest$Default_takeLightThemeSnapshot[2].png | Bin ...ssageTest$WithRichText_takeDarkThemeSnapshot.png | Bin ...sageTest$WithRichText_takeLightThemeSnapshot.png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...dsBadgeTest$Default_takeDarkThemeSnapshot[0].png | Bin ...dsBadgeTest$Default_takeDarkThemeSnapshot[1].png | Bin ...dsBadgeTest$Default_takeDarkThemeSnapshot[2].png | Bin ...dsBadgeTest$Default_takeDarkThemeSnapshot[3].png | Bin ...dsBadgeTest$Default_takeDarkThemeSnapshot[4].png | Bin ...sBadgeTest$Default_takeLightThemeSnapshot[0].png | Bin ...sBadgeTest$Default_takeLightThemeSnapshot[1].png | Bin ...sBadgeTest$Default_takeLightThemeSnapshot[2].png | Bin ...sBadgeTest$Default_takeLightThemeSnapshot[3].png | Bin ...sBadgeTest$Default_takeLightThemeSnapshot[4].png | Bin ...sBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png | Bin ...sBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png | Bin ...BadgeTest$WithIcon_takeLightThemeSnapshot[0].png | Bin ...BadgeTest$WithIcon_takeLightThemeSnapshot[1].png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...ottomSheetScaffoldTest_takeDarkThemeSnapshot.png | Bin ...ttomSheetScaffoldTest_takeLightThemeSnapshot.png | Bin ...letListTest$Default_takeDarkThemeSnapshot[0].png | Bin ...letListTest$Default_takeDarkThemeSnapshot[1].png | Bin ...letListTest$Default_takeDarkThemeSnapshot[2].png | Bin ...etListTest$Default_takeLightThemeSnapshot[0].png | Bin ...etListTest$Default_takeLightThemeSnapshot[1].png | Bin ...etListTest$Default_takeLightThemeSnapshot[2].png | Bin ...BulletListTest$Rtl_takeLightThemeSnapshot[0].png | Bin ...BulletListTest$Rtl_takeLightThemeSnapshot[1].png | Bin ...BulletListTest$Rtl_takeLightThemeSnapshot[2].png | Bin ...tListTest$WithRichText_takeDarkThemeSnapshot.png | Bin ...ListTest$WithRichText_takeLightThemeSnapshot.png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[0].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[10].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[11].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[12].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[13].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[14].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[15].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[16].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[17].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[18].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[19].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[1].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[20].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[21].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[22].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[23].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[24].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[25].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[26].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[27].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[28].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[29].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[2].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[3].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[4].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[5].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[6].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[7].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[8].png | Bin ...sButtonTest$Default_takeDarkThemeSnapshot[9].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[0].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[10].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[11].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[12].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[13].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[14].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[15].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[16].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[17].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[18].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[19].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[1].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[20].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[21].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[22].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[23].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[24].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[25].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[26].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[27].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[28].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[29].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[2].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[3].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[4].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[5].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[6].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[7].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[8].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[9].png | Bin ...ButtonTest$OnTwoLines_takeLightThemeSnapshot.png | Bin ...Test$WithIconBadge_takeLightThemeSnapshot[0].png | Bin ...Test$WithIconBadge_takeLightThemeSnapshot[1].png | Bin ...st$WithRoundedCorners_takeLightThemeSnapshot.png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...boxItemTest$Default_takeDarkThemeSnapshot[0].png | Bin ...boxItemTest$Default_takeDarkThemeSnapshot[1].png | Bin ...boxItemTest$Default_takeDarkThemeSnapshot[2].png | Bin ...boxItemTest$Default_takeDarkThemeSnapshot[3].png | Bin ...boxItemTest$Default_takeDarkThemeSnapshot[4].png | Bin ...boxItemTest$Default_takeDarkThemeSnapshot[5].png | Bin ...oxItemTest$Default_takeLightThemeSnapshot[0].png | Bin ...oxItemTest$Default_takeLightThemeSnapshot[1].png | Bin ...oxItemTest$Default_takeLightThemeSnapshot[2].png | Bin ...oxItemTest$Default_takeLightThemeSnapshot[3].png | Bin ...oxItemTest$Default_takeLightThemeSnapshot[4].png | Bin ...oxItemTest$Default_takeLightThemeSnapshot[5].png | Bin ...Enabled_takeDarkThemeHighContrastSnapshot[0].png | Bin ...Enabled_takeDarkThemeHighContrastSnapshot[1].png | Bin ...nabled_takeLightThemeHighContrastSnapshot[0].png | Bin ...nabled_takeLightThemeHighContrastSnapshot[1].png | Bin ...ithEdgeToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...t$WithLongDescription_takeLightThemeSnapshot.png | Bin ...xItemTest$WithRichText_takeDarkThemeSnapshot.png | Bin ...ItemTest$WithRichText_takeLightThemeSnapshot.png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...boxTest_takeDarkThemeHighContrastSnapshot[0].png | Bin ...boxTest_takeDarkThemeHighContrastSnapshot[1].png | Bin ...boxTest_takeDarkThemeHighContrastSnapshot[2].png | Bin ...boxTest_takeDarkThemeHighContrastSnapshot[3].png | Bin ...boxTest_takeDarkThemeHighContrastSnapshot[4].png | Bin ...boxTest_takeDarkThemeHighContrastSnapshot[5].png | Bin ...st_OudsCheckboxTest_takeDarkThemeSnapshot[0].png | Bin ...st_OudsCheckboxTest_takeDarkThemeSnapshot[1].png | Bin ...st_OudsCheckboxTest_takeDarkThemeSnapshot[2].png | Bin ...st_OudsCheckboxTest_takeDarkThemeSnapshot[3].png | Bin ...st_OudsCheckboxTest_takeDarkThemeSnapshot[4].png | Bin ...st_OudsCheckboxTest_takeDarkThemeSnapshot[5].png | Bin ...oxTest_takeLightThemeHighContrastSnapshot[0].png | Bin ...oxTest_takeLightThemeHighContrastSnapshot[1].png | Bin ...oxTest_takeLightThemeHighContrastSnapshot[2].png | Bin ...oxTest_takeLightThemeHighContrastSnapshot[3].png | Bin ...oxTest_takeLightThemeHighContrastSnapshot[4].png | Bin ...oxTest_takeLightThemeHighContrastSnapshot[5].png | Bin ...t_OudsCheckboxTest_takeLightThemeSnapshot[0].png | Bin ...t_OudsCheckboxTest_takeLightThemeSnapshot[1].png | Bin ...t_OudsCheckboxTest_takeLightThemeSnapshot[2].png | Bin ...t_OudsCheckboxTest_takeLightThemeSnapshot[3].png | Bin ...t_OudsCheckboxTest_takeLightThemeSnapshot[4].png | Bin ...t_OudsCheckboxTest_takeLightThemeSnapshot[5].png | Bin ...ogressIndicatorTest_takeDarkThemeSnapshot[0].png | Bin ...ogressIndicatorTest_takeDarkThemeSnapshot[1].png | Bin ...ogressIndicatorTest_takeDarkThemeSnapshot[2].png | Bin ...gressIndicatorTest_takeLightThemeSnapshot[0].png | Bin ...gressIndicatorTest_takeLightThemeSnapshot[1].png | Bin ...gressIndicatorTest_takeLightThemeSnapshot[2].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[0].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[10].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[11].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[12].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[13].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[14].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[15].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[16].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[17].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[18].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[19].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[1].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[20].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[21].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[22].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[23].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[24].png | Bin ...OudsColoredBoxTest_takeDarkThemeSnapshot[25].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[2].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[3].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[4].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[5].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[6].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[7].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[8].png | Bin ..._OudsColoredBoxTest_takeDarkThemeSnapshot[9].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[0].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[10].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[11].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[12].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[13].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[14].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[15].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[16].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[17].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[18].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[19].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[1].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[20].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[21].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[22].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[23].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[24].png | Bin ...udsColoredBoxTest_takeLightThemeSnapshot[25].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[2].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[3].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[4].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[5].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[6].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[7].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[8].png | Bin ...OudsColoredBoxTest_takeLightThemeSnapshot[9].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[2].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[3].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[4].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[5].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[6].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[7].png | Bin ...iderTest$Horizontal_takeDarkThemeSnapshot[8].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[0].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[1].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[2].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[3].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[4].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[5].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[6].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[7].png | Bin ...derTest$Horizontal_takeLightThemeSnapshot[8].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[0].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[1].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[2].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[3].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[4].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[5].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[6].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[7].png | Bin ...ividerTest$Vertical_takeDarkThemeSnapshot[8].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[0].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[1].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[2].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[3].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[4].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[5].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[6].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[7].png | Bin ...viderTest$Vertical_takeLightThemeSnapshot[8].png | Bin ...terChipTest$Default_takeDarkThemeSnapshot[0].png | Bin ...terChipTest$Default_takeDarkThemeSnapshot[1].png | Bin ...terChipTest$Default_takeDarkThemeSnapshot[2].png | Bin ...terChipTest$Default_takeDarkThemeSnapshot[3].png | Bin ...terChipTest$Default_takeDarkThemeSnapshot[4].png | Bin ...terChipTest$Default_takeDarkThemeSnapshot[5].png | Bin ...erChipTest$Default_takeLightThemeSnapshot[0].png | Bin ...erChipTest$Default_takeLightThemeSnapshot[1].png | Bin ...erChipTest$Default_takeLightThemeSnapshot[2].png | Bin ...erChipTest$Default_takeLightThemeSnapshot[3].png | Bin ...erChipTest$Default_takeLightThemeSnapshot[4].png | Bin ...erChipTest$Default_takeLightThemeSnapshot[5].png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[0].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[1].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[0].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[1].png | Bin ...ButtonTest$Extended_takeDarkThemeSnapshot[0].png | Bin ...ButtonTest$Extended_takeDarkThemeSnapshot[1].png | Bin ...uttonTest$Extended_takeLightThemeSnapshot[0].png | Bin ...uttonTest$Extended_takeLightThemeSnapshot[1].png | Bin ...ionButtonTest$Large_takeDarkThemeSnapshot[0].png | Bin ...ionButtonTest$Large_takeDarkThemeSnapshot[1].png | Bin ...onButtonTest$Large_takeLightThemeSnapshot[0].png | Bin ...onButtonTest$Large_takeLightThemeSnapshot[1].png | Bin ...ionButtonTest$Small_takeDarkThemeSnapshot[0].png | Bin ...ionButtonTest$Small_takeDarkThemeSnapshot[1].png | Bin ...onButtonTest$Small_takeLightThemeSnapshot[0].png | Bin ...onButtonTest$Small_takeLightThemeSnapshot[1].png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...neAlertTest$Default_takeDarkThemeSnapshot[0].png | Bin ...neAlertTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eAlertTest$Default_takeLightThemeSnapshot[0].png | Bin ...eAlertTest$Default_takeLightThemeSnapshot[1].png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ....test_OudsInputTagTest_takeDarkThemeSnapshot.png | Bin ...test_OudsInputTagTest_takeLightThemeSnapshot.png | Bin ...dicatorTest$Default_takeDarkThemeSnapshot[0].png | Bin ...dicatorTest$Default_takeDarkThemeSnapshot[1].png | Bin ...dicatorTest$Default_takeDarkThemeSnapshot[2].png | Bin ...dicatorTest$Default_takeDarkThemeSnapshot[3].png | Bin ...icatorTest$Default_takeLightThemeSnapshot[0].png | Bin ...icatorTest$Default_takeLightThemeSnapshot[1].png | Bin ...icatorTest$Default_takeLightThemeSnapshot[2].png | Bin ...icatorTest$Default_takeLightThemeSnapshot[3].png | Bin ...st$WithLongHelperText_takeLightThemeSnapshot.png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[0].png | Bin ...dsLinkTest$Default_takeDarkThemeSnapshot[10].png | Bin ...dsLinkTest$Default_takeDarkThemeSnapshot[11].png | Bin ...dsLinkTest$Default_takeDarkThemeSnapshot[12].png | Bin ...dsLinkTest$Default_takeDarkThemeSnapshot[13].png | Bin ...dsLinkTest$Default_takeDarkThemeSnapshot[14].png | Bin ...dsLinkTest$Default_takeDarkThemeSnapshot[15].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[1].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[2].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[3].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[4].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[5].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[6].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[7].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[8].png | Bin ...udsLinkTest$Default_takeDarkThemeSnapshot[9].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[0].png | Bin ...sLinkTest$Default_takeLightThemeSnapshot[10].png | Bin ...sLinkTest$Default_takeLightThemeSnapshot[11].png | Bin ...sLinkTest$Default_takeLightThemeSnapshot[12].png | Bin ...sLinkTest$Default_takeLightThemeSnapshot[13].png | Bin ...sLinkTest$Default_takeLightThemeSnapshot[14].png | Bin ...sLinkTest$Default_takeLightThemeSnapshot[15].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[1].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[2].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[3].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[4].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[5].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[6].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[7].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[8].png | Bin ...dsLinkTest$Default_takeLightThemeSnapshot[9].png | Bin ...dsLinkTest$OnTwoLines_takeLightThemeSnapshot.png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...dsModalBottomSheetTest_takeDarkThemeSnapshot.png | Bin ...sModalBottomSheetTest_takeLightThemeSnapshot.png | Bin ...BarItemTest$Default_takeDarkThemeSnapshot[0].png | Bin ...BarItemTest$Default_takeDarkThemeSnapshot[1].png | Bin ...arItemTest$Default_takeLightThemeSnapshot[0].png | Bin ...arItemTest$Default_takeLightThemeSnapshot[1].png | Bin ...ItemTest$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...ItemTest$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...temTest$Horizontal_takeLightThemeSnapshot[0].png | Bin ...temTest$Horizontal_takeLightThemeSnapshot[1].png | Bin ...tionBarTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tionBarTest$Default_takeDarkThemeSnapshot[1].png | Bin ...ionBarTest$Default_takeLightThemeSnapshot[0].png | Bin ...ionBarTest$Default_takeLightThemeSnapshot[1].png | Bin ...WithHorizontalItems_takeDarkThemeSnapshot[0].png | Bin ...WithHorizontalItems_takeDarkThemeSnapshot[1].png | Bin ...ithHorizontalItems_takeLightThemeSnapshot[0].png | Bin ...ithHorizontalItems_takeLightThemeSnapshot[1].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[0].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[10].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[11].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[12].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[13].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[14].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[15].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[16].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[17].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[18].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[19].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[1].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[20].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[21].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[22].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[23].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[24].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[25].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[26].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[27].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[28].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[29].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[2].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[30].png | Bin ...ButtonTest$Default_takeDarkThemeSnapshot[31].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nButtonTest$Default_takeDarkThemeSnapshot[9].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[0].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[10].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[11].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[12].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[13].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[14].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[15].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[16].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[17].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[18].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[19].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[1].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[20].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[21].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[22].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[23].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[24].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[25].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[26].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[27].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[28].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[29].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[2].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[30].png | Bin ...uttonTest$Default_takeLightThemeSnapshot[31].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[3].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[4].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[5].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[6].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[7].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[8].png | Bin ...ButtonTest$Default_takeLightThemeSnapshot[9].png | Bin ...ButtonTest$OnTwoLines_takeLightThemeSnapshot.png | Bin ...rdInputTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rdInputTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rdInputTest$Default_takeDarkThemeSnapshot[2].png | Bin ...rdInputTest$Default_takeDarkThemeSnapshot[3].png | Bin ...dInputTest$Default_takeLightThemeSnapshot[0].png | Bin ...dInputTest$Default_takeLightThemeSnapshot[1].png | Bin ...dInputTest$Default_takeLightThemeSnapshot[2].png | Bin ...dInputTest$Default_takeLightThemeSnapshot[3].png | Bin ...utTest$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...utTest$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...tTest$WithRichText_takeLightThemeSnapshot[0].png | Bin ...tTest$WithRichText_takeLightThemeSnapshot[1].png | Bin ...deInputTest$Default_takeDarkThemeSnapshot[0].png | Bin ...deInputTest$Default_takeDarkThemeSnapshot[1].png | Bin ...deInputTest$Default_takeDarkThemeSnapshot[2].png | Bin ...deInputTest$Default_takeDarkThemeSnapshot[3].png | Bin ...eInputTest$Default_takeLightThemeSnapshot[0].png | Bin ...eInputTest$Default_takeLightThemeSnapshot[1].png | Bin ...eInputTest$Default_takeLightThemeSnapshot[2].png | Bin ...eInputTest$Default_takeLightThemeSnapshot[3].png | Bin ...utTest$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...utTest$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...tTest$WithRichText_takeLightThemeSnapshot[0].png | Bin ...tTest$WithRichText_takeLightThemeSnapshot[1].png | Bin ...WithRoundedCorners_takeLightThemeSnapshot[0].png | Bin ...WithRoundedCorners_takeLightThemeSnapshot[1].png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...tonItemTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tonItemTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tonItemTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tonItemTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tonItemTest$Default_takeDarkThemeSnapshot[4].png | Bin ...tonItemTest$Default_takeDarkThemeSnapshot[5].png | Bin ...onItemTest$Default_takeLightThemeSnapshot[0].png | Bin ...onItemTest$Default_takeLightThemeSnapshot[1].png | Bin ...onItemTest$Default_takeLightThemeSnapshot[2].png | Bin ...onItemTest$Default_takeLightThemeSnapshot[3].png | Bin ...onItemTest$Default_takeLightThemeSnapshot[4].png | Bin ...onItemTest$Default_takeLightThemeSnapshot[5].png | Bin ...Enabled_takeDarkThemeHighContrastSnapshot[0].png | Bin ...Enabled_takeDarkThemeHighContrastSnapshot[1].png | Bin ...nabled_takeLightThemeHighContrastSnapshot[0].png | Bin ...nabled_takeLightThemeHighContrastSnapshot[1].png | Bin ...ithEdgeToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...t$WithLongDescription_takeLightThemeSnapshot.png | Bin ...nItemTest$WithRichText_takeDarkThemeSnapshot.png | Bin ...ItemTest$WithRichText_takeLightThemeSnapshot.png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...tonTest_takeDarkThemeHighContrastSnapshot[0].png | Bin ...tonTest_takeDarkThemeHighContrastSnapshot[1].png | Bin ...tonTest_takeDarkThemeHighContrastSnapshot[2].png | Bin ...tonTest_takeDarkThemeHighContrastSnapshot[3].png | Bin ...OudsRadioButtonTest_takeDarkThemeSnapshot[0].png | Bin ...OudsRadioButtonTest_takeDarkThemeSnapshot[1].png | Bin ...OudsRadioButtonTest_takeDarkThemeSnapshot[2].png | Bin ...OudsRadioButtonTest_takeDarkThemeSnapshot[3].png | Bin ...onTest_takeLightThemeHighContrastSnapshot[0].png | Bin ...onTest_takeLightThemeHighContrastSnapshot[1].png | Bin ...onTest_takeLightThemeHighContrastSnapshot[2].png | Bin ...onTest_takeLightThemeHighContrastSnapshot[3].png | Bin ...udsRadioButtonTest_takeLightThemeSnapshot[0].png | Bin ...udsRadioButtonTest_takeLightThemeSnapshot[1].png | Bin ...udsRadioButtonTest_takeLightThemeSnapshot[2].png | Bin ...udsRadioButtonTest_takeLightThemeSnapshot[3].png | Bin ...ionChipTest$Default_takeDarkThemeSnapshot[0].png | Bin ...ionChipTest$Default_takeDarkThemeSnapshot[1].png | Bin ...ionChipTest$Default_takeDarkThemeSnapshot[2].png | Bin ...onChipTest$Default_takeLightThemeSnapshot[0].png | Bin ...onChipTest$Default_takeLightThemeSnapshot[1].png | Bin ...onChipTest$Default_takeLightThemeSnapshot[2].png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...tchItemTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tchItemTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tchItemTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tchItemTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tchItemTest$Default_takeDarkThemeSnapshot[4].png | Bin ...tchItemTest$Default_takeDarkThemeSnapshot[5].png | Bin ...chItemTest$Default_takeLightThemeSnapshot[0].png | Bin ...chItemTest$Default_takeLightThemeSnapshot[1].png | Bin ...chItemTest$Default_takeLightThemeSnapshot[2].png | Bin ...chItemTest$Default_takeLightThemeSnapshot[3].png | Bin ...chItemTest$Default_takeLightThemeSnapshot[4].png | Bin ...chItemTest$Default_takeLightThemeSnapshot[5].png | Bin ...ithEdgeToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...t$WithLongDescription_takeLightThemeSnapshot.png | Bin ...hItemTest$WithRichText_takeDarkThemeSnapshot.png | Bin ...ItemTest$WithRichText_takeLightThemeSnapshot.png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...test_OudsSwitchTest_takeDarkThemeSnapshot[0].png | Bin ...test_OudsSwitchTest_takeDarkThemeSnapshot[1].png | Bin ...est_OudsSwitchTest_takeLightThemeSnapshot[0].png | Bin ...est_OudsSwitchTest_takeLightThemeSnapshot[1].png | Bin ...OudsTagTest$Default_takeDarkThemeSnapshot[0].png | Bin ...OudsTagTest$Default_takeDarkThemeSnapshot[1].png | Bin ...OudsTagTest$Default_takeDarkThemeSnapshot[2].png | Bin ...OudsTagTest$Default_takeDarkThemeSnapshot[3].png | Bin ...OudsTagTest$Default_takeDarkThemeSnapshot[4].png | Bin ...OudsTagTest$Default_takeDarkThemeSnapshot[5].png | Bin ...udsTagTest$Default_takeLightThemeSnapshot[0].png | Bin ...udsTagTest$Default_takeLightThemeSnapshot[1].png | Bin ...udsTagTest$Default_takeLightThemeSnapshot[2].png | Bin ...udsTagTest$Default_takeLightThemeSnapshot[3].png | Bin ...udsTagTest$Default_takeLightThemeSnapshot[4].png | Bin ...udsTagTest$Default_takeLightThemeSnapshot[5].png | Bin ...Test$WithUntintedIcon_takeLightThemeSnapshot.png | Bin ...reaTest$AutoResize_takeLightThemeSnapshot[0].png | Bin ...reaTest$AutoResize_takeLightThemeSnapshot[1].png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...extAreaTest$Default_takeDarkThemeSnapshot[0].png | Bin ...extAreaTest$Default_takeDarkThemeSnapshot[1].png | Bin ...extAreaTest$Default_takeDarkThemeSnapshot[2].png | Bin ...extAreaTest$Default_takeDarkThemeSnapshot[3].png | Bin ...extAreaTest$Default_takeDarkThemeSnapshot[4].png | Bin ...xtAreaTest$Default_takeLightThemeSnapshot[0].png | Bin ...xtAreaTest$Default_takeLightThemeSnapshot[1].png | Bin ...xtAreaTest$Default_takeLightThemeSnapshot[2].png | Bin ...xtAreaTest$Default_takeLightThemeSnapshot[3].png | Bin ...xtAreaTest$Default_takeLightThemeSnapshot[4].png | Bin ...eaTest$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...eaTest$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...aTest$WithRichText_takeLightThemeSnapshot[0].png | Bin ...aTest$WithRichText_takeLightThemeSnapshot[1].png | Bin ...st$WithRoundedCorners_takeLightThemeSnapshot.png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...onstrainedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...xtInputTest$Default_takeDarkThemeSnapshot[0].png | Bin ...xtInputTest$Default_takeDarkThemeSnapshot[1].png | Bin ...xtInputTest$Default_takeDarkThemeSnapshot[2].png | Bin ...xtInputTest$Default_takeDarkThemeSnapshot[3].png | Bin ...xtInputTest$Default_takeDarkThemeSnapshot[4].png | Bin ...tInputTest$Default_takeLightThemeSnapshot[0].png | Bin ...tInputTest$Default_takeLightThemeSnapshot[1].png | Bin ...tInputTest$Default_takeLightThemeSnapshot[2].png | Bin ...tInputTest$Default_takeLightThemeSnapshot[3].png | Bin ...tInputTest$Default_takeLightThemeSnapshot[4].png | Bin ...utTest$WithLongLabels_takeLightThemeSnapshot.png | Bin ...utTest$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...utTest$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...tTest$WithRichText_takeLightThemeSnapshot[0].png | Bin ...tTest$WithRichText_takeLightThemeSnapshot[1].png | Bin ...st$WithRoundedCorners_takeLightThemeSnapshot.png | Bin ...thUntintedLeadingIcon_takeLightThemeSnapshot.png | Bin ...rTest$CenterAligned_takeDarkThemeSnapshot[0].png | Bin ...rTest$CenterAligned_takeDarkThemeSnapshot[1].png | Bin ...rTest$CenterAligned_takeDarkThemeSnapshot[2].png | Bin ...Test$CenterAligned_takeLightThemeSnapshot[0].png | Bin ...Test$CenterAligned_takeLightThemeSnapshot[1].png | Bin ...Test$CenterAligned_takeLightThemeSnapshot[2].png | Bin ...pAppBarTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pAppBarTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pAppBarTest$Default_takeDarkThemeSnapshot[2].png | Bin ...AppBarTest$Default_takeLightThemeSnapshot[0].png | Bin ...AppBarTest$Default_takeLightThemeSnapshot[1].png | Bin ...AppBarTest$Default_takeLightThemeSnapshot[2].png | Bin ...TopAppBarTest$Large_takeDarkThemeSnapshot[0].png | Bin ...TopAppBarTest$Large_takeDarkThemeSnapshot[1].png | Bin ...TopAppBarTest$Large_takeDarkThemeSnapshot[2].png | Bin ...opAppBarTest$Large_takeLightThemeSnapshot[0].png | Bin ...opAppBarTest$Large_takeLightThemeSnapshot[1].png | Bin ...opAppBarTest$Large_takeLightThemeSnapshot[2].png | Bin ...opAppBarTest$Medium_takeDarkThemeSnapshot[0].png | Bin ...opAppBarTest$Medium_takeDarkThemeSnapshot[1].png | Bin ...opAppBarTest$Medium_takeDarkThemeSnapshot[2].png | Bin ...pAppBarTest$Medium_takeLightThemeSnapshot[0].png | Bin ...pAppBarTest$Medium_takeLightThemeSnapshot[1].png | Bin ...pAppBarTest$Medium_takeLightThemeSnapshot[2].png | Bin 581 files changed, 9 insertions(+), 12 deletions(-) rename theme-wireframe/src/{commonTest => androidUnitTest}/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{commonTest => androidUnitTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png (100%) diff --git a/core/src/test/java/com/orange/ouds/core/component/OudsAvatarTest.kt b/core/src/test/java/com/orange/ouds/core/component/OudsAvatarTest.kt index df388aa102..02c0b93857 100644 --- a/core/src/test/java/com/orange/ouds/core/component/OudsAvatarTest.kt +++ b/core/src/test/java/com/orange/ouds/core/component/OudsAvatarTest.kt @@ -14,13 +14,12 @@ package com.orange.ouds.core.component import androidx.compose.runtime.Composable import com.orange.ouds.core.test.OudsSnapshotTest -import com.orange.ouds.theme.orange.OrangeTheme -import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily +import com.orange.ouds.core.utilities.getPreviewTheme import org.junit.runner.RunWith import org.junit.runners.Parameterized @RunWith(Parameterized::class) -internal class OudsAvatarTest(val isMonogram: Boolean) : OudsSnapshotTest(theme = OrangeTheme(getPreviewOrangeFontFamily())) { +internal class OudsAvatarTest(val isMonogram: Boolean) : OudsSnapshotTest(theme = getPreviewTheme()) { companion object { @JvmStatic diff --git a/core/src/test/java/com/orange/ouds/core/component/OudsBadgedIconTest.kt b/core/src/test/java/com/orange/ouds/core/component/OudsBadgedIconTest.kt index a20b4b46e1..db3942a32d 100644 --- a/core/src/test/java/com/orange/ouds/core/component/OudsBadgedIconTest.kt +++ b/core/src/test/java/com/orange/ouds/core/component/OudsBadgedIconTest.kt @@ -14,13 +14,12 @@ package com.orange.ouds.core.component import androidx.compose.runtime.Composable import com.orange.ouds.core.test.OudsSnapshotTest -import com.orange.ouds.theme.orange.OrangeTheme -import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily +import com.orange.ouds.core.utilities.getPreviewTheme import org.junit.runner.RunWith import org.junit.runners.Parameterized @RunWith(Parameterized::class) -internal class OudsBadgedIconTest(val parameter: OudsBadgedIconPreviewParameter) : OudsSnapshotTest(OrangeTheme(getPreviewOrangeFontFamily())) { +internal class OudsBadgedIconTest(val parameter: OudsBadgedIconPreviewParameter) : OudsSnapshotTest(getPreviewTheme()) { companion object { @JvmStatic diff --git a/core/src/test/java/com/orange/ouds/core/component/OudsDigitInputTest.kt b/core/src/test/java/com/orange/ouds/core/component/OudsDigitInputTest.kt index f350d24410..802b9ff741 100644 --- a/core/src/test/java/com/orange/ouds/core/component/OudsDigitInputTest.kt +++ b/core/src/test/java/com/orange/ouds/core/component/OudsDigitInputTest.kt @@ -14,8 +14,7 @@ package com.orange.ouds.core.component import androidx.compose.runtime.Composable import com.orange.ouds.core.test.OudsSnapshotTest -import com.orange.ouds.theme.orange.OrangeTheme -import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily +import com.orange.ouds.core.utilities.getPreviewTheme import org.junit.experimental.runners.Enclosed import org.junit.runner.RunWith import org.junit.runners.Parameterized @@ -24,7 +23,7 @@ import org.junit.runners.Parameterized internal class OudsDigitInputTest { @RunWith(Parameterized::class) - class Default(val parameter: OudsDigitInputPreviewParameter) : OudsSnapshotTest(OrangeTheme(getPreviewOrangeFontFamily())) { + class Default(val parameter: OudsDigitInputPreviewParameter) : OudsSnapshotTest(getPreviewTheme()) { companion object { @JvmStatic @@ -43,7 +42,7 @@ internal class OudsDigitInputTest { } @RunWith(Parameterized::class) - class WithRoundedCorners(val parameter: Boolean) : OudsSnapshotTest(OrangeTheme(getPreviewOrangeFontFamily())) { + class WithRoundedCorners(val parameter: Boolean) : OudsSnapshotTest(getPreviewTheme()) { companion object { @JvmStatic diff --git a/theme-wireframe/build.gradle.kts b/theme-wireframe/build.gradle.kts index adfcd114cf..71d32da559 100644 --- a/theme-wireframe/build.gradle.kts +++ b/theme-wireframe/build.gradle.kts @@ -97,13 +97,13 @@ kotlin { implementation(project(":foundation")) implementation(project(":global-raw-tokens")) implementation(project(":theme-contract")) - //testImplementation(project(":core-test")) } } - commonTest { + androidUnitTest { dependencies { implementation(libs.kotlin.test) + implementation(project(":core-test")) } } diff --git a/theme-wireframe/src/commonTest/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt b/theme-wireframe/src/androidUnitTest/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt similarity index 100% rename from theme-wireframe/src/commonTest/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt rename to theme-wireframe/src/androidUnitTest/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/commonTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png From 3be61de30f1b95c7ccad900dda368f565f2c010c Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Tue, 30 Jun 2026 12:03:58 +0200 Subject: [PATCH 07/18] Fix dokka --- .../com/orange/ouds/core/component/OudsColoredBox.kt | 4 ++-- .../java/com/orange/ouds/core/component/OudsDivider.kt | 4 ++-- .../ouds/core/component/OudsFloatingActionButton.kt | 5 +++-- foundation/build.gradle.kts | 2 +- .../com/orange/ouds/foundation/utilities/Preview.kt | 7 ------- global-raw-tokens/build.gradle.kts | 2 +- gradle/libs.versions.toml | 1 + theme-contract/build.gradle.kts | 2 +- .../kotlin/com/orange/ouds/theme/tokens/OudsKeyToken.kt | 9 +-------- theme-wireframe/build.gradle.kts | 2 +- 10 files changed, 13 insertions(+), 25 deletions(-) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsColoredBox.kt b/core/src/main/java/com/orange/ouds/core/component/OudsColoredBox.kt index 9f9aef2e1d..15bed1d695 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsColoredBox.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsColoredBox.kt @@ -37,7 +37,7 @@ import com.orange.ouds.core.utilities.CheckedContent import com.orange.ouds.core.utilities.OudsPreview import com.orange.ouds.core.utilities.OudsPreviewLightDark import com.orange.ouds.core.utilities.getPreviewTheme -import com.orange.ouds.foundation.utilities.EnumPreviewParameterProvider +import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.tokens.OudsColorKeyToken @@ -270,4 +270,4 @@ internal fun PreviewOudsColoredBox( } } -internal class OudsColoredBoxPreviewParameterProvider : EnumPreviewParameterProvider(OudsColoredBoxColor::class.java) +internal class OudsColoredBoxPreviewParameterProvider : BasicPreviewParameterProvider(*OudsColoredBoxColor.entries.toTypedArray()) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsDivider.kt b/core/src/main/java/com/orange/ouds/core/component/OudsDivider.kt index 1ef9f11e17..9701747520 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsDivider.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsDivider.kt @@ -28,7 +28,7 @@ import com.orange.ouds.core.theme.value import com.orange.ouds.core.utilities.OudsPreview import com.orange.ouds.core.utilities.OudsPreviewLightDark import com.orange.ouds.core.utilities.getPreviewTheme -import com.orange.ouds.foundation.utilities.EnumPreviewParameterProvider +import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract /** @@ -170,4 +170,4 @@ internal fun PreviewOudsDivider( } } -internal class OudsDividerPreviewParameterProvider : EnumPreviewParameterProvider(OudsDividerColor::class.java) +internal class OudsDividerPreviewParameterProvider : BasicPreviewParameterProvider(*OudsDividerColor.entries.toTypedArray()) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt b/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt index ba37d1450d..cef856c75d 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt +++ b/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt @@ -63,7 +63,7 @@ import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.core.utilities.rememberRainbowHeartPainter import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.extensions.toSentenceCase -import com.orange.ouds.foundation.utilities.EnumPreviewParameterProvider +import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract /** @@ -667,7 +667,8 @@ internal fun PreviewOudsExtendedFloatingActionButton( } } -internal class OudsFloatingActionButtonPreviewParameterProvider : EnumPreviewParameterProvider(OudsFloatingActionButtonAppearance::class.java) +internal class OudsFloatingActionButtonPreviewParameterProvider : + BasicPreviewParameterProvider(*OudsFloatingActionButtonAppearance.entries.toTypedArray()) private enum class OudsExtendedFloatingActionButtonPreviewGridRow { diff --git a/foundation/build.gradle.kts b/foundation/build.gradle.kts index 4931a289d3..604291b309 100644 --- a/foundation/build.gradle.kts +++ b/foundation/build.gradle.kts @@ -82,6 +82,7 @@ kotlin { implementation(libs.kotlin.stdlib) // Add KMP dependencies here implementation(libs.compose.ui) + api(libs.compose.ui.tooling.preview) } } @@ -96,7 +97,6 @@ kotlin { // Add Android-specific dependencies here. Note that this source set depends on // commonMain by default and will correctly pull the Android artifacts of any KMP // dependencies declared in commonMain. - api(libs.androidx.compose.ui.tooling.preview) implementation(libs.androidx.core) } } diff --git a/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Preview.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Preview.kt index be3e492aee..b2246cf32d 100644 --- a/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Preview.kt +++ b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Preview.kt @@ -24,10 +24,3 @@ open class BasicPreviewParameterProvider(vararg values: T) : PreviewParameter override val values = values.asSequence() } - -/** - * A preview parameter provider for enum values. - * - * @param clazz The enum class. - */ -open class EnumPreviewParameterProvider(clazz: Class>) : BasicPreviewParameterProvider>(*clazz.enumConstants) diff --git a/global-raw-tokens/build.gradle.kts b/global-raw-tokens/build.gradle.kts index 0688148aea..adb62b5763 100644 --- a/global-raw-tokens/build.gradle.kts +++ b/global-raw-tokens/build.gradle.kts @@ -11,7 +11,7 @@ */ plugins { - //id("dokka") + id("dokka") alias(libs.plugins.compose.compiler) alias(libs.plugins.compose.multiplatform) id(libs.plugins.kotlin.multiplatform.get().pluginId) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 721e9d8034..78932e94f4 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -63,6 +63,7 @@ androidx-navigation-compose = { group = "androidx.navigation", name = "navigatio compose-components-resources = { module = "org.jetbrains.compose.components:components-resources", version.ref = "composeMultiplatform" } compose-material3 = { module = "org.jetbrains.compose.material3:material3", version.ref = "composeMaterial3" } compose-ui = { module = "org.jetbrains.compose.ui:ui", version.ref = "composeMultiplatform" } +compose-ui-tooling-preview = { module = "org.jetbrains.compose.ui:ui-tooling-preview", version.ref = "composeMultiplatform" } dokka-android-documentation-plugin = { module = "org.jetbrains.dokka:android-documentation-plugin", version.ref = "dokka" } dokka-base = { module = "org.jetbrains.dokka:dokka-base", version.ref = "dokka" } dokka-core = { module = "org.jetbrains.dokka:dokka-core", version.ref = "dokka" } diff --git a/theme-contract/build.gradle.kts b/theme-contract/build.gradle.kts index cf3c2be93c..3952e303aa 100644 --- a/theme-contract/build.gradle.kts +++ b/theme-contract/build.gradle.kts @@ -11,7 +11,7 @@ */ plugins { - //id("dokka") + id("dokka") alias(libs.plugins.compose.compiler) alias(libs.plugins.compose.multiplatform) id(libs.plugins.kotlin.multiplatform.get().pluginId) diff --git a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsKeyToken.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsKeyToken.kt index e72fcc73c7..7dcdfb9c0e 100644 --- a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsKeyToken.kt +++ b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/tokens/OudsKeyToken.kt @@ -16,11 +16,4 @@ import com.orange.ouds.foundation.InternalOudsApi /** @suppress */ @InternalOudsApi -sealed interface OudsKeyToken { - - val name: String - get() { - val packageName = this::class.java.`package`?.name.orEmpty() - return this::class.qualifiedName.orEmpty().removePrefix("$packageName.") - } -} +sealed interface OudsKeyToken diff --git a/theme-wireframe/build.gradle.kts b/theme-wireframe/build.gradle.kts index 71d32da559..717ba309d5 100644 --- a/theme-wireframe/build.gradle.kts +++ b/theme-wireframe/build.gradle.kts @@ -11,7 +11,7 @@ */ plugins { -// id("dokka") + id("dokka") // id("library") id("paparazzi") alias(libs.plugins.compose.compiler) From cad89c75632bf5aea95e8a84585fa0c0ad8d4cd5 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Tue, 30 Jun 2026 18:15:28 +0200 Subject: [PATCH 08/18] Migrate core to KMP (WIP) --- .../com/orange/ouds/gradle/Component.kt | 2 +- core/build.gradle.kts | 216 +++++++++++++----- .../core/component/OudsAlertMessageTest.kt | 0 .../ouds/core/component/OudsBadgeTest.kt | 0 .../ouds/core/component/OudsButtonTest.kt | 0 .../core/component/OudsCheckboxItemTest.kt | 0 .../ouds/core/component/OudsCheckboxTest.kt | 0 .../ouds/core/component/OudsDigitInputTest.kt | 0 .../ouds/core/component/OudsFilterChipTest.kt | 0 .../component/OudsFloatingActionButtonTest.kt | 0 .../ouds/core/component/OudsInputTagTest.kt | 0 .../ouds/core/component/OudsLinkTest.kt | 0 .../core/component/OudsNavigationBarTest.kt | 0 .../core/component/OudsPinCodeInputTest.kt | 0 .../core/component/OudsRadioButtonItemTest.kt | 0 .../core/component/OudsRadioButtonTest.kt | 0 .../core/component/OudsSuggestionChipTest.kt | 0 .../ouds/core/component/OudsSwitchItemTest.kt | 0 .../ouds/core/component/OudsSwitchTest.kt | 0 .../ouds/core/component/OudsTextAreaTest.kt | 0 .../ouds/core/component/OudsTextInputTest.kt | 0 .../ouds/core/component/OudsTopAppBarTest.kt | 0 .../extension/ComposeContentTestRuleExt.kt | 0 .../{main => androidMain}/AndroidManifest.xml | 0 .../core/utilities/HighContrast.android.kt} | 19 +- .../ouds/core/component/OudsAvatarTest.kt | 0 .../ouds/core/component/OudsBadgedIconTest.kt | 0 .../ouds/core/component/OudsDigitInputTest.kt | 0 .../common/text/OudsAnnotatedStringTest.kt | 0 ...udsAvatarTest_takeDarkThemeSnapshot[0].png | Bin ...udsAvatarTest_takeDarkThemeSnapshot[1].png | Bin ...dsAvatarTest_takeLightThemeSnapshot[0].png | Bin ...dsAvatarTest_takeLightThemeSnapshot[1].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[0].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[1].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[2].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[3].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[4].png | Bin ...dgedIconTest_takeLightThemeSnapshot[0].png | Bin ...dgedIconTest_takeLightThemeSnapshot[1].png | Bin ...dgedIconTest_takeLightThemeSnapshot[2].png | Bin ...dgedIconTest_takeLightThemeSnapshot[3].png | Bin ...dgedIconTest_takeLightThemeSnapshot[4].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tTest$Default_takeDarkThemeSnapshot[4].png | Bin ...tTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...undedCorners_takeLightThemeSnapshot[0].png | Bin ...undedCorners_takeLightThemeSnapshot[1].png | Bin .../composeResources}/values-ar/strings.xml | 0 .../composeResources}/values-fr/strings.xml | 0 .../composeResources}/values/strings.xml | 0 .../core/component/DefaultAnimationSpec.kt | 0 .../InteractionValuesIndicationNodeFactory.kt | 0 .../orange/ouds/core/component/OudsAlert.kt | 13 +- .../ouds/core/component/OudsAlertMessage.kt | 19 +- .../orange/ouds/core/component/OudsAvatar.kt | 0 .../orange/ouds/core/component/OudsBadge.kt | 7 +- .../ouds/core/component/OudsBadgedIcon.kt | 0 .../ouds/core/component/OudsBasicChip.kt | 0 .../ouds/core/component/OudsBottomSheet.kt | 7 +- .../core/component/OudsBottomSheetScaffold.kt | 0 .../ouds/core/component/OudsBulletList.kt | 35 +-- .../orange/ouds/core/component/OudsButton.kt | 14 +- .../ouds/core/component/OudsCheckbox.kt | 0 .../ouds/core/component/OudsCheckboxItem.kt | 0 .../orange/ouds/core/component/OudsChip.kt | 3 +- .../OudsCircularProgressIndicator.kt | 0 .../ouds/core/component/OudsColoredBox.kt | 0 .../orange/ouds/core/component/OudsControl.kt | 0 .../ouds/core/component/OudsControlItem.kt | 3 +- .../ouds/core/component/OudsDigitInput.kt | 0 .../orange/ouds/core/component/OudsDivider.kt | 0 .../ouds/core/component/OudsFilterChip.kt | 0 .../component/OudsFloatingActionButton.kt | 3 +- .../ouds/core/component/OudsInlineAlert.kt | 0 .../ouds/core/component/OudsInputTag.kt | 11 +- .../component/OudsLinearProgressIndicator.kt | 0 .../orange/ouds/core/component/OudsLink.kt | 4 +- .../core/component/OudsModalBottomSheet.kt | 0 .../ouds/core/component/OudsNavigationBar.kt | 26 +-- .../core/component/OudsNavigationButton.kt | 0 .../ouds/core/component/OudsPasswordInput.kt | 19 +- .../core/component/OudsPasswordInputState.kt | 0 .../ouds/core/component/OudsPinCodeInput.kt | 142 ++++++------ .../core/component/OudsProgressIndicator.kt | 0 .../ouds/core/component/OudsRadioButton.kt | 0 .../core/component/OudsRadioButtonItem.kt | 0 .../ouds/core/component/OudsSuggestionChip.kt | 0 .../orange/ouds/core/component/OudsSwitch.kt | 0 .../ouds/core/component/OudsSwitchItem.kt | 0 .../com/orange/ouds/core/component/OudsTag.kt | 26 ++- .../ouds/core/component/OudsTextArea.kt | 18 +- .../ouds/core/component/OudsTextInput.kt | 22 +- .../ouds/core/component/OudsTopAppBar.kt | 19 +- .../ouds/core/component/common/OudsBorders.kt | 0 .../ouds/core/component/common/OudsError.kt | 0 ...udsAnnotatedAlertMessageBulletListLabel.kt | 0 .../OudsAnnotatedAlertMessageDescription.kt | 0 .../text/OudsAnnotatedBulletListLabel.kt | 0 .../common/text/OudsAnnotatedErrorMessage.kt | 0 .../common/text/OudsAnnotatedHelperText.kt | 0 .../common/text/OudsAnnotatedString.kt | 0 .../common/text/OudsLinkAnnotation.kt | 0 .../component/content/OudsComponentContent.kt | 9 +- .../component/content/OudsComponentIcon.kt | 5 +- .../OudsPolymorphicComponentContent.kt | 0 .../samples/OudsAlertMessageSamples.kt | 0 .../component/samples/OudsBadgeSamples.kt | 0 .../samples/OudsBottomSheetScaffoldSamples.kt | 0 .../samples/OudsBulletListSamples.kt | 0 .../component/samples/OudsButtonSamples.kt | 0 .../samples/OudsCheckboxItemSamples.kt | 0 .../component/samples/OudsCheckboxSamples.kt | 0 .../OudsCircularProgressIndicatorSamples.kt | 0 .../samples/OudsColoredBoxSamples.kt | 0 .../component/samples/OudsDividerSamples.kt | 0 .../samples/OudsFilterChipSamples.kt | 0 .../OudsFloatingActionButtonSamples.kt | 0 .../samples/OudsInlineAlertSamples.kt | 0 .../component/samples/OudsInputTagSamples.kt | 0 .../OudsLinearProgressIndicatorSamples.kt | 0 .../core/component/samples/OudsLinkSamples.kt | 0 .../samples/OudsModalBottomSheetSamples.kt | 0 .../samples/OudsNavigationBarSamples.kt | 0 .../samples/OudsNavigationButtonSamples.kt | 0 .../samples/OudsPasswordInputSamples.kt | 0 .../samples/OudsPinCodeInputSamples.kt | 0 .../samples/OudsRadioButtonItemSamples.kt | 0 .../samples/OudsRadioButtonSamples.kt | 0 .../samples/OudsSuggestionChipSamples.kt | 0 .../samples/OudsSwitchItemSamples.kt | 0 .../component/samples/OudsSwitchSamples.kt | 0 .../core/component/samples/OudsTagSamples.kt | 0 .../component/samples/OudsTextAreaSamples.kt | 0 .../component/samples/OudsTextInputSamples.kt | 0 .../component/samples/OudsTopAppBarSamples.kt | 0 .../ouds/core/extensions/ConfigurationExt.kt | 0 .../core/extensions/InteractionSourceExt.kt | 0 .../ouds/core/extensions/ModifierExt.kt | 0 .../extensions/OudsLightDarkColorTokenExt.kt | 0 .../com/orange/ouds/core/theme/OudsBorders.kt | 0 .../orange/ouds/core/theme/OudsColorMode.kt | 0 .../orange/ouds/core/theme/OudsColorScheme.kt | 0 .../orange/ouds/core/theme/OudsComponents.kt | 0 .../com/orange/ouds/core/theme/OudsEffects.kt | 0 .../orange/ouds/core/theme/OudsElevations.kt | 0 .../com/orange/ouds/core/theme/OudsGrids.kt | 0 .../orange/ouds/core/theme/OudsOpacities.kt | 0 .../com/orange/ouds/core/theme/OudsSizes.kt | 0 .../com/orange/ouds/core/theme/OudsSpaces.kt | 0 .../com/orange/ouds/core/theme/OudsTheme.kt | 68 +++--- .../orange/ouds/core/theme/OudsTypography.kt | 0 .../ouds/core/theme/WindowWidthSizeClass.kt | 10 - .../ouds/core/utilities/CheckedContent.kt | 0 .../ouds/core/utilities/HighContrast.kt | 18 ++ .../core/utilities/LayeredTintedPainter.kt | 0 .../orange/ouds/core/utilities/OudsPreview.kt | 46 ++-- .../utilities/OudsPreviewableComponent.kt | 0 .../ouds/core/utilities/HighContrast.ios.kt | 20 ++ .../foundation/utilities/Logger.android.kt | 24 ++ .../ouds/foundation/utilities/Logger.kt | 20 ++ .../ouds/foundation/utilities/Logger.ios.kt | 26 +++ gradle.properties | 1 + theme-wireframe/build.gradle.kts | 2 +- .../wireframe/WireframeComponentTestSuite.kt | 0 174 files changed, 539 insertions(+), 338 deletions(-) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsAlertMessageTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsBadgeTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsButtonTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsCheckboxItemTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsCheckboxTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsDigitInputTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsFilterChipTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsFloatingActionButtonTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsInputTagTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsLinkTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsNavigationBarTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsPinCodeInputTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsRadioButtonItemTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsRadioButtonTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsSuggestionChipTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsSwitchItemTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsSwitchTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsTextAreaTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsTextInputTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/component/OudsTopAppBarTest.kt (100%) rename core/src/{androidTest/java => androidDeviceTest/kotlin}/com/orange/ouds/core/extension/ComposeContentTestRuleExt.kt (100%) rename core/src/{main => androidMain}/AndroidManifest.xml (100%) rename core/src/{main/java/com/orange/ouds/core/extensions/ContextExt.kt => androidMain/kotlin/com/orange/ouds/core/utilities/HighContrast.android.kt} (75%) rename core/src/{test/java => androidUnitTest/kotlin}/com/orange/ouds/core/component/OudsAvatarTest.kt (100%) rename core/src/{test/java => androidUnitTest/kotlin}/com/orange/ouds/core/component/OudsBadgedIconTest.kt (100%) rename core/src/{test/java => androidUnitTest/kotlin}/com/orange/ouds/core/component/OudsDigitInputTest.kt (100%) rename core/src/{test/java => androidUnitTest/kotlin}/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png (100%) rename core/src/{test => androidUnitTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png (100%) rename core/src/{main/res => commonMain/composeResources}/values-ar/strings.xml (100%) rename core/src/{main/res => commonMain/composeResources}/values-fr/strings.xml (100%) rename core/src/{main/res => commonMain/composeResources}/values/strings.xml (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/DefaultAnimationSpec.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsAlert.kt (94%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsAlertMessage.kt (98%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsAvatar.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsBadge.kt (99%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsBadgedIcon.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsBasicChip.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsBottomSheet.kt (87%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsBottomSheetScaffold.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsBulletList.kt (96%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsButton.kt (99%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsCheckbox.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsCheckboxItem.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsChip.kt (98%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsColoredBox.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsControl.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsControlItem.kt (99%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsDigitInput.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsDivider.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsFilterChip.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsFloatingActionButton.kt (99%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsInlineAlert.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsInputTag.kt (96%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsLink.kt (99%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsModalBottomSheet.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsNavigationBar.kt (96%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsNavigationButton.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsPasswordInput.kt (97%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsPasswordInputState.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsPinCodeInput.kt (85%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsProgressIndicator.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsRadioButton.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsRadioButtonItem.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsSuggestionChip.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsSwitch.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsSwitchItem.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsTag.kt (97%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsTextArea.kt (99%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsTextInput.kt (99%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/OudsTopAppBar.kt (98%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/OudsBorders.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/OudsError.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/common/text/OudsLinkAnnotation.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/content/OudsComponentContent.kt (87%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/content/OudsComponentIcon.kt (97%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/content/OudsPolymorphicComponentContent.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsAlertMessageSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsBadgeSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsBottomSheetScaffoldSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsBulletListSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsButtonSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsCheckboxItemSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsCheckboxSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsCircularProgressIndicatorSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsColoredBoxSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsDividerSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsFilterChipSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsFloatingActionButtonSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsInlineAlertSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsInputTagSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsLinearProgressIndicatorSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsLinkSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsModalBottomSheetSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsNavigationBarSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsNavigationButtonSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsPasswordInputSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsPinCodeInputSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsRadioButtonItemSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsRadioButtonSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsSuggestionChipSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsSwitchItemSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsSwitchSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsTagSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsTextAreaSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsTextInputSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/component/samples/OudsTopAppBarSamples.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/extensions/ConfigurationExt.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/extensions/InteractionSourceExt.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/extensions/ModifierExt.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/extensions/OudsLightDarkColorTokenExt.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsBorders.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsColorMode.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsColorScheme.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsComponents.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsEffects.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsElevations.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsGrids.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsOpacities.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsSizes.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsSpaces.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsTheme.kt (79%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/OudsTypography.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/theme/WindowWidthSizeClass.kt (86%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/utilities/CheckedContent.kt (100%) create mode 100644 core/src/commonMain/kotlin/com/orange/ouds/core/utilities/HighContrast.kt rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/utilities/LayeredTintedPainter.kt (100%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/utilities/OudsPreview.kt (92%) rename core/src/{main/java => commonMain/kotlin}/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt (100%) create mode 100644 core/src/iosMain/kotlin/com/orange/ouds/core/utilities/HighContrast.ios.kt create mode 100644 foundation/src/androidMain/kotlin/com/orange/ouds/foundation/utilities/Logger.android.kt create mode 100644 foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Logger.kt create mode 100644 foundation/src/iosMain/kotlin/com/orange/ouds/foundation/utilities/Logger.ios.kt rename theme-wireframe/src/androidUnitTest/{java => kotlin}/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt (100%) diff --git a/buildSrc/src/main/kotlin/com/orange/ouds/gradle/Component.kt b/buildSrc/src/main/kotlin/com/orange/ouds/gradle/Component.kt index b802f94e35..94be92eace 100644 --- a/buildSrc/src/main/kotlin/com/orange/ouds/gradle/Component.kt +++ b/buildSrc/src/main/kotlin/com/orange/ouds/gradle/Component.kt @@ -112,6 +112,6 @@ enum class Component { TextInput -> listOf("OudsTextInput") } - return filenames.map { "${project.rootProject.projectDir}/core/src/main/java/com/orange/ouds/core/component/$it.kt" } + return filenames.map { "${project.rootProject.projectDir}/core/src/commonMain/kotlin/com/orange/ouds/core/component/$it.kt" } } } \ No newline at end of file diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 3ef7fd2f01..1c6f78b70b 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -12,81 +12,173 @@ plugins { id("dokka") - id("library") +// id("library") id("paparazzi") - id(libs.plugins.kotlin.parcelize.get().pluginId) // https://github.com/gradle/gradle/issues/20084#issuecomment-1060822638 + alias(libs.plugins.compose.compiler) + alias(libs.plugins.compose.multiplatform) + id(libs.plugins.kotlin.multiplatform.get().pluginId) + id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) alias(libs.plugins.paparazzi) } -// Temporary workaround for https://issuetracker.google.com/issues/476936389 -val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) -dokkaKotlinAdapter.apply(project) +kotlin { + jvmToolchain(17) -android { - namespace = "com.orange.ouds.core" + compilerOptions { + freeCompilerArgs.addAll( + "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", + "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", + "-opt-in=com.orange.ouds.foundation.InternalOudsApi" + ) + } - buildFeatures { - buildConfig = true - compose = true + // Target declarations - add or remove as needed below. These define + // which platforms this KMP module supports. + // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets + android { + namespace = "com.orange.ouds.core" + compileSdk = libs.versions.androidCompileSdk.get().toInt() + minSdk = libs.versions.androidMinSdk.get().toInt() + + androidResources.enable = true + + withHostTestBuilder { + } + + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } } - kotlin { - compilerOptions { - freeCompilerArgs.addAll( - "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", - "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", - "-opt-in=com.orange.ouds.foundation.InternalOudsApi" - ) + // For iOS targets, this is also where you should + // configure native binary output. For more information, see: + // https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks + + // A step-by-step guide on how to include this library in an XCode + // project can be found here: + // https://developer.android.com/kotlin/multiplatform/migrate + val xcfName = "oudsCore" + +// iosX64 { +// binaries.framework { +// baseName = xcfName +// } +// } + + iosArm64 { + binaries.framework { + baseName = xcfName } } -} -dependencies { - dokkaPlugin(project(":dokka-plugin")) - implementation(project(":foundation")) - api(project(":theme-contract")) - // compileOnly dependencies on themes are needed for previews -// compileOnly(project(":theme-orange")) -// compileOnly(project(":theme-orange-compact")) -// compileOnly(project(":theme-sosh")) - compileOnly(project(":theme-wireframe")) - - implementation(platform(libs.androidx.compose.bom)) - implementation(libs.androidx.compose.material.icons.core) - implementation(libs.androidx.compose.material3) - implementation(libs.androidx.compose.material3.adaptive) - debugImplementation(libs.androidx.compose.ui.tooling) - implementation(libs.androidx.compose.ui.tooling.preview) - implementation(libs.androidx.constraintlayout.compose) - implementation(libs.material) - - implementation(libs.compose.components.resources) - - testImplementation(project(":core-test")) - //testImplementation(project(":theme-orange")) - //androidTestImplementation(project(":theme-orange")) - androidTestImplementation(libs.androidx.compose.ui.test.junit4) - androidTestImplementation(libs.kotlin.reflect) - androidTestImplementation(libs.mockito.android) - androidTestImplementation(libs.mockito.kotlin) - // Needed for createComposeRule(), but not for createAndroidComposeRule(): - debugImplementation(libs.androidx.compose.ui.test.manifest) + iosSimulatorArm64 { + binaries.framework { + baseName = xcfName + } + } + + // Source set declarations. + // Declaring a target automatically creates a source set with the same name. By default, the + // Kotlin Gradle Plugin creates additional source sets that depend on each other, since it is + // common to share sources between related targets. + // See: https://kotlinlang.org/docs/multiplatform-hierarchy.html + sourceSets { + commonMain { + dependencies { + implementation(libs.kotlin.stdlib) + // Add KMP dependencies here + implementation(libs.compose.ui) + api(libs.compose.ui.tooling.preview) + + + //dokkaPlugin(project(":dokka-plugin")) + implementation(project(":foundation")) + api(project(":theme-contract")) + // compileOnly dependencies on themes are needed for previews + // compileOnly(project(":theme-orange")) + // compileOnly(project(":theme-orange-compact")) + // compileOnly(project(":theme-sosh")) + compileOnly(project(":theme-wireframe")) + + //implementation(platform(libs.androidx.compose.bom)) + //implementation(libs.androidx.compose.material.icons.core) + implementation("org.jetbrains.compose.material:material-icons-core:1.7.3") + implementation(libs.compose.material3) + implementation(libs.compose.ui.tooling.preview) + //implementation(libs.androidx.constraintlayout.compose) + implementation("org.jetbrains.compose.foundation:foundation-layout") + implementation(libs.material) + + implementation(libs.compose.components.resources) + } + } + + commonTest { + dependencies { + implementation(libs.kotlin.test) + } + } + + androidMain { + dependencies { + // Add Android-specific dependencies here. Note that this source set depends on + // commonMain by default and will correctly pull the Android artifacts of any KMP + // dependencies declared in commonMain. + implementation(libs.androidx.core) + } + } + + androidUnitTest { + dependencies { + implementation(project(":core-test")) + //testImplementation(project(":theme-orange")) + } + } + + getByName("androidDeviceTest") { + dependencies { +// implementation(libs.androidx.junit) +// implementation(libs.androidx.runner) +// implementation(libs.core) + + //androidTestImplementation(project(":theme-orange")) + implementation(libs.androidx.compose.ui.test.junit4) + implementation(libs.kotlin.reflect) + implementation(libs.mockito.android) + implementation(libs.mockito.kotlin) + // Needed for createComposeRule(), but not for createAndroidComposeRule(): + //debugImplementation(libs.androidx.compose.ui.test.manifest) + } + } + + iosMain { + dependencies { + // Add iOS-specific dependencies here. This a source set created by Kotlin Gradle + // Plugin (KGP) that each specific iOS target (e.g., iosX64) depends on as + // part of KMP’s default source set hierarchy. Note that this source set depends + // on common by default and will correctly pull the iOS artifacts of any + // KMP dependencies declared in commonMain. + } + } + } } // TODO Remove when https://github.com/google/guava/issues/6567 is fixed. // See also: https://github.com/google/guava/issues/6801. -dependencies.constraints { - testImplementation("com.google.guava:guava") { - attributes { - attribute( - TargetJvmEnvironment.TARGET_JVM_ENVIRONMENT_ATTRIBUTE, - objects.named(TargetJvmEnvironment::class.java, TargetJvmEnvironment.STANDARD_JVM) - ) - } - because( - "Paparazzi's layoutlib and sdk-common depend on Guava's -jre published variant." + - "See https://github.com/cashapp/paparazzi/issues/906." - ) - } -} \ No newline at end of file +//dependencies.constraints { +// testImplementation("com.google.guava:guava") { +// attributes { +// attribute( +// TargetJvmEnvironment.TARGET_JVM_ENVIRONMENT_ATTRIBUTE, +// objects.named(TargetJvmEnvironment::class.java, TargetJvmEnvironment.STANDARD_JVM) +// ) +// } +// because( +// "Paparazzi's layoutlib and sdk-common depend on Guava's -jre published variant." + +// "See https://github.com/cashapp/paparazzi/issues/906." +// ) +// } +//} diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsAlertMessageTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsAlertMessageTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsAlertMessageTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsAlertMessageTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsBadgeTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsBadgeTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsBadgeTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsBadgeTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsButtonTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsButtonTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsButtonTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsButtonTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsCheckboxItemTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsCheckboxItemTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsCheckboxItemTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsCheckboxItemTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsCheckboxTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsCheckboxTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsCheckboxTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsCheckboxTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsDigitInputTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsDigitInputTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsFilterChipTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsFilterChipTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsFilterChipTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsFilterChipTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsFloatingActionButtonTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsFloatingActionButtonTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsFloatingActionButtonTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsFloatingActionButtonTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsInputTagTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsInputTagTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsInputTagTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsInputTagTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsLinkTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsLinkTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsLinkTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsLinkTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsNavigationBarTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsNavigationBarTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsNavigationBarTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsNavigationBarTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsPinCodeInputTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsPinCodeInputTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsPinCodeInputTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsPinCodeInputTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsRadioButtonItemTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsRadioButtonItemTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsRadioButtonItemTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsRadioButtonItemTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsRadioButtonTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsRadioButtonTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsRadioButtonTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsRadioButtonTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsSuggestionChipTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsSuggestionChipTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsSuggestionChipTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsSuggestionChipTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsSwitchItemTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsSwitchItemTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsSwitchItemTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsSwitchItemTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsSwitchTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsSwitchTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsSwitchTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsSwitchTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsTextAreaTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsTextAreaTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsTextAreaTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsTextAreaTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsTextInputTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsTextInputTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsTextInputTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsTextInputTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/component/OudsTopAppBarTest.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsTopAppBarTest.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/component/OudsTopAppBarTest.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/component/OudsTopAppBarTest.kt diff --git a/core/src/androidTest/java/com/orange/ouds/core/extension/ComposeContentTestRuleExt.kt b/core/src/androidDeviceTest/kotlin/com/orange/ouds/core/extension/ComposeContentTestRuleExt.kt similarity index 100% rename from core/src/androidTest/java/com/orange/ouds/core/extension/ComposeContentTestRuleExt.kt rename to core/src/androidDeviceTest/kotlin/com/orange/ouds/core/extension/ComposeContentTestRuleExt.kt diff --git a/core/src/main/AndroidManifest.xml b/core/src/androidMain/AndroidManifest.xml similarity index 100% rename from core/src/main/AndroidManifest.xml rename to core/src/androidMain/AndroidManifest.xml diff --git a/core/src/main/java/com/orange/ouds/core/extensions/ContextExt.kt b/core/src/androidMain/kotlin/com/orange/ouds/core/utilities/HighContrast.android.kt similarity index 75% rename from core/src/main/java/com/orange/ouds/core/extensions/ContextExt.kt rename to core/src/androidMain/kotlin/com/orange/ouds/core/utilities/HighContrast.android.kt index 5f8e84a89a..84f30dea75 100644 --- a/core/src/main/java/com/orange/ouds/core/extensions/ContextExt.kt +++ b/core/src/androidMain/kotlin/com/orange/ouds/core/utilities/HighContrast.android.kt @@ -7,23 +7,24 @@ * the text of which is available at https://opensource.org/license/MIT/ * or see the "LICENSE" file for more details. * - * Software description: Android library of reusable graphical components + * Software description: Android library of reusable graphical components */ -package com.orange.ouds.core.extensions +package com.orange.ouds.core.utilities import android.annotation.SuppressLint import android.content.Context import android.view.accessibility.AccessibilityManager +import androidx.compose.runtime.Composable +import androidx.compose.ui.platform.LocalContext import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.extensions.tryOrNull -/** - * @return true if the high contrast mode is enabled on the device, false otherwise - */ -@SuppressLint("DiscouragedPrivateApi", "PrivateApi") -internal fun Context.isHighContrastModeEnabled(): Boolean { - val accessibilityManager = getSystemService(Context.ACCESSIBILITY_SERVICE) as AccessibilityManager +@SuppressLint("PrivateApi") +@Composable +actual fun isHighContrastModeEnabled(): Boolean { + val context = LocalContext.current + val accessibilityManager = context.getSystemService(Context.ACCESSIBILITY_SERVICE) as AccessibilityManager return with(accessibilityManager) { // Workaround to access mIsHighTextContrastEnabled field because it is hidden with a @UnsupportedAppUsage annotation @@ -35,4 +36,4 @@ internal fun Context.isHighContrastModeEnabled(): Boolean { ?.getBoolean(this) .orElse { false } } -} \ No newline at end of file +} diff --git a/core/src/test/java/com/orange/ouds/core/component/OudsAvatarTest.kt b/core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsAvatarTest.kt similarity index 100% rename from core/src/test/java/com/orange/ouds/core/component/OudsAvatarTest.kt rename to core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsAvatarTest.kt diff --git a/core/src/test/java/com/orange/ouds/core/component/OudsBadgedIconTest.kt b/core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsBadgedIconTest.kt similarity index 100% rename from core/src/test/java/com/orange/ouds/core/component/OudsBadgedIconTest.kt rename to core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsBadgedIconTest.kt diff --git a/core/src/test/java/com/orange/ouds/core/component/OudsDigitInputTest.kt b/core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt similarity index 100% rename from core/src/test/java/com/orange/ouds/core/component/OudsDigitInputTest.kt rename to core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt diff --git a/core/src/test/java/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt b/core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt similarity index 100% rename from core/src/test/java/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt rename to core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png diff --git a/core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png b/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png similarity index 100% rename from core/src/test/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png rename to core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png diff --git a/core/src/main/res/values-ar/strings.xml b/core/src/commonMain/composeResources/values-ar/strings.xml similarity index 100% rename from core/src/main/res/values-ar/strings.xml rename to core/src/commonMain/composeResources/values-ar/strings.xml diff --git a/core/src/main/res/values-fr/strings.xml b/core/src/commonMain/composeResources/values-fr/strings.xml similarity index 100% rename from core/src/main/res/values-fr/strings.xml rename to core/src/commonMain/composeResources/values-fr/strings.xml diff --git a/core/src/main/res/values/strings.xml b/core/src/commonMain/composeResources/values/strings.xml similarity index 100% rename from core/src/main/res/values/strings.xml rename to core/src/commonMain/composeResources/values/strings.xml diff --git a/core/src/main/java/com/orange/ouds/core/component/DefaultAnimationSpec.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/DefaultAnimationSpec.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/DefaultAnimationSpec.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/DefaultAnimationSpec.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsAlert.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAlert.kt similarity index 94% rename from core/src/main/java/com/orange/ouds/core/component/OudsAlert.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAlert.kt index 27f22f4d47..17b88f4cf7 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsAlert.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAlert.kt @@ -17,8 +17,6 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.res.stringResource -import com.orange.ouds.core.R import com.orange.ouds.core.component.content.OudsComponentContent import com.orange.ouds.core.component.content.OudsComponentIcon import com.orange.ouds.core.theme.OudsTheme @@ -26,6 +24,11 @@ import com.orange.ouds.core.theme.value import com.orange.ouds.core.utilities.LayeredTintedPainter import com.orange.ouds.foundation.extensions.orElse import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_common_error_a11y +import ouds_android.core.generated.resources.core_common_warning_a11y +import kotlin.jvm.JvmOverloads /** * Base class for defining the semantic status of an alert component ([OudsInlineAlert] or [OudsAlertMessage]). @@ -44,7 +47,7 @@ internal sealed class OudsAlertStatus( class Negative( defaultIconPainterProvider: (@Composable (OudsAlertStatus) -> Painter?) = { getDefaultIconPainter(it) }, - defaultIconContentDescriptionProvider: (@Composable (OudsAlertStatus) -> String) = { stringResource(R.string.core_common_error_a11y) } + defaultIconContentDescriptionProvider: (@Composable (OudsAlertStatus) -> String) = { stringResource(Res.string.core_common_error_a11y) } ) : OudsAlertStatus(defaultIconPainterProvider, defaultIconContentDescriptionProvider) class Positive(defaultIconPainterProvider: (@Composable (OudsAlertStatus) -> Painter?) = { getDefaultIconPainter(it) }) : @@ -55,7 +58,7 @@ internal sealed class OudsAlertStatus( class Warning( defaultIconPainterProvider: (@Composable (OudsAlertStatus) -> Painter?) = { getDefaultIconPainter(it) }, - defaultIconContentDescriptionProvider: (@Composable (OudsAlertStatus) -> String) = { stringResource(R.string.core_common_warning_a11y) } + defaultIconContentDescriptionProvider: (@Composable (OudsAlertStatus) -> String) = { stringResource(Res.string.core_common_warning_a11y) } ) : OudsAlertStatus(defaultIconPainterProvider, defaultIconContentDescriptionProvider) @@ -122,7 +125,7 @@ open class OudsAlertIcon private constructor( contentDescriptionProvider: @Composable (OudsAlertIcon) -> String, override val tinted: Boolean ) : OudsComponentIcon( - ExtraParameters::class.java, + ExtraParameters::class, graphicsObjectProvider, contentDescriptionProvider ) { diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsAlertMessage.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAlertMessage.kt similarity index 98% rename from core/src/main/java/com/orange/ouds/core/component/OudsAlertMessage.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAlertMessage.kt index 0970ef5a86..d09d644fff 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsAlertMessage.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAlertMessage.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.background import androidx.compose.foundation.border import androidx.compose.foundation.isSystemInDarkTheme @@ -41,13 +39,13 @@ import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.draw.clip import androidx.compose.ui.graphics.Color -import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.stringResource +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.semantics +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.component.common.text.OudsAnnotatedAlertMessageBulletListLabel import com.orange.ouds.core.component.common.text.OudsAnnotatedAlertMessageDescription import com.orange.ouds.core.component.common.text.OudsAnnotatedString @@ -74,6 +72,9 @@ import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_alertMessage_close_a11y /** * Alert message is a UI element that displays system feedback, status changes or required action; throughout detailed, prominent, persistent and actionable @@ -214,7 +215,7 @@ private fun OudsAlertMessage( annotatedBulletList: List? = null ) { with(OudsTheme.componentsTokens.alert) { - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale val borderRadius = if (LocalThemeSettings.current.roundedCornerAlertMessages == true) borderRadiusRounded else borderRadiusDefault val shape = RoundedCornerShape(borderRadius.value) val hasCloseButton = onClose != null @@ -286,7 +287,7 @@ private fun OudsAlertMessage( OudsButton( icon = OudsButtonIcon( painter = painterResource(resource = LocalDrawableResources.current.component.button.expurge), - contentDescription = stringResource(R.string.core_alertMessage_close_a11y) + contentDescription = stringResource(resource = Res.string.core_alertMessage_close_a11y) ), onClick = onClose, appearance = OudsButtonAppearance.Minimal @@ -324,7 +325,7 @@ data class OudsAlertMessageActionLink( val label: String, val onClick: () -> Unit, val position: OudsAlertMessageActionLinkPosition = OudsAlertMessageDefaults.ActionLinkPosition -) : OudsComponentContent(Nothing::class.java) { +) : OudsComponentContent(Nothing::class) { @Composable override fun Content(modifier: Modifier) { OudsLink( @@ -462,7 +463,7 @@ sealed class OudsAlertMessageStatus(internal val value: OudsAlertStatus, val ico @Composable private fun OudsAlertMessageBulletListItem(label: CharSequence, color: Color) { - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale Row( modifier = Modifier .fillMaxWidth() diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsAvatar.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAvatar.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsAvatar.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAvatar.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBadge.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadge.kt similarity index 99% rename from core/src/main/java/com/orange/ouds/core/component/OudsBadge.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadge.kt index 9cc3636763..f72e2da064 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsBadge.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadge.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.background import androidx.compose.foundation.isSystemInDarkTheme import androidx.compose.foundation.layout.Box @@ -42,6 +40,8 @@ import androidx.compose.ui.semantics.semantics import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.style.LineHeightStyle import androidx.compose.ui.text.style.TextOverflow +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Dp @@ -62,6 +62,7 @@ import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import org.jetbrains.compose.resources.painterResource +import kotlin.jvm.JvmOverloads /** * Badge is a UI element that emphasizes system notifications, status, or the categorization of an information, @@ -402,7 +403,7 @@ const val OudsBadgeMaxCount = 99 open class OudsBadgeIcon internal constructor( graphicsObjectProvider: @Composable (OudsBadgeIcon) -> Any, override val tinted: Boolean -) : OudsComponentIcon(ExtraParameters::class.java, graphicsObjectProvider, { "" }) { +) : OudsComponentIcon(ExtraParameters::class, graphicsObjectProvider, { "" }) { @ConsistentCopyVisibility data class ExtraParameters internal constructor( diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBadgedIcon.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadgedIcon.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsBadgedIcon.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadgedIcon.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBasicChip.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBasicChip.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsBasicChip.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBasicChip.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBottomSheet.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBottomSheet.kt similarity index 87% rename from core/src/main/java/com/orange/ouds/core/component/OudsBottomSheet.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBottomSheet.kt index faebaf75bb..bb31fcb30a 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsBottomSheet.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBottomSheet.kt @@ -21,12 +21,13 @@ import androidx.compose.material3.MaterialTheme import androidx.compose.material3.Surface import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier -import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.theme.OudsTheme +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_bottomSheet_dragHandle_a11y internal object OudsBottomSheetDefaults { /** @@ -35,7 +36,7 @@ internal object OudsBottomSheetDefaults { @OptIn(ExperimentalMaterial3Api::class) @Composable fun DragHandle() { - val dragHandleContentDescription = stringResource(id = R.string.core_bottomSheet_dragHandle_a11y) + val dragHandleContentDescription = stringResource(resource = Res.string.core_bottomSheet_dragHandle_a11y) val dragHandleTopPadding = OudsTheme.spaces.fixed.medium val dragHandleHeight = 4.dp // Compute the bottom padding based on the peek height in order to keep the drag handle total height equal to the default `SheetPeekHeight` diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBottomSheetScaffold.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBottomSheetScaffold.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsBottomSheetScaffold.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBottomSheetScaffold.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsBulletList.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBulletList.kt similarity index 96% rename from core/src/main/java/com/orange/ouds/core/component/OudsBulletList.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBulletList.kt index 025f567d8b..8421d087d9 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsBulletList.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBulletList.kt @@ -12,9 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL -import android.util.Log import androidx.compose.foundation.isSystemInDarkTheme import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Box @@ -42,21 +39,20 @@ import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector import androidx.compose.ui.graphics.vector.rememberVectorPainter -import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.platform.LocalLayoutDirection -import androidx.compose.ui.platform.LocalResources -import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.clearAndSetSemantics import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.LayoutDirection import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.component.OudsBulletListUnorderedAsset.Bullet.extraParameters import com.orange.ouds.core.component.common.text.OudsAnnotatedBulletListLabel import com.orange.ouds.core.component.common.text.OudsLinkAnnotation @@ -75,8 +71,14 @@ import com.orange.ouds.core.utilities.OudsPreviewLightDark import com.orange.ouds.core.utilities.OudsPreviewableComponent import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider +import com.orange.ouds.foundation.utilities.Logger import com.orange.ouds.theme.OudsThemeContract import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.pluralStringResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_bulletList_level_a11y +import ouds_android.core.generated.resources.core_bulletList_subitems_a11y @DslMarker annotation class OudsBulletListDslMarker @@ -233,14 +235,13 @@ private fun OudsBulletListItem( // Build a11y vocalization according to the current type // For unordered and bare lists, TalkBack reads: "label, level , subitems" // For ordered lists, TalkBack reads the ordered hierarchy (ex: "1. a. label, subitems") - val resources = LocalResources.current val itemContentDescription = buildString { val vocalSeparator = ", " when (currentType) { is OudsBulletListType.Unordered, OudsBulletListType.Bare -> { append(item.label) append(vocalSeparator) - append(stringResource(R.string.core_bulletList_level_a11y, level + 1)) + append(stringResource(Res.string.core_bulletList_level_a11y, level + 1)) } OudsBulletListType.Ordered -> { val layoutDirection = LocalLayoutDirection.current @@ -261,8 +262,8 @@ private fun OudsBulletListItem( if (item.subListItems.isNotEmpty()) { append(vocalSeparator) append( - resources.getQuantityString( - R.plurals.core_bulletList_subitems_a11y, + pluralStringResource( + Res.plurals.core_bulletList_subitems_a11y, item.subListItems.size, item.subListItems.size ) @@ -323,7 +324,7 @@ private fun OudsBulletListItem( } } else { LaunchedEffect(Unit) { - Log.w("OudsBulletList", "Maximum list depth ($MaxLevelCount levels) reached. Children of '${item.label}' will not be displayed.") + Logger.w("OudsBulletList", "Maximum list depth ($MaxLevelCount levels) reached. Children of '${item.label}' will not be displayed.") } } } @@ -350,7 +351,7 @@ private fun Bullet( index: Int, parentNodes: List ) { - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale val minWidth = when (textStyle.fontSize) { OudsBulletListFontSize.BodyMedium -> OudsTheme.sizes.icon.withBody.medium.sizeMedium OudsBulletListFontSize.BodyLarge -> OudsTheme.sizes.icon.withBody.large.sizeMedium @@ -450,7 +451,7 @@ sealed interface OudsBulletListUnorderedAsset : OudsPolymorphicComponentContent * This allows for complete visual customization of the bullet, for instance by using a Solaris icon. */ class Icon private constructor(graphicsObject: Any) : OudsBulletListUnorderedAsset, - OudsComponentIcon(OudsBulletListUnorderedAsset.ExtraParameters::class.java, graphicsObject, "") { + OudsComponentIcon(OudsBulletListUnorderedAsset.ExtraParameters::class, graphicsObject, "") { /** * Creates an instance of [OudsBulletListUnorderedAsset.Icon]. @@ -488,7 +489,7 @@ sealed interface OudsBulletListUnorderedAsset : OudsPolymorphicComponentContent */ data object Bullet : OudsBulletListUnorderedAsset, OudsComponentIcon( - OudsBulletListUnorderedAsset.ExtraParameters::class.java, + OudsBulletListUnorderedAsset.ExtraParameters::class, { with(extraParameters) { val parentOrderedTypeCount = parentTypes.count { it is OudsBulletListType.Ordered } @@ -513,7 +514,7 @@ sealed interface OudsBulletListUnorderedAsset : OudsPolymorphicComponentContent * A bullet represented by a tick (check) icon. */ data object Tick : OudsBulletListUnorderedAsset, OudsComponentIcon( - OudsBulletListUnorderedAsset.ExtraParameters::class.java, + OudsBulletListUnorderedAsset.ExtraParameters::class, { painterResource(OudsTheme.drawableResources.component.bulletList.tick) }, { "" } ) { @@ -620,7 +621,7 @@ internal fun PreviewOudsBulletList(theme: OudsThemeContract, darkThemeEnabled: B val customBullet = rememberVectorPainter(Icons.Outlined.FavoriteBorder) OudsPreview(theme = theme, darkThemeEnabled = darkThemeEnabled) { with(parameter) { - val typeName = type.javaClass.simpleName + val typeName = type::class.simpleName OudsBulletList( type = type, textStyle = textStyle diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsButton.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsButton.kt similarity index 99% rename from core/src/main/java/com/orange/ouds/core/component/OudsButton.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsButton.kt index 4e34575f87..52ea27d28d 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsButton.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsButton.kt @@ -41,10 +41,8 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.platform.LocalConfiguration import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.platform.LocalLayoutDirection -import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.hideFromAccessibility @@ -56,7 +54,6 @@ import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.component.common.outerBorder import com.orange.ouds.core.component.content.OudsComponentContent import com.orange.ouds.core.component.content.OudsComponentIcon @@ -82,6 +79,11 @@ import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings import com.orange.ouds.theme.tokens.components.OudsButtonMonoTokens +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_common_loading_a11y +import kotlin.jvm.JvmName +import kotlin.jvm.JvmOverloads /** * Button is a UI element that triggers an action or event, and is used to initiate tasks or confirming an action. @@ -288,12 +290,12 @@ internal fun OudsButton( @Suppress("NAME_SHADOWING") val interactionSource = interactionSource ?: remember { MutableInteractionSource() } val interactionState by interactionSource.collectInteractionStateAsState() val state = getButtonState(enabled = enabled, loader = loader, interactionState = interactionState) - val iconScale = if (icon != null && label == null) LocalConfiguration.current.fontScale else 1.0f + val iconScale = if (icon != null && label == null) LocalDensity.current.fontScale else 1.0f val maxHeight = if (icon != null && label == null) buttonTokens.sizeMaxHeightIconOnly.value * iconScale else Dp.Unspecified val borderRadius = if (LocalThemeSettings.current.roundedCornerButtons == true) buttonTokens.borderRadiusRounded else buttonTokens.borderRadiusDefault val shape = RoundedCornerShape(borderRadius.value) - val stateDescription = if (state == OudsButtonState.Loading) stringResource(id = R.string.core_common_loading_a11y) else "" + val stateDescription = if (state == OudsButtonState.Loading) stringResource(resource = Res.string.core_common_loading_a11y) else "" val contentColor = rememberInteractionColor(interactionState = interactionState) { buttonInteractionState -> val buttonState = getButtonState(enabled = enabled, loader = loader, interactionState = buttonInteractionState) contentColor(appearance = appearance, state = buttonState) @@ -741,7 +743,7 @@ class OudsButtonIcon private constructor( graphicsObject: Any, val contentDescription: String, override val tinted: Boolean -) : OudsComponentIcon(ExtraParameters::class.java, graphicsObject, contentDescription) { +) : OudsComponentIcon(ExtraParameters::class, graphicsObject, contentDescription) { @ConsistentCopyVisibility data class ExtraParameters internal constructor( diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsCheckbox.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckbox.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsCheckbox.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckbox.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsCheckboxItem.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckboxItem.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsCheckboxItem.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckboxItem.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsChip.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsChip.kt similarity index 98% rename from core/src/main/java/com/orange/ouds/core/component/OudsChip.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsChip.kt index 90128e7362..93d1b9365d 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsChip.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsChip.kt @@ -30,6 +30,7 @@ import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.core.theme.value import com.orange.ouds.foundation.ExperimentalOudsApi import com.orange.ouds.foundation.RestrictedOudsApi +import kotlin.jvm.JvmOverloads /** * An icon in an [OudsFilterChip] or an [OudsSuggestionChip]. @@ -39,7 +40,7 @@ class OudsChipIcon private constructor( graphicsObject: Any, val contentDescription: String, override val tinted: Boolean -) : OudsComponentIcon(ExtraParameters::class.java, graphicsObject, contentDescription) { +) : OudsComponentIcon(ExtraParameters::class, graphicsObject, contentDescription) { @ConsistentCopyVisibility data class ExtraParameters internal constructor( diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsColoredBox.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsColoredBox.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsColoredBox.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsColoredBox.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsControl.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsControl.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsControl.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsControl.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsControlItem.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsControlItem.kt similarity index 99% rename from core/src/main/java/com/orange/ouds/core/component/OudsControlItem.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsControlItem.kt index de6329c4f2..ad9b0608f2 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsControlItem.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsControlItem.kt @@ -53,6 +53,7 @@ import com.orange.ouds.core.utilities.CheckedContent import com.orange.ouds.core.utilities.getPreviewEnumEntry import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import org.jetbrains.compose.resources.painterResource +import kotlin.jvm.JvmOverloads /** * The control item composable helps factorize common layout elements shared by [OudsCheckboxItem], [OudsTriStateCheckboxItem], [OudsRadioButtonItem], @@ -192,7 +193,7 @@ internal enum class OudsControlItemIndicatorPosition { class OudsControlItemIcon private constructor( graphicsObject: Any, override val tinted: Boolean -) : OudsComponentIcon(ExtraParameters::class.java, graphicsObject, "") { +) : OudsComponentIcon(ExtraParameters::class, graphicsObject, "") { @ConsistentCopyVisibility data class ExtraParameters internal constructor( diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsDigitInput.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsDigitInput.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsDigitInput.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsDigitInput.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsDivider.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsDivider.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsDivider.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsDivider.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsFilterChip.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFilterChip.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsFilterChip.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFilterChip.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFloatingActionButton.kt similarity index 99% rename from core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFloatingActionButton.kt index cef856c75d..71b9013e5a 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsFloatingActionButton.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFloatingActionButton.kt @@ -65,6 +65,7 @@ import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.extensions.toSentenceCase import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract +import kotlin.jvm.JvmOverloads /** * The FAB represents the most important action on a screen. It puts key actions within reach. @@ -485,7 +486,7 @@ class OudsFloatingActionButtonIcon private constructor( val contentDescription: String, override val tinted: Boolean ) : OudsComponentIcon( - Nothing::class.java, + Nothing::class, graphicsObject, contentDescription ) { diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsInlineAlert.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInlineAlert.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsInlineAlert.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInlineAlert.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsInputTag.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInputTag.kt similarity index 96% rename from core/src/main/java/com/orange/ouds/core/component/OudsInputTag.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInputTag.kt index ab376f6116..eb7c76440e 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsInputTag.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInputTag.kt @@ -34,13 +34,11 @@ import androidx.compose.runtime.remember import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color -import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.stringResource +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.Role import androidx.compose.ui.text.style.LineHeightStyle import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.component.common.outerBorder import com.orange.ouds.core.extensions.InteractionState import com.orange.ouds.core.extensions.collectInteractionStateAsState @@ -55,6 +53,9 @@ import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.theme.OudsThemeContract import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_inputTag_remove_a11y /** * Input tag is a UI element that allows to enter multiple values, each represented as a tag. As users type @@ -126,7 +127,7 @@ fun OudsInputTag( interactionSource = interactionSource, indication = interactionValuesIndication(contentColor, backgroundColor, borderColor, borderWidth), onClick = onClick, - onClickLabel = stringResource(R.string.core_inputTag_remove_a11y), + onClickLabel = stringResource(Res.string.core_inputTag_remove_a11y), role = Role.Button ), contentAlignment = Alignment.CenterStart @@ -157,7 +158,7 @@ fun OudsInputTag( } ) Icon( - modifier = Modifier.size(tagTokens.sizeAssetDefault.value * LocalConfiguration.current.fontScale), + modifier = Modifier.size(tagTokens.sizeAssetDefault.value * LocalDensity.current.fontScale), painter = painterResource(resource = OudsTheme.drawableResources.component.tag.close), contentDescription = null, tint = contentColor.value diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsLink.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLink.kt similarity index 99% rename from core/src/main/java/com/orange/ouds/core/component/OudsLink.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLink.kt index 4daf7c20bd..991744496c 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsLink.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLink.kt @@ -35,7 +35,6 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.res.painterResource import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.style.TextDecoration import androidx.compose.ui.tooling.preview.PreviewParameter @@ -62,6 +61,7 @@ import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.tokens.components.OudsLinkMonoTokens import org.jetbrains.compose.resources.painterResource +import kotlin.jvm.JvmOverloads /** * Link is a UI element that allows to navigate from one location to another, either within the same page @@ -413,7 +413,7 @@ enum class OudsLinkChevron { open class OudsLinkIcon private constructor( graphicsObject: Any, override val tinted: Boolean -) : OudsComponentIcon(ExtraParameters::class.java, graphicsObject, "") { +) : OudsComponentIcon(ExtraParameters::class, graphicsObject, "") { @ConsistentCopyVisibility data class ExtraParameters internal constructor( diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsModalBottomSheet.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsModalBottomSheet.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsModalBottomSheet.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsModalBottomSheet.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsNavigationBar.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationBar.kt similarity index 96% rename from core/src/main/java/com/orange/ouds/core/component/OudsNavigationBar.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationBar.kt index b60e1fc28d..af7dbd046c 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsNavigationBar.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationBar.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.animation.core.EaseOut import androidx.compose.animation.core.animateFloatAsState import androidx.compose.animation.core.tween @@ -44,7 +42,6 @@ import androidx.compose.runtime.Composable import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.runtime.getValue import androidx.compose.runtime.remember -import androidx.compose.runtime.staticCompositionLocalOf import androidx.compose.ui.Modifier import androidx.compose.ui.draw.drawBehind import androidx.compose.ui.draw.drawWithContent @@ -58,10 +55,11 @@ import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.Path import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.platform.LocalInspectionMode import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics import androidx.compose.ui.text.style.TextOverflow +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.dp @@ -70,9 +68,9 @@ import com.orange.ouds.core.component.content.OudsComponentIcon import com.orange.ouds.core.extensions.InteractionState import com.orange.ouds.core.extensions.collectInteractionStateAsState import com.orange.ouds.core.extensions.value +import com.orange.ouds.core.theme.LocalWindowWidthSizeClass import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.core.theme.WindowWidthSizeClass -import com.orange.ouds.core.theme.currentWindowWidth import com.orange.ouds.core.theme.value import com.orange.ouds.core.utilities.OudsPreview import com.orange.ouds.core.utilities.OudsPreviewDevice @@ -85,8 +83,6 @@ import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract -private val LocalWindowWidthSizeClass = staticCompositionLocalOf { WindowWidthSizeClass.COMPACT } - /** * Height of OUDS navigation bar. */ @@ -134,11 +130,7 @@ fun OudsNavigationBar( translucent: Boolean = false, windowInsets: WindowInsets = ShortNavigationBarDefaults.windowInsets ) { - val windowWidthSizeClass = if (LocalInspectionMode.current) { - LocalWindowWidthSizeClass.current - } else { - WindowWidthSizeClass.compute(currentWindowWidth()) - } + val windowWidthSizeClass = LocalWindowWidthSizeClass.current with(OudsTheme.componentsTokens.bar) { ShortNavigationBar( @@ -209,7 +201,7 @@ data class OudsNavigationBarItem( val label: String? = null, val badge: OudsNavigationBarItemBadge? = null, val interactionSource: MutableInteractionSource? = null -) : OudsComponentContent(ExtraParameters::class.java) { +) : OudsComponentContent(ExtraParameters::class) { @ConsistentCopyVisibility data class ExtraParameters internal constructor( @@ -221,11 +213,7 @@ data class OudsNavigationBarItem( @Suppress("NAME_SHADOWING") val interactionSource = interactionSource ?: remember { MutableInteractionSource() } val interactionState by interactionSource.collectInteractionStateAsState() val state = getNavigationBarItemState(interactionState = interactionState) - val windowWidthSizeClass = if (LocalInspectionMode.current) { - LocalWindowWidthSizeClass.current - } else { - WindowWidthSizeClass.compute(currentWindowWidth()) - } + val windowWidthSizeClass = LocalWindowWidthSizeClass.current val iconPosition = if (windowWidthSizeClass != WindowWidthSizeClass.MEDIUM) NavigationItemIconPosition.Top else NavigationItemIconPosition.Start with(OudsTheme.componentsTokens.bar) { @@ -396,7 +384,7 @@ private fun topIndicatorColor(state: OudsNavigationBarItemState): Color { */ class OudsNavigationBarItemIcon private constructor( graphicsObject: Any, -) : OudsComponentIcon(Nothing::class.java, graphicsObject, "") { +) : OudsComponentIcon(Nothing::class, graphicsObject, "") { internal companion object { val Size = 24.dp diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationButton.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsNavigationButton.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationButton.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsPasswordInput.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPasswordInput.kt similarity index 97% rename from core/src/main/java/com/orange/ouds/core/component/OudsPasswordInput.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPasswordInput.kt index 28414da7f8..9943965d6c 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsPasswordInput.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPasswordInput.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.interaction.Interaction import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.isSystemInDarkTheme @@ -26,14 +24,14 @@ import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue import androidx.compose.runtime.remember import androidx.compose.ui.Modifier -import androidx.compose.ui.res.stringResource import androidx.compose.ui.text.TextLayoutResult import androidx.compose.ui.text.input.ImeAction import androidx.compose.ui.text.input.KeyboardType +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Density -import com.orange.ouds.core.R import com.orange.ouds.core.component.common.OudsError import com.orange.ouds.core.component.common.text.OudsAnnotatedHelperText import com.orange.ouds.core.extensions.collectInteractionStateAsState @@ -50,7 +48,12 @@ import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings import org.jetbrains.compose.resources.DrawableResource +import org.jetbrains.compose.resources.StringResource import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_passwordInput_hidePassword_a11y +import ouds_android.core.generated.resources.core_passwordInput_showPassword_a11y /** * Password input is a UI element that allows to securely and confidentially capture a user's password. @@ -356,17 +359,17 @@ private fun textInputLockIcon() = OudsTextInputLeadingIcon( @Composable private fun trailingIconButton(isPasswordHidden: Boolean, onClick: () -> Unit): OudsTextInputTrailingIconButton { val painterResource: DrawableResource - val contentDescriptionResId: Int + val contentDescriptionResource: StringResource if (isPasswordHidden) { painterResource = OudsTheme.drawableResources.communication.accessibility.vision - contentDescriptionResId = R.string.core_passwordInput_showPassword_a11y + contentDescriptionResource = Res.string.core_passwordInput_showPassword_a11y } else { painterResource = OudsTheme.drawableResources.functional.settingsAndTools.accessibilityHide - contentDescriptionResId = R.string.core_passwordInput_hidePassword_a11y + contentDescriptionResource = Res.string.core_passwordInput_hidePassword_a11y } return OudsTextInputTrailingIconButton( painter = painterResource(resource = painterResource), - contentDescription = stringResource(contentDescriptionResId), + contentDescription = stringResource(contentDescriptionResource), onClick = onClick ) } diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsPasswordInputState.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPasswordInputState.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsPasswordInputState.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPasswordInputState.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsPinCodeInput.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt similarity index 85% rename from core/src/main/java/com/orange/ouds/core/component/OudsPinCodeInput.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt index 125698f649..fd4f19ae9a 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsPinCodeInput.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt @@ -16,12 +16,9 @@ import androidx.compose.foundation.ExperimentalFoundationApi import androidx.compose.foundation.interaction.Interaction import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.BoxWithConstraints -import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.heightIn import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width import androidx.compose.foundation.text.BasicSecureTextField import androidx.compose.foundation.text.KeyboardOptions import androidx.compose.foundation.text.input.InputTransformation @@ -52,25 +49,17 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.focus.FocusRequester import androidx.compose.ui.focus.focusRequester import androidx.compose.ui.platform.LocalClipboard -import androidx.compose.ui.platform.LocalInspectionMode import androidx.compose.ui.platform.LocalSoftwareKeyboardController -import androidx.compose.ui.res.stringResource -import androidx.compose.ui.semantics.hideFromAccessibility -import androidx.compose.ui.semantics.semantics import androidx.compose.ui.text.TextRange import androidx.compose.ui.text.input.KeyboardType import androidx.compose.ui.text.substring import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.dp -import androidx.constraintlayout.compose.ConstraintLayout -import androidx.constraintlayout.compose.Dimension -import com.orange.ouds.core.R import com.orange.ouds.core.component.common.OudsError import com.orange.ouds.core.component.common.text.OudsAnnotatedHelperText -import com.orange.ouds.core.extensions.InteractionState import com.orange.ouds.core.extensions.collectInteractionStateAsState +import com.orange.ouds.core.theme.LocalWindowWidth import com.orange.ouds.core.theme.OudsTheme -import com.orange.ouds.core.theme.currentWindowWidth import com.orange.ouds.core.theme.value import com.orange.ouds.core.utilities.OudsPreview import com.orange.ouds.core.utilities.OudsPreviewLightDark @@ -83,6 +72,9 @@ import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings import kotlinx.coroutines.launch +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_pinCodeInput_paste_label /** * PIN code input is a UI element that allows to capture short, fixed-length numeric codes, typically for authentication or confirmation purposes, such as a @@ -298,22 +290,22 @@ private fun OudsPinCodeInputTooltipBox(textFieldState: TextFieldState, length: O TextButton( onClick = { scope.launch { - clipboard.getClipEntry()?.clipData?.let { clipData -> - if (clipData.itemCount > 0) { - val text = clipData.getItemAt(0).text.toString() - textFieldState.edit { - insert(selection.min, text) - with(inputTransformation(length)) { - transformInput() - } - } - } - } +// clipboard.getClipEntry()?.clipData?.let { clipData -> +// if (clipData.itemCount > 0) { +// val text = clipData.getItemAt(0).text.toString() +// textFieldState.edit { +// insert(selection.min, text) +// with(inputTransformation(length)) { +// transformInput() +// } +// } +// } +// } tooltipState.dismiss() } } ) { - Text(text = stringResource(R.string.core_pinCodeInput_paste_label)) + Text(text = stringResource(Res.string.core_pinCodeInput_paste_label)) } } } @@ -341,62 +333,62 @@ private fun OudsPinCodeInputDecorator( val horizontalSpace = if (smallDeviceSpecificRules) 6.dp else pinCodeInputTokens.spaceColumnGapDigitInput.value val totalHorizontalSpace = horizontalSpace * (length.value - 1) val digitWidth = (maxWidth - totalHorizontalSpace) / length.value - ConstraintLayout { - val (row, helperTextErrorMessage) = createRefs() - Row( - modifier = Modifier - .constrainAs(row) { - top.linkTo(parent.top) - start.linkTo(parent.start) - end.linkTo(parent.end) - }, - horizontalArrangement = Arrangement.spacedBy(horizontalSpace) - ) { - val isNonErrorPreview = LocalInspectionMode.current && error == null - val focusedDigitIndex = (textFieldState.selection.end - 1).coerceIn(0, length.value - 1) - repeat(length.value) { index -> - val digitInputState = when { - (isNonErrorPreview || interactionState == InteractionState.Focused) && index == focusedDigitIndex -> OudsDigitInputState.Focused - interactionState == InteractionState.Hovered -> OudsDigitInputState.Hovered - else -> OudsDigitInputState.Enabled - } - OudsDigitInput( - modifier = Modifier - .width(digitWidth) - .semantics { hideFromAccessibility() }, - digit = textFieldState.text.getOrNull(index), - onClick = { - onDigitClick(index) - textFieldState.edit { placeCursorAfterCharAt(index) } - }, - state = digitInputState, - outlined = outlined, - error = error != null, - placeholder = error == null, - smallDeviceSpecificRules = smallDeviceSpecificRules - ) - } - } - OudsTextInputHelperTextErrorMessage( - modifier = Modifier.constrainAs(helperTextErrorMessage) { - top.linkTo(row.bottom) - bottom.linkTo(parent.bottom) - start.linkTo(row.start) - end.linkTo(row.end) - width = Dimension.fillToConstraints - }, - enabled = true, - error = error, - helperText = helperText, - annotatedHelperText = annotatedHelperText - ) - } +// ConstraintLayout { +// val (row, helperTextErrorMessage) = createRefs() +// Row( +// modifier = Modifier +// .constrainAs(row) { +// top.linkTo(parent.top) +// start.linkTo(parent.start) +// end.linkTo(parent.end) +// }, +// horizontalArrangement = Arrangement.spacedBy(horizontalSpace) +// ) { +// val isNonErrorPreview = LocalInspectionMode.current && error == null +// val focusedDigitIndex = (textFieldState.selection.end - 1).coerceIn(0, length.value - 1) +// repeat(length.value) { index -> +// val digitInputState = when { +// (isNonErrorPreview || interactionState == InteractionState.Focused) && index == focusedDigitIndex -> OudsDigitInputState.Focused +// interactionState == InteractionState.Hovered -> OudsDigitInputState.Hovered +// else -> OudsDigitInputState.Enabled +// } +// OudsDigitInput( +// modifier = Modifier +// .width(digitWidth) +// .semantics { hideFromAccessibility() }, +// digit = textFieldState.text.getOrNull(index), +// onClick = { +// onDigitClick(index) +// textFieldState.edit { placeCursorAfterCharAt(index) } +// }, +// state = digitInputState, +// outlined = outlined, +// error = error != null, +// placeholder = error == null, +// smallDeviceSpecificRules = smallDeviceSpecificRules +// ) +// } +// } +// OudsTextInputHelperTextErrorMessage( +// modifier = Modifier.constrainAs(helperTextErrorMessage) { +// top.linkTo(row.bottom) +// bottom.linkTo(parent.bottom) +// start.linkTo(row.start) +// end.linkTo(row.end) +// width = Dimension.fillToConstraints +// }, +// enabled = true, +// error = error, +// helperText = helperText, +// annotatedHelperText = annotatedHelperText +// ) +// } } } @Composable private fun smallDeviceSpecificRules(length: OudsPinCodeInputLength): Boolean { - return length == OudsPinCodeInputLength.Eight && currentWindowWidth() < 484.dp + return length == OudsPinCodeInputLength.Eight && LocalWindowWidth.current < 484.dp } @OptIn(ExperimentalFoundationApi::class) diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsProgressIndicator.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsProgressIndicator.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsProgressIndicator.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsProgressIndicator.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsRadioButton.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButton.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsRadioButton.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButton.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsRadioButtonItem.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButtonItem.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsRadioButtonItem.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButtonItem.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsSuggestionChip.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSuggestionChip.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsSuggestionChip.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSuggestionChip.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsSwitch.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSwitch.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsSwitch.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSwitch.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsSwitchItem.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSwitchItem.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/OudsSwitchItem.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSwitchItem.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTag.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTag.kt similarity index 97% rename from core/src/main/java/com/orange/ouds/core/component/OudsTag.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTag.kt index cc21eb2e64..47370d382b 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTag.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTag.kt @@ -35,8 +35,7 @@ import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.StrokeCap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.stringResource +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.hideFromAccessibility import androidx.compose.ui.semantics.semantics import androidx.compose.ui.semantics.stateDescription @@ -45,7 +44,6 @@ import androidx.compose.ui.text.style.LineHeightStyle import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.component.content.OudsComponentContent import com.orange.ouds.core.component.content.OudsComponentIcon import com.orange.ouds.core.component.content.OudsPolymorphicComponentContent @@ -64,6 +62,12 @@ import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_common_error_a11y +import ouds_android.core.generated.resources.core_common_loading_a11y +import ouds_android.core.generated.resources.core_common_warning_a11y +import kotlin.jvm.JvmOverloads /** * Tag is a UI element that allows to display short info like a label, keyword, or category. Tag helps users quickly find, group, or understand content. @@ -136,7 +140,7 @@ fun OudsTag( val hasLoader = loader != null val hasAsset = status.asset != null || hasLoader val isForbidden = !enabled && hasLoader - val stateDescription = if (hasLoader) stringResource(id = R.string.core_common_loading_a11y) else "" + val stateDescription = if (hasLoader) stringResource(resource = Res.string.core_common_loading_a11y) else "" val tagShape = shape(roundedCorners = roundedCorners) CheckedContent( @@ -162,7 +166,7 @@ fun OudsTag( } else { val isBulletAsset = status.asset is OudsTagAsset.Bullet val assetPadding = if (isBulletAsset) bulletPadding(size = size) else iconPadding(size = size) - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale status.asset?.PolymorphicContent( modifier = Modifier .run { @@ -366,7 +370,7 @@ private fun loaderPadding(size: OudsTagSize): Dp { @Composable private fun ProgressIndicator(status: OudsTagStatus, appearance: OudsTagAppearance, size: OudsTagSize, progress: Float?, enabled: Boolean) { - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale val modifier = Modifier .size(assetSize(size) * scale) .padding(all = loaderPadding(size = size)) @@ -446,7 +450,7 @@ sealed interface OudsTagAsset : OudsPolymorphicComponentContent { * A bullet in an [OudsTag]. * This bullet is non-clickable. No content description is needed because a tag always contains a label. */ - data object Bullet : OudsTagAsset, OudsComponentContent(OudsTagAsset.ExtraParameters::class.java) { + data object Bullet : OudsTagAsset, OudsComponentContent(OudsTagAsset.ExtraParameters::class) { @Composable override fun Content(modifier: Modifier) { @@ -465,7 +469,7 @@ sealed interface OudsTagAsset : OudsPolymorphicComponentContent { class Icon private constructor( graphicsObject: Any, override val tinted: Boolean - ) : OudsTagAsset, OudsComponentIcon(OudsTagAsset.ExtraParameters::class.java, graphicsObject, "") { + ) : OudsTagAsset, OudsComponentIcon(OudsTagAsset.ExtraParameters::class, graphicsObject, "") { /** * Creates an instance of [OudsTagAsset.Icon]. @@ -510,7 +514,7 @@ sealed interface OudsTagAsset : OudsPolymorphicComponentContent { * for other statuses because the tag's `label` should provide the necessary context. */ data object Default : OudsTagAsset, OudsComponentIcon( - OudsTagAsset.ExtraParameters::class.java, + OudsTagAsset.ExtraParameters::class, { icon -> with(icon.extraParameters) { status.getDefaultIconPainter(appearance, enabled).orElse { @@ -703,7 +707,7 @@ sealed class OudsTagStatus(val asset: OudsTagAsset? = null) { override val defaultIconContentDescription @Composable - get() = stringResource(id = R.string.core_common_warning_a11y) + get() = stringResource(resource = Res.string.core_common_warning_a11y) } /** @@ -732,7 +736,7 @@ sealed class OudsTagStatus(val asset: OudsTagAsset? = null) { override val defaultIconContentDescription @Composable - get() = stringResource(id = R.string.core_common_error_a11y) + get() = stringResource(resource = Res.string.core_common_error_a11y) } /** diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTextArea.kt similarity index 99% rename from core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTextArea.kt index 7f5787ebab..f642a5a5db 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTextArea.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTextArea.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.ScrollState import androidx.compose.foundation.background import androidx.compose.foundation.interaction.Interaction @@ -49,9 +47,7 @@ import androidx.compose.ui.draw.drawWithContent import androidx.compose.ui.geometry.CornerRadius import androidx.compose.ui.geometry.Offset import androidx.compose.ui.geometry.Size -import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.res.stringResource +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.hideFromAccessibility import androidx.compose.ui.semantics.semantics import androidx.compose.ui.text.TextLayoutResult @@ -60,12 +56,13 @@ import androidx.compose.ui.text.input.KeyboardType import androidx.compose.ui.text.input.TextFieldValue import androidx.compose.ui.text.input.VisualTransformation import androidx.compose.ui.text.style.TextOverflow +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Density import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.component.common.OudsError import com.orange.ouds.core.component.common.text.OudsAnnotatedHelperText import com.orange.ouds.core.extensions.collectInteractionStateAsState @@ -85,6 +82,9 @@ import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_common_error_a11y /** * Text area is a UI element that allows to type, edit, or select longer blocks of textual data, such as comments, messages or descriptions; by expanding @@ -1327,14 +1327,14 @@ internal fun OudsTextAreaDecorator( ) ) { val buttonTokens = OudsTheme.componentsTokens.button - val iconScale = LocalConfiguration.current.fontScale + val iconScale = LocalDensity.current.fontScale // Error icon if (hasError) { Icon( modifier = Modifier.size(buttonTokens.sizeIconOnly.value * iconScale), - painter = painterResource(resource = OudsTheme.drawableResources.component.alert.importantFill), - contentDescription = if (error.message.isBlank()) stringResource(R.string.core_common_error_a11y) else null, + painter = painterResource(resource = OudsTheme.drawableResources.component.alert.importantFill), + contentDescription = if (error.message.isBlank()) stringResource(Res.string.core_common_error_a11y) else null, tint = errorIconColor(state = state) ) } diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTextInput.kt similarity index 99% rename from core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTextInput.kt index 83bee6b9fd..85cd7ae43b 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTextInput.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTextInput.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.background import androidx.compose.foundation.border import androidx.compose.foundation.interaction.Interaction @@ -54,9 +52,7 @@ import androidx.compose.ui.graphics.Shape import androidx.compose.ui.graphics.SolidColor import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.res.stringResource +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.clearAndSetSemantics import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.error @@ -68,12 +64,13 @@ import androidx.compose.ui.text.input.KeyboardType import androidx.compose.ui.text.input.TextFieldValue import androidx.compose.ui.text.input.VisualTransformation import androidx.compose.ui.text.style.TextOverflow +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Density import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.component.common.OudsError import com.orange.ouds.core.component.common.bottomBorder import com.orange.ouds.core.component.common.text.OudsAnnotatedHelperText @@ -104,6 +101,9 @@ import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_common_error_a11y /** * Text input is a UI element that allows to enter, edit, or select single-line textual data. Text input is one of the most fundamental form elements used @@ -1165,7 +1165,7 @@ internal fun OudsTextInputDecorator( // Trailing elements if (hasError || state == OudsTextInputState.Loading || trailingIconButton != null) { val buttonTokens = OudsTheme.componentsTokens.button - val iconScale = LocalConfiguration.current.fontScale + val iconScale = LocalDensity.current.fontScale Row( verticalAlignment = Alignment.CenterVertically, horizontalArrangement = Arrangement.spacedBy(spaceColumnGapTrailingErrorAction.value) @@ -1178,8 +1178,8 @@ internal fun OudsTextInputDecorator( ) { Icon( modifier = Modifier.size(buttonTokens.sizeIconOnly.value * iconScale), - painter = painterResource(resource = OudsTheme.drawableResources.component.alert.importantFill), - contentDescription = if (error.message.isBlank()) stringResource(R.string.core_common_error_a11y) else null, + painter = painterResource(resource = OudsTheme.drawableResources.component.alert.importantFill), + contentDescription = if (error.message.isBlank()) stringResource(Res.string.core_common_error_a11y) else null, tint = errorIconColor(state = state) ) } @@ -1447,7 +1447,7 @@ class OudsTextInputLeadingIcon private constructor( graphicsObject: Any, val contentDescription: String, override val tinted: Boolean -) : OudsComponentIcon(ExtraParameters::class.java, graphicsObject, contentDescription) { +) : OudsComponentIcon(ExtraParameters::class, graphicsObject, contentDescription) { @ConsistentCopyVisibility data class ExtraParameters internal constructor( @@ -1501,7 +1501,7 @@ class OudsTextInputTrailingIconButton private constructor( val contentDescription: String, val onClick: () -> Unit ) : OudsComponentIcon( - ExtraParameters::class.java, + ExtraParameters::class, graphicsObject, contentDescription, onClick diff --git a/core/src/main/java/com/orange/ouds/core/component/OudsTopAppBar.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTopAppBar.kt similarity index 98% rename from core/src/main/java/com/orange/ouds/core/component/OudsTopAppBar.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTopAppBar.kt index 9c91f827d6..a6f8d3e42a 100644 --- a/core/src/main/java/com/orange/ouds/core/component/OudsTopAppBar.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsTopAppBar.kt @@ -38,7 +38,6 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.res.stringResource import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics import androidx.compose.ui.text.TextStyle @@ -46,7 +45,6 @@ import androidx.compose.ui.text.style.TextOverflow import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp -import com.orange.ouds.core.R import com.orange.ouds.core.component.content.OudsComponentContent import com.orange.ouds.core.component.content.OudsComponentIcon import com.orange.ouds.core.component.content.OudsPolymorphicComponentContent @@ -61,6 +59,11 @@ import com.orange.ouds.core.utilities.getPreviewTheme import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import org.jetbrains.compose.resources.painterResource +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_topAppBar_backNavigationIcon_a11y +import ouds_android.core.generated.resources.core_topAppBar_closeNavigationIcon_a11y +import ouds_android.core.generated.resources.core_topAppBar_menuNavigationIcon_a11y /** * App bar (aka Top app bar on Material 2) is a top-aligned component that displays the screen title and provides access to key actions and navigation @@ -425,7 +428,7 @@ open class OudsTopAppBarNavigationIcon private constructor( graphicsObjectProvider: @Composable (OudsTopAppBarNavigationIcon) -> Any, contentDescriptionProvider: @Composable (OudsTopAppBarNavigationIcon) -> String, onClick: () -> Unit -) : OudsComponentIcon(Nothing::class.java, graphicsObjectProvider, contentDescriptionProvider, onClick) { +) : OudsComponentIcon(Nothing::class, graphicsObjectProvider, contentDescriptionProvider, onClick) { /** * A predefined [OudsTopAppBarNavigationIcon] with a back icon. @@ -435,7 +438,7 @@ open class OudsTopAppBarNavigationIcon private constructor( */ class Back(onClick: () -> Unit) : OudsTopAppBarNavigationIcon( { painterResource(resource = OudsTheme.drawableResources.functional.navigation.formChevronLeft) }, - { stringResource(R.string.core_topAppBar_backNavigationIcon_a11y) }, + { stringResource(Res.string.core_topAppBar_backNavigationIcon_a11y) }, onClick ) @@ -447,7 +450,7 @@ open class OudsTopAppBarNavigationIcon private constructor( */ class Close(onClick: () -> Unit) : OudsTopAppBarNavigationIcon( { painterResource(resource = OudsTheme.drawableResources.functional.actions.deleteCrossRound) }, - { stringResource(R.string.core_topAppBar_closeNavigationIcon_a11y) }, + { stringResource(Res.string.core_topAppBar_closeNavigationIcon_a11y) }, onClick ) @@ -459,7 +462,7 @@ open class OudsTopAppBarNavigationIcon private constructor( */ class Menu(onClick: () -> Unit) : OudsTopAppBarNavigationIcon( { painterResource(resource = OudsTheme.drawableResources.functional.navigation.menuGridUiRound) }, - { stringResource(R.string.core_topAppBar_menuNavigationIcon_a11y) }, + { stringResource(Res.string.core_topAppBar_menuNavigationIcon_a11y) }, onClick ) @@ -516,7 +519,7 @@ sealed interface OudsTopAppBarAction : OudsPolymorphicComponentContent { contentDescription: String, badge: OudsTopAppBarActionBadge?, onClick: () -> Unit - ) : OudsTopAppBarAction, OudsComponentIcon(Nothing::class.java, { graphicsObject }, { contentDescription }, onClick) { + ) : OudsTopAppBarAction, OudsComponentIcon(Nothing::class, { graphicsObject }, { contentDescription }, onClick) { private val _badge = badge override val badge: OudsButtonIconBadge? @@ -586,7 +589,7 @@ sealed interface OudsTopAppBarAction : OudsPolymorphicComponentContent { private val monogramBackgroundColor: Color?, private val contentDescription: String, private val onClick: (() -> Unit)? - ) : OudsTopAppBarAction, OudsComponentContent(Nothing::class.java) { + ) : OudsTopAppBarAction, OudsComponentContent(Nothing::class) { /** * Creates an instance of [OudsTopAppBarAction.Avatar]. diff --git a/core/src/main/java/com/orange/ouds/core/component/common/OudsBorders.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/OudsBorders.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/OudsBorders.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/OudsBorders.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/common/OudsError.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/OudsError.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/OudsError.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/OudsError.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/common/text/OudsLinkAnnotation.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsLinkAnnotation.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/common/text/OudsLinkAnnotation.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsLinkAnnotation.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/content/OudsComponentContent.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/content/OudsComponentContent.kt similarity index 87% rename from core/src/main/java/com/orange/ouds/core/component/content/OudsComponentContent.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/content/OudsComponentContent.kt index 4d779b770f..426783df4a 100644 --- a/core/src/main/java/com/orange/ouds/core/component/content/OudsComponentContent.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/content/OudsComponentContent.kt @@ -19,14 +19,15 @@ import androidx.compose.runtime.staticCompositionLocalOf import androidx.compose.ui.Modifier import com.orange.ouds.foundation.extensions.asOrNull import com.orange.ouds.foundation.extensions.orElse +import kotlin.reflect.KClass private val LocalExtraParametersByClass = - mutableMapOf, ProvidableCompositionLocal>() + mutableMapOf, ProvidableCompositionLocal>() -internal fun getLocalExtraParameters(clazz: Class): ProvidableCompositionLocal where T : OudsComponentContent.ExtraParameters { +internal fun getLocalExtraParameters(clazz: KClass): ProvidableCompositionLocal where T : OudsComponentContent.ExtraParameters { return LocalExtraParametersByClass[clazz]?.asOrNull>().orElse { - staticCompositionLocalOf { error("CompositionLocal LocalExtraParameters for class ${clazz.name} not present") }.also { compositionLocal -> + staticCompositionLocalOf { error("CompositionLocal LocalExtraParameters for class ${clazz.qualifiedName} not present") }.also { compositionLocal -> LocalExtraParametersByClass[clazz] = compositionLocal } } @@ -45,7 +46,7 @@ internal fun getLocalExtraParameters(clazz: Class): ProvidableComposition * * @suppress */ -abstract class OudsComponentContent internal constructor(private val extraParametersClass: Class) where T : OudsComponentContent.ExtraParameters { +abstract class OudsComponentContent internal constructor(private val extraParametersClass: KClass) where T : OudsComponentContent.ExtraParameters { /** * Extra parameters that can be passed to the `Content` method when other parameters than those provided by the user are needed to layout the component. diff --git a/core/src/main/java/com/orange/ouds/core/component/content/OudsComponentIcon.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/content/OudsComponentIcon.kt similarity index 97% rename from core/src/main/java/com/orange/ouds/core/component/content/OudsComponentIcon.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/content/OudsComponentIcon.kt index a380fbbba8..eaed736b71 100644 --- a/core/src/main/java/com/orange/ouds/core/component/content/OudsComponentIcon.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/content/OudsComponentIcon.kt @@ -25,6 +25,7 @@ import com.orange.ouds.core.component.OudsButtonAppearance import com.orange.ouds.core.component.OudsButtonIcon import com.orange.ouds.core.component.OudsButtonIconBadge import com.orange.ouds.foundation.extensions.orElse +import kotlin.reflect.KClass /** * An icon in a component. If clickable, it is displayed as an icon-only [OudsButton] with [OudsButtonAppearance.Minimal]. @@ -32,14 +33,14 @@ import com.orange.ouds.foundation.extensions.orElse * @suppress */ abstract class OudsComponentIcon internal constructor( - extraParametersClass: Class, + extraParametersClass: KClass, private val graphicsObjectProvider: @Composable (S) -> Any, private val contentDescriptionProvider: @Composable (S) -> String, private val onClick: (() -> Unit)? = null, ) : OudsComponentContent(extraParametersClass) where T : OudsComponentContent.ExtraParameters, S : OudsComponentIcon { protected constructor( - extraParametersClass: Class, + extraParametersClass: KClass, graphicsObject: Any, contentDescription: String, onClick: (() -> Unit)? = null, diff --git a/core/src/main/java/com/orange/ouds/core/component/content/OudsPolymorphicComponentContent.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/content/OudsPolymorphicComponentContent.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/content/OudsPolymorphicComponentContent.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/content/OudsPolymorphicComponentContent.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsAlertMessageSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsAlertMessageSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsAlertMessageSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsAlertMessageSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsBadgeSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsBadgeSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsBadgeSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsBadgeSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsBottomSheetScaffoldSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsBottomSheetScaffoldSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsBottomSheetScaffoldSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsBottomSheetScaffoldSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsBulletListSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsBulletListSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsBulletListSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsBulletListSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsButtonSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsButtonSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsButtonSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsButtonSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsCheckboxItemSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsCheckboxItemSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsCheckboxItemSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsCheckboxItemSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsCheckboxSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsCheckboxSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsCheckboxSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsCheckboxSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsCircularProgressIndicatorSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsCircularProgressIndicatorSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsCircularProgressIndicatorSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsCircularProgressIndicatorSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsColoredBoxSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsColoredBoxSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsColoredBoxSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsColoredBoxSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsDividerSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsDividerSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsDividerSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsDividerSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsFilterChipSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsFilterChipSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsFilterChipSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsFilterChipSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsFloatingActionButtonSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsFloatingActionButtonSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsFloatingActionButtonSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsFloatingActionButtonSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsInlineAlertSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsInlineAlertSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsInlineAlertSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsInlineAlertSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsInputTagSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsInputTagSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsInputTagSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsInputTagSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsLinearProgressIndicatorSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsLinearProgressIndicatorSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsLinearProgressIndicatorSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsLinearProgressIndicatorSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsLinkSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsLinkSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsLinkSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsLinkSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsModalBottomSheetSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsModalBottomSheetSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsModalBottomSheetSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsModalBottomSheetSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsNavigationBarSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsNavigationBarSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsNavigationBarSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsNavigationBarSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsNavigationButtonSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsNavigationButtonSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsNavigationButtonSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsNavigationButtonSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsPasswordInputSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsPasswordInputSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsPasswordInputSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsPasswordInputSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsPinCodeInputSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsPinCodeInputSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsPinCodeInputSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsPinCodeInputSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsRadioButtonItemSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsRadioButtonItemSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsRadioButtonItemSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsRadioButtonItemSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsRadioButtonSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsRadioButtonSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsRadioButtonSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsRadioButtonSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsSuggestionChipSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsSuggestionChipSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsSuggestionChipSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsSuggestionChipSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsSwitchItemSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsSwitchItemSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsSwitchItemSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsSwitchItemSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsSwitchSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsSwitchSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsSwitchSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsSwitchSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsTagSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsTagSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsTagSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsTagSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsTextAreaSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsTextAreaSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsTextAreaSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsTextAreaSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsTextInputSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsTextInputSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsTextInputSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsTextInputSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/component/samples/OudsTopAppBarSamples.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsTopAppBarSamples.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/component/samples/OudsTopAppBarSamples.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/component/samples/OudsTopAppBarSamples.kt diff --git a/core/src/main/java/com/orange/ouds/core/extensions/ConfigurationExt.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/extensions/ConfigurationExt.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/extensions/ConfigurationExt.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/extensions/ConfigurationExt.kt diff --git a/core/src/main/java/com/orange/ouds/core/extensions/InteractionSourceExt.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/extensions/InteractionSourceExt.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/extensions/InteractionSourceExt.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/extensions/InteractionSourceExt.kt diff --git a/core/src/main/java/com/orange/ouds/core/extensions/ModifierExt.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/extensions/ModifierExt.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/extensions/ModifierExt.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/extensions/ModifierExt.kt diff --git a/core/src/main/java/com/orange/ouds/core/extensions/OudsLightDarkColorTokenExt.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/extensions/OudsLightDarkColorTokenExt.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/extensions/OudsLightDarkColorTokenExt.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/extensions/OudsLightDarkColorTokenExt.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsBorders.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsBorders.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsBorders.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsBorders.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsColorMode.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsColorMode.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsColorMode.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsColorMode.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsColorScheme.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsColorScheme.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsColorScheme.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsColorScheme.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsComponents.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsComponents.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsComponents.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsComponents.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsEffects.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsEffects.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsEffects.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsEffects.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsElevations.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsElevations.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsElevations.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsElevations.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsGrids.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsGrids.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsGrids.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsGrids.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsOpacities.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsOpacities.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsOpacities.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsOpacities.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsSizes.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsSizes.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsSizes.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsSizes.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsSpaces.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsSpaces.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsSpaces.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsSpaces.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsTheme.kt similarity index 79% rename from core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsTheme.kt index edd6258443..4cd502d041 100644 --- a/core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsTheme.kt @@ -13,6 +13,7 @@ package com.orange.ouds.core.theme import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.foundation.layout.BoxWithConstraints import androidx.compose.material3.ColorScheme import androidx.compose.material3.MaterialTheme import androidx.compose.runtime.Composable @@ -20,8 +21,8 @@ import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.runtime.ReadOnlyComposable import androidx.compose.runtime.compositionLocalOf import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.platform.LocalContext -import com.orange.ouds.core.extensions.isHighContrastModeEnabled +import androidx.compose.ui.unit.Dp +import com.orange.ouds.core.utilities.isHighContrastModeEnabled import com.orange.ouds.foundation.RestrictedOudsApi import com.orange.ouds.foundation.locale.getLanguage import com.orange.ouds.theme.OudsDrawableResources @@ -53,6 +54,8 @@ internal val LocalDrawableResources = staticCompositionLocalOf { missingCompositionLocalError("LocalThemeSettings") } internal val LocalComponents = staticCompositionLocalOf { missingCompositionLocalError("LocalComponents") } internal val LocalThemeName = staticCompositionLocalOf { missingCompositionLocalError("LocalThemeName") } +internal val LocalWindowWidthSizeClass = staticCompositionLocalOf { missingCompositionLocalError("LocalWindowWidthSizeClass") } +internal val LocalWindowWidth = staticCompositionLocalOf { missingCompositionLocalError("LocalWindowWidth") } /** * Object that stores tokens values for the current theme. @@ -178,36 +181,39 @@ fun OudsTheme( with(theme) { val colorScheme = if (darkThemeEnabled) colorTokens.darkColorScheme else colorTokens.lightColorScheme val materialColorScheme = if (darkThemeEnabled) materialColorTokens.materialDarkColorScheme else materialColorTokens.materialLightColorScheme - val windowWidthSizeClass = WindowWidthSizeClass.compute(currentWindowWidth()) - val context = LocalContext.current - CompositionLocalProvider( - LocalDarkThemeEnabled provides darkThemeEnabled, - LocalHighContrastModeEnabled provides context.isHighContrastModeEnabled(), - LocalColorScheme provides colorScheme, - LocalLightColorScheme provides colorTokens.lightColorScheme, - LocalDarkColorScheme provides colorTokens.darkColorScheme, - LocalMaterialLightColorScheme provides materialColorTokens.materialLightColorScheme, - LocalMaterialDarkColorScheme provides materialColorTokens.materialDarkColorScheme, - LocalBorders provides borderTokens.getBorders(), - LocalEffects provides effectTokens.getEffects(), - LocalElevations provides elevationTokens.getElevations(), - LocalTypography provides fontTokens.getTypography(getFontFamily(language = getLanguage()), windowWidthSizeClass), - LocalGrids provides gridTokens.getGrids(windowWidthSizeClass), - LocalOpacities provides opacityTokens.getOpacities(), - LocalSizes provides sizeTokens.getSizes(windowWidthSizeClass), - LocalSpaces provides spaceTokens.getSpaces(windowWidthSizeClass), - LocalComponentsTokens provides componentsTokens, - LocalDrawableResources provides drawableResources, - LocalThemeSettings provides settings, - LocalThemeName provides theme.name - ) { - // Bind LocalComponents after the others because the getComponents method needs to access the other composition locals - CompositionLocalProvider(LocalComponents provides componentsTokens.getComponents()) { - MaterialTheme( - colorScheme = materialColorScheme, - content = content - ) + BoxWithConstraints { + val windowWidthSizeClass = WindowWidthSizeClass.compute(maxWidth) + CompositionLocalProvider( + LocalDarkThemeEnabled provides darkThemeEnabled, + LocalHighContrastModeEnabled provides isHighContrastModeEnabled(), + LocalColorScheme provides colorScheme, + LocalLightColorScheme provides colorTokens.lightColorScheme, + LocalDarkColorScheme provides colorTokens.darkColorScheme, + LocalMaterialLightColorScheme provides materialColorTokens.materialLightColorScheme, + LocalMaterialDarkColorScheme provides materialColorTokens.materialDarkColorScheme, + LocalBorders provides borderTokens.getBorders(), + LocalEffects provides effectTokens.getEffects(), + LocalElevations provides elevationTokens.getElevations(), + LocalTypography provides fontTokens.getTypography(getFontFamily(language = getLanguage()), windowWidthSizeClass), + LocalGrids provides gridTokens.getGrids(windowWidthSizeClass), + LocalOpacities provides opacityTokens.getOpacities(), + LocalSizes provides sizeTokens.getSizes(windowWidthSizeClass), + LocalSpaces provides spaceTokens.getSpaces(windowWidthSizeClass), + LocalComponentsTokens provides componentsTokens, + LocalDrawableResources provides drawableResources, + LocalThemeSettings provides settings, + LocalThemeName provides theme.name, + LocalWindowWidthSizeClass provides windowWidthSizeClass, + LocalWindowWidth provides maxWidth + ) { + // Bind LocalComponents after the others because the getComponents method needs to access the other composition locals + CompositionLocalProvider(LocalComponents provides componentsTokens.getComponents()) { + MaterialTheme( + colorScheme = materialColorScheme, + content = content + ) + } } } } diff --git a/core/src/main/java/com/orange/ouds/core/theme/OudsTypography.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsTypography.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/theme/OudsTypography.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/OudsTypography.kt diff --git a/core/src/main/java/com/orange/ouds/core/theme/WindowWidthSizeClass.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/WindowWidthSizeClass.kt similarity index 86% rename from core/src/main/java/com/orange/ouds/core/theme/WindowWidthSizeClass.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/theme/WindowWidthSizeClass.kt index aca8d8bc3d..69cd563e12 100644 --- a/core/src/main/java/com/orange/ouds/core/theme/WindowWidthSizeClass.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/theme/WindowWidthSizeClass.kt @@ -12,12 +12,8 @@ package com.orange.ouds.core.theme -import androidx.compose.material3.adaptive.currentWindowSize -import androidx.compose.runtime.Composable -import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp -import androidx.compose.ui.unit.toSize import com.orange.ouds.core.theme.WindowWidthSizeClass.Companion.compute /** @@ -74,9 +70,3 @@ enum class WindowWidthSizeClass { } } } - -/** - * Returns the current window width in dp. - */ -@Composable -internal fun currentWindowWidth() = with(LocalDensity.current) { currentWindowSize().toSize().toDpSize().width } diff --git a/core/src/main/java/com/orange/ouds/core/utilities/CheckedContent.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/CheckedContent.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/utilities/CheckedContent.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/utilities/CheckedContent.kt diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/HighContrast.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/HighContrast.kt new file mode 100644 index 0000000000..6d28f8a439 --- /dev/null +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/HighContrast.kt @@ -0,0 +1,18 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.core.utilities + +import androidx.compose.runtime.Composable + +@Composable +expect fun isHighContrastModeEnabled(): Boolean \ No newline at end of file diff --git a/core/src/main/java/com/orange/ouds/core/utilities/LayeredTintedPainter.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/LayeredTintedPainter.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/utilities/LayeredTintedPainter.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/utilities/LayeredTintedPainter.kt diff --git a/core/src/main/java/com/orange/ouds/core/utilities/OudsPreview.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt similarity index 92% rename from core/src/main/java/com/orange/ouds/core/utilities/OudsPreview.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt index a29d7abdac..9a22c90f0e 100644 --- a/core/src/main/java/com/orange/ouds/core/utilities/OudsPreview.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt @@ -12,8 +12,8 @@ package com.orange.ouds.core.utilities -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL +//import com.orange.ouds.theme.orange.OrangeTheme +//import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily import androidx.compose.foundation.background import androidx.compose.foundation.isSystemInDarkTheme import androidx.compose.foundation.layout.Arrangement @@ -42,8 +42,9 @@ import androidx.compose.ui.graphics.Paint import androidx.compose.ui.graphics.drawscope.DrawScope import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.rememberVectorPainter -import androidx.compose.ui.platform.LocalConfiguration import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Devices import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.Dp @@ -52,14 +53,11 @@ import androidx.compose.ui.unit.sp import com.orange.ouds.core.component.common.text.buildOudsAnnotatedErrorMessage import com.orange.ouds.core.component.common.text.buildOudsAnnotatedHelperText import com.orange.ouds.core.component.common.text.withStrong -import com.orange.ouds.core.extensions.isNightModeEnabled import com.orange.ouds.core.theme.LocalHighContrastModeEnabled import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings import com.orange.ouds.theme.wireframe.WireframeTheme -//import com.orange.ouds.theme.orange.OrangeTheme -//import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily import kotlin.enums.enumEntries import kotlin.math.ceil import kotlin.math.min @@ -97,28 +95,28 @@ fun OudsPreview( ) { // Updating the configuration is only needed for UI tests // It is not needed for Android Studio previews because the uiMode parameter of the @Preview annotation already configures the UI mode properly - val configuration = LocalConfiguration.current.apply { - isNightModeEnabled = darkThemeEnabled - } - CompositionLocalProvider(value = LocalConfiguration provides configuration) { - OudsTheme( - theme = theme, - darkThemeEnabled = darkThemeEnabled +// val configuration = LocalConfiguration.current.apply { +// isNightModeEnabled = darkThemeEnabled +// } + //CompositionLocalProvider(value = LocalConfiguration provides configuration) { + OudsTheme( + theme = theme, + darkThemeEnabled = darkThemeEnabled + ) { + // Override theme settings + // Add a box to be able to see components + // Use a box instead of a surface to avoid clipping children in cases where something is drawn outside of the component to preview + Box( + modifier = Modifier + .background(OudsTheme.colorScheme.background.primary) + .then(modifier) ) { - // Override theme settings - // Add a box to be able to see components - // Use a box instead of a surface to avoid clipping children in cases where something is drawn outside of the component to preview - Box( - modifier = Modifier - .background(OudsTheme.colorScheme.background.primary) - .then(modifier) - ) { - CompositionLocalProvider(LocalHighContrastModeEnabled provides highContrastModeEnabled) { - content() - } + CompositionLocalProvider(LocalHighContrastModeEnabled provides highContrastModeEnabled) { + content() } } } + //} } internal fun OudsThemeContract.mapSettings(transform: (OudsThemeSettings) -> (OudsThemeSettings)): OudsThemeContract { diff --git a/core/src/main/java/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt similarity index 100% rename from core/src/main/java/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt rename to core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreviewableComponent.kt diff --git a/core/src/iosMain/kotlin/com/orange/ouds/core/utilities/HighContrast.ios.kt b/core/src/iosMain/kotlin/com/orange/ouds/core/utilities/HighContrast.ios.kt new file mode 100644 index 0000000000..fea6459671 --- /dev/null +++ b/core/src/iosMain/kotlin/com/orange/ouds/core/utilities/HighContrast.ios.kt @@ -0,0 +1,20 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.core.utilities + +import androidx.compose.runtime.Composable + +@Composable +actual fun isHighContrastModeEnabled(): Boolean { + return false +} \ No newline at end of file diff --git a/foundation/src/androidMain/kotlin/com/orange/ouds/foundation/utilities/Logger.android.kt b/foundation/src/androidMain/kotlin/com/orange/ouds/foundation/utilities/Logger.android.kt new file mode 100644 index 0000000000..38dfb68500 --- /dev/null +++ b/foundation/src/androidMain/kotlin/com/orange/ouds/foundation/utilities/Logger.android.kt @@ -0,0 +1,24 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.foundation.utilities + +actual object Logger { + + actual fun d(tag: String, message: String) { + android.util.Log.d(tag, message) + } + + actual fun w(tag: String, message: String) { + android.util.Log.w(tag, message) + } +} \ No newline at end of file diff --git a/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Logger.kt b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Logger.kt new file mode 100644 index 0000000000..afb30c0de0 --- /dev/null +++ b/foundation/src/commonMain/kotlin/com/orange/ouds/foundation/utilities/Logger.kt @@ -0,0 +1,20 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.foundation.utilities + +expect object Logger { + + fun d(tag: String, message: String) + + fun w(tag: String, message: String) +} diff --git a/foundation/src/iosMain/kotlin/com/orange/ouds/foundation/utilities/Logger.ios.kt b/foundation/src/iosMain/kotlin/com/orange/ouds/foundation/utilities/Logger.ios.kt new file mode 100644 index 0000000000..32b395027c --- /dev/null +++ b/foundation/src/iosMain/kotlin/com/orange/ouds/foundation/utilities/Logger.ios.kt @@ -0,0 +1,26 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.foundation.utilities + +import platform.Foundation.NSLog + +actual object Logger { + + actual fun d(tag: String, message: String) { + NSLog("[$tag] $message") + } + + actual fun w(tag: String, message: String) { + NSLog("[$tag] $message") + } +} diff --git a/gradle.properties b/gradle.properties index 14d14b219c..b24800d9ef 100644 --- a/gradle.properties +++ b/gradle.properties @@ -37,5 +37,6 @@ android.nonTransitiveRClass=true # Enables Dokka Gradle plugin v2 org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true +kotlin.suppressGradlePluginWarnings=IncorrectCompileOnlyDependencyWarning # OUDS library version version=1.6.0 diff --git a/theme-wireframe/build.gradle.kts b/theme-wireframe/build.gradle.kts index 717ba309d5..14e679b01d 100644 --- a/theme-wireframe/build.gradle.kts +++ b/theme-wireframe/build.gradle.kts @@ -63,7 +63,7 @@ kotlin { // A step-by-step guide on how to include this library in an XCode // project can be found here: // https://developer.android.com/kotlin/multiplatform/migrate - val xcfName = "oudsThemeContract" + val xcfName = "oudsThemeWireframe" // iosX64 { // binaries.framework { diff --git a/theme-wireframe/src/androidUnitTest/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt b/theme-wireframe/src/androidUnitTest/kotlin/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt similarity index 100% rename from theme-wireframe/src/androidUnitTest/java/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt rename to theme-wireframe/src/androidUnitTest/kotlin/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt From 5a32d99f3dcd22fc2288e48c9523e28525e88252 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Tue, 30 Jun 2026 19:11:09 +0200 Subject: [PATCH 09/18] Fix snapshot tests --- .../orange/ouds/core/test/OudsSnapshotTest.kt | 18 +++++++ core/build.gradle.kts | 13 ++++- .../ouds/core/component/OudsAvatarTest.kt | 0 .../ouds/core/component/OudsBadgedIconTest.kt | 0 .../ouds/core/component/OudsDigitInputTest.kt | 0 .../common/text/OudsAnnotatedStringTest.kt | 0 ...udsAvatarTest_takeDarkThemeSnapshot[0].png | Bin ...udsAvatarTest_takeDarkThemeSnapshot[1].png | Bin ...dsAvatarTest_takeLightThemeSnapshot[0].png | Bin ...dsAvatarTest_takeLightThemeSnapshot[1].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[0].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[1].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[2].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[3].png | Bin ...adgedIconTest_takeDarkThemeSnapshot[4].png | Bin ...dgedIconTest_takeLightThemeSnapshot[0].png | Bin ...dgedIconTest_takeLightThemeSnapshot[1].png | Bin ...dgedIconTest_takeLightThemeSnapshot[2].png | Bin ...dgedIconTest_takeLightThemeSnapshot[3].png | Bin ...dgedIconTest_takeLightThemeSnapshot[4].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tTest$Default_takeDarkThemeSnapshot[4].png | Bin ...tTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...undedCorners_takeLightThemeSnapshot[0].png | Bin ...undedCorners_takeLightThemeSnapshot[1].png | Bin theme-wireframe/build.gradle.kts | 47 +++++++++++++++++- .../wireframe/WireframeComponentTestSuite.kt | 0 ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...eTest$Default_takeDarkThemeSnapshot[3].png | Bin ...eTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[0].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[1].png | Bin ...est$WithIcon_takeLightThemeSnapshot[0].png | Bin ...est$WithIcon_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...heetScaffoldTest_takeDarkThemeSnapshot.png | Bin ...eetScaffoldTest_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[0].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[1].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithIconBadge_takeLightThemeSnapshot[0].png | Bin ...ithIconBadge_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...t_takeDarkThemeHighContrastSnapshot[4].png | Bin ...t_takeDarkThemeHighContrastSnapshot[5].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[0].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[1].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[2].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[3].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[4].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[5].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[4].png | Bin ..._takeLightThemeHighContrastSnapshot[5].png | Bin ...CheckboxTest_takeLightThemeSnapshot[0].png | Bin ...CheckboxTest_takeLightThemeSnapshot[1].png | Bin ...CheckboxTest_takeLightThemeSnapshot[2].png | Bin ...CheckboxTest_takeLightThemeSnapshot[3].png | Bin ...CheckboxTest_takeLightThemeSnapshot[4].png | Bin ...CheckboxTest_takeLightThemeSnapshot[5].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[0].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[1].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[2].png | Bin ...ndicatorTest_takeLightThemeSnapshot[0].png | Bin ...ndicatorTest_takeLightThemeSnapshot[1].png | Bin ...ndicatorTest_takeLightThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[0].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[10].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[11].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[12].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[13].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[14].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[15].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[16].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[17].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[18].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[19].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[1].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[20].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[21].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[22].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[23].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[24].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[25].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[3].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[4].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[5].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[6].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[7].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[8].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[9].png | Bin ...loredBoxTest_takeLightThemeSnapshot[0].png | Bin ...oredBoxTest_takeLightThemeSnapshot[10].png | Bin ...oredBoxTest_takeLightThemeSnapshot[11].png | Bin ...oredBoxTest_takeLightThemeSnapshot[12].png | Bin ...oredBoxTest_takeLightThemeSnapshot[13].png | Bin ...oredBoxTest_takeLightThemeSnapshot[14].png | Bin ...oredBoxTest_takeLightThemeSnapshot[15].png | Bin ...oredBoxTest_takeLightThemeSnapshot[16].png | Bin ...oredBoxTest_takeLightThemeSnapshot[17].png | Bin ...oredBoxTest_takeLightThemeSnapshot[18].png | Bin ...oredBoxTest_takeLightThemeSnapshot[19].png | Bin ...loredBoxTest_takeLightThemeSnapshot[1].png | Bin ...oredBoxTest_takeLightThemeSnapshot[20].png | Bin ...oredBoxTest_takeLightThemeSnapshot[21].png | Bin ...oredBoxTest_takeLightThemeSnapshot[22].png | Bin ...oredBoxTest_takeLightThemeSnapshot[23].png | Bin ...oredBoxTest_takeLightThemeSnapshot[24].png | Bin ...oredBoxTest_takeLightThemeSnapshot[25].png | Bin ...loredBoxTest_takeLightThemeSnapshot[2].png | Bin ...loredBoxTest_takeLightThemeSnapshot[3].png | Bin ...loredBoxTest_takeLightThemeSnapshot[4].png | Bin ...loredBoxTest_takeLightThemeSnapshot[5].png | Bin ...loredBoxTest_takeLightThemeSnapshot[6].png | Bin ...loredBoxTest_takeLightThemeSnapshot[7].png | Bin ...loredBoxTest_takeLightThemeSnapshot[8].png | Bin ...loredBoxTest_takeLightThemeSnapshot[9].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[2].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[3].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[4].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[5].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[6].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[7].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[8].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[2].png | Bin ...t$Horizontal_takeLightThemeSnapshot[3].png | Bin ...t$Horizontal_takeLightThemeSnapshot[4].png | Bin ...t$Horizontal_takeLightThemeSnapshot[5].png | Bin ...t$Horizontal_takeLightThemeSnapshot[6].png | Bin ...t$Horizontal_takeLightThemeSnapshot[7].png | Bin ...t$Horizontal_takeLightThemeSnapshot[8].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[0].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[1].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[2].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[3].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[4].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[5].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[6].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[7].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[8].png | Bin ...est$Vertical_takeLightThemeSnapshot[0].png | Bin ...est$Vertical_takeLightThemeSnapshot[1].png | Bin ...est$Vertical_takeLightThemeSnapshot[2].png | Bin ...est$Vertical_takeLightThemeSnapshot[3].png | Bin ...est$Vertical_takeLightThemeSnapshot[4].png | Bin ...est$Vertical_takeLightThemeSnapshot[5].png | Bin ...est$Vertical_takeLightThemeSnapshot[6].png | Bin ...est$Vertical_takeLightThemeSnapshot[7].png | Bin ...est$Vertical_takeLightThemeSnapshot[8].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...pTest$Default_takeDarkThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[4].png | Bin ...pTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Extended_takeDarkThemeSnapshot[0].png | Bin ...Test$Extended_takeDarkThemeSnapshot[1].png | Bin ...est$Extended_takeLightThemeSnapshot[0].png | Bin ...est$Extended_takeLightThemeSnapshot[1].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[1].png | Bin ...onTest$Large_takeLightThemeSnapshot[0].png | Bin ...onTest$Large_takeLightThemeSnapshot[1].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[1].png | Bin ...onTest$Small_takeLightThemeSnapshot[0].png | Bin ...onTest$Small_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...OudsInputTagTest_takeDarkThemeSnapshot.png | Bin ...udsInputTagTest_takeLightThemeSnapshot.png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...hLongHelperText_takeLightThemeSnapshot.png | Bin ...kTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...kTest$Default_takeDarkThemeSnapshot[1].png | Bin ...kTest$Default_takeDarkThemeSnapshot[2].png | Bin ...kTest$Default_takeDarkThemeSnapshot[3].png | Bin ...kTest$Default_takeDarkThemeSnapshot[4].png | Bin ...kTest$Default_takeDarkThemeSnapshot[5].png | Bin ...kTest$Default_takeDarkThemeSnapshot[6].png | Bin ...kTest$Default_takeDarkThemeSnapshot[7].png | Bin ...kTest$Default_takeDarkThemeSnapshot[8].png | Bin ...kTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...lBottomSheetTest_takeDarkThemeSnapshot.png | Bin ...BottomSheetTest_takeLightThemeSnapshot.png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...rizontalItems_takeDarkThemeSnapshot[0].png | Bin ...rizontalItems_takeDarkThemeSnapshot[1].png | Bin ...izontalItems_takeLightThemeSnapshot[0].png | Bin ...izontalItems_takeLightThemeSnapshot[1].png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeDarkThemeSnapshot[30].png | Bin ...Test$Default_takeDarkThemeSnapshot[31].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$Default_takeLightThemeSnapshot[30].png | Bin ...est$Default_takeLightThemeSnapshot[31].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...undedCorners_takeLightThemeSnapshot[0].png | Bin ...undedCorners_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[0].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[1].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[2].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ...ioButtonTest_takeLightThemeSnapshot[0].png | Bin ...ioButtonTest_takeLightThemeSnapshot[1].png | Bin ...ioButtonTest_takeLightThemeSnapshot[2].png | Bin ...ioButtonTest_takeLightThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[0].png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[1].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[0].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[0].png | Bin ...gTest$Default_takeDarkThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[2].png | Bin ...gTest$Default_takeDarkThemeSnapshot[3].png | Bin ...gTest$Default_takeDarkThemeSnapshot[4].png | Bin ...gTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t$AutoResize_takeLightThemeSnapshot[0].png | Bin ...t$AutoResize_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[0].png | Bin ...aTest$Default_takeDarkThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[2].png | Bin ...aTest$Default_takeDarkThemeSnapshot[3].png | Bin ...aTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithLongLabels_takeLightThemeSnapshot.png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ntedLeadingIcon_takeLightThemeSnapshot.png | Bin ...CenterAligned_takeDarkThemeSnapshot[0].png | Bin ...CenterAligned_takeDarkThemeSnapshot[1].png | Bin ...CenterAligned_takeDarkThemeSnapshot[2].png | Bin ...enterAligned_takeLightThemeSnapshot[0].png | Bin ...enterAligned_takeLightThemeSnapshot[1].png | Bin ...enterAligned_takeLightThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[0].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[1].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[2].png | Bin ...arTest$Large_takeLightThemeSnapshot[0].png | Bin ...arTest$Large_takeLightThemeSnapshot[1].png | Bin ...arTest$Large_takeLightThemeSnapshot[2].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[0].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[1].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[2].png | Bin ...rTest$Medium_takeLightThemeSnapshot[0].png | Bin ...rTest$Medium_takeLightThemeSnapshot[1].png | Bin ...rTest$Medium_takeLightThemeSnapshot[2].png | Bin 612 files changed, 75 insertions(+), 3 deletions(-) rename core/src/{androidUnitTest => androidHostTest}/kotlin/com/orange/ouds/core/component/OudsAvatarTest.kt (100%) rename core/src/{androidUnitTest => androidHostTest}/kotlin/com/orange/ouds/core/component/OudsBadgedIconTest.kt (100%) rename core/src/{androidUnitTest => androidHostTest}/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt (100%) rename core/src/{androidUnitTest => androidHostTest}/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png (100%) rename core/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/kotlin/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png (100%) rename theme-wireframe/src/{androidUnitTest => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png (100%) diff --git a/core-test/src/main/java/com/orange/ouds/core/test/OudsSnapshotTest.kt b/core-test/src/main/java/com/orange/ouds/core/test/OudsSnapshotTest.kt index dc51a2c439..f706562892 100644 --- a/core-test/src/main/java/com/orange/ouds/core/test/OudsSnapshotTest.kt +++ b/core-test/src/main/java/com/orange/ouds/core/test/OudsSnapshotTest.kt @@ -17,7 +17,9 @@ import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.ui.platform.LocalInspectionMode import androidx.compose.ui.tooling.preview.Devices import app.cash.paparazzi.DeviceConfig +import app.cash.paparazzi.Environment import app.cash.paparazzi.Paparazzi +import app.cash.paparazzi.detectEnvironment import com.android.ide.common.rendering.api.SessionParams import com.orange.ouds.core.utilities.OudsPreviewDevice import com.orange.ouds.theme.OudsThemeContract @@ -68,6 +70,7 @@ abstract class OudsSnapshotTest(val theme: OudsThemeContract, widthDp: Int = -1, @get:Rule val paparazzi = Paparazzi( + environment = detectEnvironment().filterResources(), renderingMode = SessionParams.RenderingMode.SHRINK, deviceConfig = with(deviceConfig) { val width = if (widthDp > 0) (widthDp * density.dpiValue / 160f).toInt() else screenWidth @@ -123,3 +126,18 @@ abstract class OudsSnapshotTest(val theme: OudsThemeContract, widthDp: Int = -1, } } } + +private fun Environment.filterResources(): Environment { + return copy( + resourcePackageNames = resourcePackageNames.filter { packageName -> + val resourceName = "$packageName.R" + try { + Class.forName(resourceName) + true + } catch (_: ClassNotFoundException) { + println("Skipping resource '$resourceName': not found in classpath. Test should proceed without any problem.") + false + } + } + ) +} \ No newline at end of file diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 1c6f78b70b..909e6cafab 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -44,6 +44,8 @@ kotlin { androidResources.enable = true withHostTestBuilder { + }.configure { + isIncludeAndroidResources = true } withDeviceTestBuilder { @@ -131,10 +133,11 @@ kotlin { } } - androidUnitTest { + getByName("androidHostTest") { dependencies { implementation(project(":core-test")) //testImplementation(project(":theme-orange")) + implementation(project(":theme-wireframe")) } } @@ -145,6 +148,7 @@ kotlin { // implementation(libs.core) //androidTestImplementation(project(":theme-orange")) + implementation(project(":theme-wireframe")) implementation(libs.androidx.compose.ui.test.junit4) implementation(libs.kotlin.reflect) implementation(libs.mockito.android) @@ -182,3 +186,10 @@ kotlin { // ) // } //} + +// Configure test tasks to use Java 21 for Paparazzi +tasks.withType().configureEach { + javaLauncher.set(javaToolchains.launcherFor { + languageVersion.set(JavaLanguageVersion.of(21)) + }) +} diff --git a/core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsAvatarTest.kt b/core/src/androidHostTest/kotlin/com/orange/ouds/core/component/OudsAvatarTest.kt similarity index 100% rename from core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsAvatarTest.kt rename to core/src/androidHostTest/kotlin/com/orange/ouds/core/component/OudsAvatarTest.kt diff --git a/core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsBadgedIconTest.kt b/core/src/androidHostTest/kotlin/com/orange/ouds/core/component/OudsBadgedIconTest.kt similarity index 100% rename from core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsBadgedIconTest.kt rename to core/src/androidHostTest/kotlin/com/orange/ouds/core/component/OudsBadgedIconTest.kt diff --git a/core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt b/core/src/androidHostTest/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt similarity index 100% rename from core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt rename to core/src/androidHostTest/kotlin/com/orange/ouds/core/component/OudsDigitInputTest.kt diff --git a/core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt b/core/src/androidHostTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt similarity index 100% rename from core/src/androidUnitTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt rename to core/src/androidHostTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[0].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeDarkThemeSnapshot[1].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[0].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsAvatarTest_takeLightThemeSnapshot[1].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[0].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[1].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[2].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[3].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeDarkThemeSnapshot[4].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[0].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[1].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[2].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[3].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsBadgedIconTest_takeLightThemeSnapshot[4].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[4].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeDarkThemeSnapshot[5].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[4].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$Default_takeLightThemeSnapshot[5].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png diff --git a/core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png b/core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png similarity index 100% rename from core/src/androidUnitTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png rename to core/src/androidHostTest/snapshots/images/com.orange.ouds.core.component_OudsDigitInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/build.gradle.kts b/theme-wireframe/build.gradle.kts index 14e679b01d..28413050a9 100644 --- a/theme-wireframe/build.gradle.kts +++ b/theme-wireframe/build.gradle.kts @@ -1,3 +1,6 @@ +import groovy.json.JsonOutput +import groovy.json.JsonSlurper + /* * Software Name: OUDS Android * SPDX-FileCopyrightText: Copyright (c) Orange SA @@ -47,6 +50,8 @@ kotlin { androidResources.enable = true withHostTestBuilder { + }.configure { + isIncludeAndroidResources = true } withDeviceTestBuilder { @@ -100,10 +105,9 @@ kotlin { } } - androidUnitTest { + commonTest { dependencies { implementation(libs.kotlin.test) - implementation(project(":core-test")) } } @@ -115,6 +119,12 @@ kotlin { } } + getByName("androidHostTest") { + dependencies { + implementation(project(":core-test")) + } + } + getByName("androidDeviceTest") { dependencies { implementation(libs.androidx.junit) @@ -134,3 +144,36 @@ kotlin { } } } + +// Configure test tasks to use Java 21 for Paparazzi +tasks.withType().configureEach { + javaLauncher.set(javaToolchains.launcherFor { + languageVersion.set(JavaLanguageVersion.of(21)) + }) +} + +// Fix for Paparazzi not finding Compose Multiplatform resources from transitive dependencies in androidHostTest +// Issue: https://github.com/cashapp/paparazzi/issues/1060 +// This configuration adds the androidHostTest assets directory to Paparazzi's resource configuration +afterEvaluate { + tasks.matching { it.name.startsWith("preparePaparazzi") }.configureEach { + doLast { + val resourcesJsonFile = file("build/intermediates/paparazzi/androidMain/resources.json") + if (resourcesJsonFile.exists()) { + @Suppress("UNCHECKED_CAST") + val json = JsonSlurper().parseText(resourcesJsonFile.readText()) as Map + + @Suppress("UNCHECKED_CAST") + val projectAssetDirs = json["projectAssetDirs"] as MutableList + + // Add the androidHostTest merged assets directory where core module's Compose resources are located + val androidHostTestAssetsDir = "build/intermediates/assets/androidHostTest/mergeAndroidHostTestAssets" + if (!projectAssetDirs.contains(androidHostTestAssetsDir)) { + projectAssetDirs.add(androidHostTestAssetsDir) + resourcesJsonFile.writeText(JsonOutput.prettyPrint(JsonOutput.toJson(json))) + logger.lifecycle("Added androidHostTest assets directory to Paparazzi resources configuration.") + } + } + } + } +} diff --git a/theme-wireframe/src/androidUnitTest/kotlin/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt b/theme-wireframe/src/androidHostTest/kotlin/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt similarity index 100% rename from theme-wireframe/src/androidUnitTest/kotlin/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt rename to theme-wireframe/src/androidHostTest/kotlin/com/orange/ouds/theme/wireframe/WireframeComponentTestSuite.kt diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png diff --git a/theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png b/theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-wireframe/src/androidUnitTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png rename to theme-wireframe/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png From bfb4ddab4c2dac371b4571c734178aadf3484fe9 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Thu, 2 Jul 2026 18:23:33 +0200 Subject: [PATCH 10/18] Migrate theme-sosh to KMP --- app/build.gradle.kts | 2 +- .../java/com/orange/ouds/app/ui/ThemeState.kt | 6 +- .../ui/utilities/ThemeDrawableResources.kt | 27 +-- settings.gradle.kts | 2 +- theme-sosh/build.gradle.kts | 180 +++++++++++++++--- .../ouds/theme/sosh/SoshComponentTestSuite.kt | 0 ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...eTest$Default_takeDarkThemeSnapshot[3].png | Bin ...eTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[0].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[1].png | Bin ...est$WithIcon_takeLightThemeSnapshot[0].png | Bin ...est$WithIcon_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...heetScaffoldTest_takeDarkThemeSnapshot.png | Bin ...eetScaffoldTest_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[0].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[1].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithIconBadge_takeLightThemeSnapshot[0].png | Bin ...ithIconBadge_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...t_takeDarkThemeHighContrastSnapshot[4].png | Bin ...t_takeDarkThemeHighContrastSnapshot[5].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[0].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[1].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[2].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[3].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[4].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[5].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[4].png | Bin ..._takeLightThemeHighContrastSnapshot[5].png | Bin ...CheckboxTest_takeLightThemeSnapshot[0].png | Bin ...CheckboxTest_takeLightThemeSnapshot[1].png | Bin ...CheckboxTest_takeLightThemeSnapshot[2].png | Bin ...CheckboxTest_takeLightThemeSnapshot[3].png | Bin ...CheckboxTest_takeLightThemeSnapshot[4].png | Bin ...CheckboxTest_takeLightThemeSnapshot[5].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[0].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[1].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[2].png | Bin ...ndicatorTest_takeLightThemeSnapshot[0].png | Bin ...ndicatorTest_takeLightThemeSnapshot[1].png | Bin ...ndicatorTest_takeLightThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[0].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[10].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[11].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[12].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[13].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[14].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[15].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[16].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[17].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[18].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[19].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[1].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[20].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[21].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[22].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[23].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[24].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[25].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[3].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[4].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[5].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[6].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[7].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[8].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[9].png | Bin ...loredBoxTest_takeLightThemeSnapshot[0].png | Bin ...oredBoxTest_takeLightThemeSnapshot[10].png | Bin ...oredBoxTest_takeLightThemeSnapshot[11].png | Bin ...oredBoxTest_takeLightThemeSnapshot[12].png | Bin ...oredBoxTest_takeLightThemeSnapshot[13].png | Bin ...oredBoxTest_takeLightThemeSnapshot[14].png | Bin ...oredBoxTest_takeLightThemeSnapshot[15].png | Bin ...oredBoxTest_takeLightThemeSnapshot[16].png | Bin ...oredBoxTest_takeLightThemeSnapshot[17].png | Bin ...oredBoxTest_takeLightThemeSnapshot[18].png | Bin ...oredBoxTest_takeLightThemeSnapshot[19].png | Bin ...loredBoxTest_takeLightThemeSnapshot[1].png | Bin ...oredBoxTest_takeLightThemeSnapshot[20].png | Bin ...oredBoxTest_takeLightThemeSnapshot[21].png | Bin ...oredBoxTest_takeLightThemeSnapshot[22].png | Bin ...oredBoxTest_takeLightThemeSnapshot[23].png | Bin ...oredBoxTest_takeLightThemeSnapshot[24].png | Bin ...oredBoxTest_takeLightThemeSnapshot[25].png | Bin ...loredBoxTest_takeLightThemeSnapshot[2].png | Bin ...loredBoxTest_takeLightThemeSnapshot[3].png | Bin ...loredBoxTest_takeLightThemeSnapshot[4].png | Bin ...loredBoxTest_takeLightThemeSnapshot[5].png | Bin ...loredBoxTest_takeLightThemeSnapshot[6].png | Bin ...loredBoxTest_takeLightThemeSnapshot[7].png | Bin ...loredBoxTest_takeLightThemeSnapshot[8].png | Bin ...loredBoxTest_takeLightThemeSnapshot[9].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[2].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[3].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[4].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[5].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[6].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[7].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[8].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[2].png | Bin ...t$Horizontal_takeLightThemeSnapshot[3].png | Bin ...t$Horizontal_takeLightThemeSnapshot[4].png | Bin ...t$Horizontal_takeLightThemeSnapshot[5].png | Bin ...t$Horizontal_takeLightThemeSnapshot[6].png | Bin ...t$Horizontal_takeLightThemeSnapshot[7].png | Bin ...t$Horizontal_takeLightThemeSnapshot[8].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[0].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[1].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[2].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[3].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[4].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[5].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[6].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[7].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[8].png | Bin ...est$Vertical_takeLightThemeSnapshot[0].png | Bin ...est$Vertical_takeLightThemeSnapshot[1].png | Bin ...est$Vertical_takeLightThemeSnapshot[2].png | Bin ...est$Vertical_takeLightThemeSnapshot[3].png | Bin ...est$Vertical_takeLightThemeSnapshot[4].png | Bin ...est$Vertical_takeLightThemeSnapshot[5].png | Bin ...est$Vertical_takeLightThemeSnapshot[6].png | Bin ...est$Vertical_takeLightThemeSnapshot[7].png | Bin ...est$Vertical_takeLightThemeSnapshot[8].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...pTest$Default_takeDarkThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[4].png | Bin ...pTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Extended_takeDarkThemeSnapshot[0].png | Bin ...Test$Extended_takeDarkThemeSnapshot[1].png | Bin ...est$Extended_takeLightThemeSnapshot[0].png | Bin ...est$Extended_takeLightThemeSnapshot[1].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[1].png | Bin ...onTest$Large_takeLightThemeSnapshot[0].png | Bin ...onTest$Large_takeLightThemeSnapshot[1].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[1].png | Bin ...onTest$Small_takeLightThemeSnapshot[0].png | Bin ...onTest$Small_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...OudsInputTagTest_takeDarkThemeSnapshot.png | Bin ...udsInputTagTest_takeLightThemeSnapshot.png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...hLongHelperText_takeLightThemeSnapshot.png | Bin ...kTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...kTest$Default_takeDarkThemeSnapshot[1].png | Bin ...kTest$Default_takeDarkThemeSnapshot[2].png | Bin ...kTest$Default_takeDarkThemeSnapshot[3].png | Bin ...kTest$Default_takeDarkThemeSnapshot[4].png | Bin ...kTest$Default_takeDarkThemeSnapshot[5].png | Bin ...kTest$Default_takeDarkThemeSnapshot[6].png | Bin ...kTest$Default_takeDarkThemeSnapshot[7].png | Bin ...kTest$Default_takeDarkThemeSnapshot[8].png | Bin ...kTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...lBottomSheetTest_takeDarkThemeSnapshot.png | Bin ...BottomSheetTest_takeLightThemeSnapshot.png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...rizontalItems_takeDarkThemeSnapshot[0].png | Bin ...rizontalItems_takeDarkThemeSnapshot[1].png | Bin ...izontalItems_takeLightThemeSnapshot[0].png | Bin ...izontalItems_takeLightThemeSnapshot[1].png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeDarkThemeSnapshot[30].png | Bin ...Test$Default_takeDarkThemeSnapshot[31].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$Default_takeLightThemeSnapshot[30].png | Bin ...est$Default_takeLightThemeSnapshot[31].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...undedCorners_takeLightThemeSnapshot[0].png | Bin ...undedCorners_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[0].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[1].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[2].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ...ioButtonTest_takeLightThemeSnapshot[0].png | Bin ...ioButtonTest_takeLightThemeSnapshot[1].png | Bin ...ioButtonTest_takeLightThemeSnapshot[2].png | Bin ...ioButtonTest_takeLightThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[0].png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[1].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[0].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[0].png | Bin ...gTest$Default_takeDarkThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[2].png | Bin ...gTest$Default_takeDarkThemeSnapshot[3].png | Bin ...gTest$Default_takeDarkThemeSnapshot[4].png | Bin ...gTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t$AutoResize_takeLightThemeSnapshot[0].png | Bin ...t$AutoResize_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[0].png | Bin ...aTest$Default_takeDarkThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[2].png | Bin ...aTest$Default_takeDarkThemeSnapshot[3].png | Bin ...aTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithLongLabels_takeLightThemeSnapshot.png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ntedLeadingIcon_takeLightThemeSnapshot.png | Bin ...CenterAligned_takeDarkThemeSnapshot[0].png | Bin ...CenterAligned_takeDarkThemeSnapshot[1].png | Bin ...CenterAligned_takeDarkThemeSnapshot[2].png | Bin ...enterAligned_takeLightThemeSnapshot[0].png | Bin ...enterAligned_takeLightThemeSnapshot[1].png | Bin ...enterAligned_takeLightThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[0].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[1].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[2].png | Bin ...arTest$Large_takeLightThemeSnapshot[0].png | Bin ...arTest$Large_takeLightThemeSnapshot[1].png | Bin ...arTest$Large_takeLightThemeSnapshot[2].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[0].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[1].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[2].png | Bin ...rTest$Medium_takeLightThemeSnapshot[0].png | Bin ...rTest$Medium_takeLightThemeSnapshot[1].png | Bin ...rTest$Medium_takeLightThemeSnapshot[2].png | Bin .../{main => androidMain}/AndroidManifest.xml | 0 ...osh_communication_accessibility_vision.xml | 0 ...cation_security_and_safety_lock_closed.xml | 0 ...ic_sosh_component_alert_important_fill.xml | 0 .../ic_sosh_component_alert_info_fill.xml | 0 ...component_alert_tick_confirmation_fill.xml | 0 ...component_alert_warning_external_shape.xml | 0 ...component_alert_warning_internal_shape.xml | 0 ...c_sosh_component_badge_icon_error_fill.xml | 0 ...ic_sosh_component_badge_icon_info_fill.xml | 0 ...nent_badge_icon_tick_confirmation_fill.xml | 0 ...nent_badge_icon_warning_external_shape.xml | 0 ...nent_badge_icon_warning_internal_shape.xml | 0 .../ic_sosh_component_bullet_list_level0.xml | 0 .../ic_sosh_component_bullet_list_level1.xml | 0 .../ic_sosh_component_bullet_list_level2.xml | 0 .../ic_sosh_component_bullet_list_tick.xml | 0 .../ic_sosh_component_button_expurge.xml | 0 .../ic_sosh_component_button_next.xml | 0 .../ic_sosh_component_button_previous.xml | 0 .../ic_sosh_component_checkbox_selected.xml | 0 ...c_sosh_component_checkbox_undetermined.xml | 0 .../drawable/ic_sosh_component_chip_tick.xml | 0 .../drawable/ic_sosh_component_link_next.xml | 0 .../ic_sosh_component_link_previous.xml | 0 ...c_sosh_component_radio_button_selected.xml | 0 ..._sosh_component_switch_selected_switch.xml | 0 .../drawable/ic_sosh_component_tag_close.xml | 0 ..._functional_actions_delete_cross_round.xml | 0 ...unctional_navigation_form_chevron_left.xml | 0 ...nctional_navigation_menu_grid_ui_round.xml | 0 ..._settings_and_tools_accessibility_hide.xml | 0 ..._social_and_engagement_heart_recommend.xml | 0 .../composeResources}/font/sosh_black.ttf | Bin .../composeResources}/font/sosh_bold.ttf | Bin .../composeResources}/font/sosh_medium.ttf | Bin .../composeResources}/font/sosh_regular.ttf | Bin .../composeResources}/font/sosh_thin.ttf | Bin .../ouds/theme/sosh/SoshDrawableResources.kt | 159 ++++++++++++++++ .../com/orange/ouds/theme/sosh/SoshTheme.kt | 26 ++- .../sosh/tokens/components/SoshAlertTokens.kt | 0 .../sosh/tokens/components/SoshBadgeTokens.kt | 0 .../sosh/tokens/components/SoshBarTokens.kt | 0 .../tokens/components/SoshBulletListTokens.kt | 0 .../tokens/components/SoshButtonMonoTokens.kt | 0 .../tokens/components/SoshButtonTokens.kt | 0 .../tokens/components/SoshCheckboxTokens.kt | 0 .../sosh/tokens/components/SoshChipTokens.kt | 0 .../tokens/components/SoshComponentsTokens.kt | 0 .../components/SoshControlItemTokens.kt | 0 .../tokens/components/SoshDividerTokens.kt | 0 .../sosh/tokens/components/SoshIconTokens.kt | 0 .../tokens/components/SoshInputTagTokens.kt | 0 .../tokens/components/SoshLinkMonoTokens.kt | 0 .../sosh/tokens/components/SoshLinkTokens.kt | 0 .../components/SoshPinCodeInputTokens.kt | 0 .../components/SoshProgressIndicatorTokens.kt | 0 .../components/SoshRadioButtonTokens.kt | 0 .../tokens/components/SoshSwitchTokens.kt | 0 .../sosh/tokens/components/SoshTagTokens.kt | 0 .../tokens/components/SoshTextAreaTokens.kt | 0 .../tokens/components/SoshTextInputTokens.kt | 0 .../material/SoshMaterialColorTokens.kt | 0 .../sosh/tokens/raw/SoshColorRawTokens.kt | 0 .../semantic/SoshBorderSemanticTokens.kt | 0 .../semantic/SoshColorActionSemanticTokens.kt | 0 .../semantic/SoshColorAlwaysSemanticTokens.kt | 0 .../semantic/SoshColorBgSemanticTokens.kt | 0 .../semantic/SoshColorBorderSemanticTokens.kt | 0 .../SoshColorContentSemanticTokens.kt | 0 .../semantic/SoshColorModeSemanticTokens.kt | 0 .../SoshColorOpacitySemanticTokens.kt | 0 .../SoshColorOverlaySemanticTokens.kt | 0 .../SoshColorRepositorySemanticTokens.kt | 0 .../semantic/SoshColorSemanticTokens.kt | 0 .../SoshColorSurfaceSemanticTokens.kt | 0 .../semantic/SoshEffectSemanticTokens.kt | 0 .../semantic/SoshElevationSemanticTokens.kt | 0 .../tokens/semantic/SoshFontSemanticTokens.kt | 0 .../tokens/semantic/SoshGridSemanticTokens.kt | 0 .../semantic/SoshOpacitySemanticTokens.kt | 0 .../tokens/semantic/SoshSizeSemanticTokens.kt | 0 .../semantic/SoshSpaceSemanticTokens.kt | 0 .../ouds/theme/sosh/SoshDrawableResources.kt | 126 ------------ 666 files changed, 346 insertions(+), 182 deletions(-) rename theme-sosh/src/{test/java => androidHostTest/kotlin}/com/orange/ouds/theme/sosh/SoshComponentTestSuite.kt (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png (100%) rename theme-sosh/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png (100%) rename theme-sosh/src/{main => androidMain}/AndroidManifest.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_communication_accessibility_vision.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_communication_security_and_safety_lock_closed.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_alert_important_fill.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_alert_info_fill.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_alert_tick_confirmation_fill.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_alert_warning_external_shape.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_alert_warning_internal_shape.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_badge_icon_error_fill.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_badge_icon_info_fill.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_badge_icon_tick_confirmation_fill.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_badge_icon_warning_external_shape.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_badge_icon_warning_internal_shape.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_bullet_list_level0.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_bullet_list_level1.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_bullet_list_level2.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_bullet_list_tick.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_button_expurge.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_button_next.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_button_previous.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_checkbox_selected.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_checkbox_undetermined.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_chip_tick.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_link_next.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_link_previous.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_radio_button_selected.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_switch_selected_switch.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_component_tag_close.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_functional_actions_delete_cross_round.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_functional_navigation_form_chevron_left.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_functional_navigation_menu_grid_ui_round.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_functional_settings_and_tools_accessibility_hide.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/drawable/ic_sosh_functional_social_and_engagement_heart_recommend.xml (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/font/sosh_black.ttf (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/font/sosh_bold.ttf (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/font/sosh_medium.ttf (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/font/sosh_regular.ttf (100%) rename theme-sosh/src/{main/res => commonMain/composeResources}/font/sosh_thin.ttf (100%) create mode 100644 theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/SoshDrawableResources.kt rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/SoshTheme.kt (79%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshAlertTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshBadgeTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshBarTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshBulletListTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshButtonMonoTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshCheckboxTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshChipTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshControlItemTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshDividerTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshIconTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshInputTagTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshLinkMonoTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshLinkTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshPinCodeInputTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshRadioButtonTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshSwitchTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshTagTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshTextAreaTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/components/SoshTextInputTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/material/SoshMaterialColorTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/raw/SoshColorRawTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshBorderSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorActionSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorAlwaysSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBgSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBorderSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorContentSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorModeSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOpacitySemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOverlaySemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorRepositorySemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSurfaceSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshEffectSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshElevationSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshFontSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshGridSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshOpacitySemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt (100%) rename theme-sosh/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/sosh/tokens/semantic/SoshSpaceSemanticTokens.kt (100%) delete mode 100644 theme-sosh/src/main/java/com/orange/ouds/theme/sosh/SoshDrawableResources.kt diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 3718747337..65926215b6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -121,7 +121,7 @@ dependencies { implementation(project(":foundation")) // implementation(project(":theme-orange")) // implementation(project(":theme-orange-compact")) -// implementation(project(":theme-sosh")) + implementation(project(":theme-sosh")) implementation(project(":theme-wireframe")) implementation(libs.androidx.activity.compose) diff --git a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt index 552a29ffd7..65d3e656b8 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt @@ -21,6 +21,8 @@ import androidx.compose.runtime.setValue import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings +import com.orange.ouds.theme.sosh.SOSH_THEME_NAME +import com.orange.ouds.theme.sosh.SoshTheme //import com.orange.ouds.theme.orange.ORANGE_THEME_NAME //import com.orange.ouds.theme.orange.OrangeFontFamily //import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic @@ -39,7 +41,7 @@ fun rememberThemeState( themeNames: List = listOf( // ORANGE_THEME_NAME, // ORANGE_COMPACT_THEME_NAME, -// SOSH_THEME_NAME, + SOSH_THEME_NAME, WIREFRAME_THEME_NAME ), currentThemeName: String = WIREFRAME_THEME_NAME,//ORANGE_THEME_NAME, @@ -130,7 +132,7 @@ class ThemeState( // roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, // roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } // ) -// SOSH_THEME_NAME -> SoshTheme() + SOSH_THEME_NAME -> SoshTheme() WIREFRAME_THEME_NAME -> WireframeTheme() else -> null } diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt index df55a09dd0..49fe0aa703 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt @@ -16,6 +16,7 @@ import androidx.annotation.DrawableRes import androidx.compose.runtime.staticCompositionLocalOf import com.orange.ouds.app.R import com.orange.ouds.theme.OudsThemeContract +import com.orange.ouds.theme.sosh.SoshTheme //import com.orange.ouds.theme.orange.OrangeTheme //import com.orange.ouds.theme.orangecompact.OrangeCompactTheme //import com.orange.ouds.theme.sosh.SoshTheme @@ -30,7 +31,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_avatar -// is SoshTheme -> R.drawable.ic_sosh_avatar + is SoshTheme -> R.drawable.ic_sosh_avatar is WireframeTheme -> R.drawable.ic_wireframe_avatar else -> error(ThemeDrawableResources::avatar) } @@ -39,7 +40,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_call -// is SoshTheme -> R.drawable.ic_sosh_call + is SoshTheme -> R.drawable.ic_sosh_call is WireframeTheme -> R.drawable.ic_wireframe_call else -> error(ThemeDrawableResources::call) } @@ -48,7 +49,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_filters -// is SoshTheme -> R.drawable.ic_sosh_filters + is SoshTheme -> R.drawable.ic_sosh_filters is WireframeTheme -> R.drawable.ic_wireframe_filters else -> error(ThemeDrawableResources::filters) } @@ -57,7 +58,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_form_chevron_down -// is SoshTheme -> R.drawable.ic_sosh_form_chevron_down + is SoshTheme -> R.drawable.ic_sosh_form_chevron_down is WireframeTheme -> R.drawable.ic_wireframe_form_chevron_down else -> error(ThemeDrawableResources::formChevronDown) } @@ -66,7 +67,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_home -// is SoshTheme -> R.drawable.ic_sosh_home + is SoshTheme -> R.drawable.ic_sosh_home is WireframeTheme -> R.drawable.ic_wireframe_home else -> error(ThemeDrawableResources::home) } @@ -75,7 +76,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_info -// is SoshTheme -> R.drawable.ic_sosh_info + is SoshTheme -> R.drawable.ic_sosh_info is WireframeTheme -> R.drawable.ic_wireframe_info else -> error(ThemeDrawableResources::info) } @@ -84,7 +85,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_menu_grid -// is SoshTheme -> R.drawable.ic_sosh_menu_grid + is SoshTheme -> R.drawable.ic_sosh_menu_grid is WireframeTheme -> R.drawable.ic_wireframe_menu_grid else -> error(ThemeDrawableResources::menuGrid) } @@ -93,7 +94,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_notification_alert -// is SoshTheme -> R.drawable.ic_sosh_notification_alert + is SoshTheme -> R.drawable.ic_sosh_notification_alert is WireframeTheme -> R.drawable.ic_wireframe_notification_alert else -> error(ThemeDrawableResources::notificationAlert) } @@ -102,7 +103,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_palette -// is SoshTheme -> R.drawable.ic_sosh_palette + is SoshTheme -> R.drawable.ic_sosh_palette is WireframeTheme -> R.drawable.ic_wireframe_palette else -> error(ThemeDrawableResources::palette) } @@ -111,7 +112,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_settings -// is SoshTheme -> R.drawable.ic_sosh_settings + is SoshTheme -> R.drawable.ic_sosh_settings is WireframeTheme -> R.drawable.ic_wireframe_settings else -> error(ThemeDrawableResources::settings) } @@ -120,7 +121,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_shop -// is SoshTheme -> R.drawable.ic_sosh_shop + is SoshTheme -> R.drawable.ic_sosh_shop is WireframeTheme -> R.drawable.ic_wireframe_shop else -> error(ThemeDrawableResources::shop) } @@ -129,7 +130,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_sms_message -// is SoshTheme -> R.drawable.ic_sosh_sms_message + is SoshTheme -> R.drawable.ic_sosh_sms_message is WireframeTheme -> R.drawable.ic_wireframe_sms_message else -> error(ThemeDrawableResources::smsMessage) } @@ -138,7 +139,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { @DrawableRes get() = when (theme) { // is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_tips_and_tricks -// is SoshTheme -> R.drawable.ic_sosh_tips_and_tricks + is SoshTheme -> R.drawable.ic_sosh_tips_and_tricks is WireframeTheme -> R.drawable.ic_wireframe_tips_and_tricks else -> error(ThemeDrawableResources::tipsAndTricks) } diff --git a/settings.gradle.kts b/settings.gradle.kts index 63ec78e43e..341c90636c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -41,5 +41,5 @@ include(":global-raw-tokens") include(":theme-contract") //include(":theme-orange") //include(":theme-orange-compact") -//include(":theme-sosh") +include(":theme-sosh") include(":theme-wireframe") \ No newline at end of file diff --git a/theme-sosh/build.gradle.kts b/theme-sosh/build.gradle.kts index 98d45f9404..4b4f0418e9 100644 --- a/theme-sosh/build.gradle.kts +++ b/theme-sosh/build.gradle.kts @@ -1,3 +1,6 @@ +import groovy.json.JsonOutput +import groovy.json.JsonSlurper + /* * Software Name: OUDS Android * SPDX-FileCopyrightText: Copyright (c) Orange SA @@ -12,48 +15,165 @@ plugins { id("dokka") - id("library") +// id("library") id("paparazzi") alias(libs.plugins.compose.compiler) - id(libs.plugins.kotlin.parcelize.get().pluginId) // https://github.com/gradle/gradle/issues/20084#issuecomment-1060822638 alias(libs.plugins.paparazzi) + alias(libs.plugins.compose.multiplatform) + id(libs.plugins.kotlin.multiplatform.get().pluginId) + id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) } // Temporary workaround for https://issuetracker.google.com/issues/476936389 -val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) -dokkaKotlinAdapter.apply(project) +//val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) +//dokkaKotlinAdapter.apply(project) -android { - namespace = "com.orange.ouds.theme.sosh" +kotlin { + jvmToolchain(17) - buildFeatures { - compose = true + compilerOptions { + freeCompilerArgs.addAll( + "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", + "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", + "-opt-in=com.orange.ouds.foundation.InternalOudsApi" + ) } - kotlin { - compilerOptions { - freeCompilerArgs.addAll( - "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", - "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", - "-opt-in=com.orange.ouds.foundation.InternalOudsApi" - ) + // Target declarations - add or remove as needed below. These define + // which platforms this KMP module supports. + // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets + android { + namespace = "com.orange.ouds.theme.sosh" + compileSdk = libs.versions.androidCompileSdk.get().toInt() + minSdk = libs.versions.androidMinSdk.get().toInt() + + androidResources.enable = true + + withHostTestBuilder { + }.configure { + isIncludeAndroidResources = true + } + + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } } -} -dependencies { - // TODO Remove the core dependency when https://github.com/cashapp/paparazzi/issues/1060 is fixed - // A few considerations about this fix: - // - The core dependency is needed otherwise core resources are not found during Paparazzi tests - // - We use runtimeOnly instead of implementation otherwise there is a cyclic dependency between core and this module if it is used as the preview theme - // - Moreover, although using runtimeOnly works when launching tests, this leads to a cyclic dependency when launching the linter, - // that's why we only add this dependency when launching Paparazzi tasks - if (gradle.startParameter.taskNames.any { it.contains("paparazzi", ignoreCase = true) }) { - runtimeOnly(project(":core")) + // For iOS targets, this is also where you should + // configure native binary output. For more information, see: + // https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks + + // A step-by-step guide on how to include this library in an XCode + // project can be found here: + // https://developer.android.com/kotlin/multiplatform/migrate + val xcfName = "oudsThemeSosh" + +// iosX64 { +// binaries.framework { +// baseName = xcfName +// } +// } + + iosArm64 { + binaries.framework { + baseName = xcfName + } + } + + iosSimulatorArm64 { + binaries.framework { + baseName = xcfName + } + } + + // Source set declarations. + // Declaring a target automatically creates a source set with the same name. By default, the + // Kotlin Gradle Plugin creates additional source sets that depend on each other, since it is + // common to share sources between related targets. + // See: https://kotlinlang.org/docs/multiplatform-hierarchy.html + sourceSets { + commonMain { + dependencies { + implementation(libs.compose.components.resources) + implementation(libs.kotlin.stdlib) + // Add KMP dependencies here + implementation(project(":foundation")) + implementation(project(":global-raw-tokens")) + implementation(project(":theme-contract")) + } + } + + commonTest { + dependencies { + implementation(libs.kotlin.test) + } + } + + androidMain { + dependencies { + // Add Android-specific dependencies here. Note that this source set depends on + // commonMain by default and will correctly pull the Android artifacts of any KMP + // dependencies declared in commonMain. + } + } + + getByName("androidHostTest") { + dependencies { + implementation(project(":core-test")) + } + } + + getByName("androidDeviceTest") { + dependencies { + implementation(libs.androidx.junit) + implementation(libs.androidx.runner) + implementation(libs.core) + } + } + + iosMain { + dependencies { + // Add iOS-specific dependencies here. This a source set created by Kotlin Gradle + // Plugin (KGP) that each specific iOS target (e.g., iosX64) depends on as + // part of KMP’s default source set hierarchy. Note that this source set depends + // on common by default and will correctly pull the iOS artifacts of any + // KMP dependencies declared in commonMain. + } + } } - implementation(project(":foundation")) - implementation(project(":global-raw-tokens")) - implementation(project(":theme-contract")) +} + +// Configure test tasks to use Java 21 for Paparazzi +tasks.withType().configureEach { + javaLauncher.set(javaToolchains.launcherFor { + languageVersion.set(JavaLanguageVersion.of(21)) + }) +} + +// Fix for Paparazzi not finding Compose Multiplatform resources from transitive dependencies in androidHostTest +// Issue: https://github.com/cashapp/paparazzi/issues/1060 +// This configuration adds the androidHostTest assets directory to Paparazzi's resource configuration +afterEvaluate { + tasks.matching { it.name.startsWith("preparePaparazzi") }.configureEach { + doLast { + val resourcesJsonFile = file("build/intermediates/paparazzi/androidMain/resources.json") + if (resourcesJsonFile.exists()) { + @Suppress("UNCHECKED_CAST") + val json = JsonSlurper().parseText(resourcesJsonFile.readText()) as Map - testImplementation(project(":core-test")) -} \ No newline at end of file + @Suppress("UNCHECKED_CAST") + val projectAssetDirs = json["projectAssetDirs"] as MutableList + + // Add the androidHostTest merged assets directory where core module's Compose resources are located + val androidHostTestAssetsDir = "build/intermediates/assets/androidHostTest/mergeAndroidHostTestAssets" + if (!projectAssetDirs.contains(androidHostTestAssetsDir)) { + projectAssetDirs.add(androidHostTestAssetsDir) + resourcesJsonFile.writeText(JsonOutput.prettyPrint(JsonOutput.toJson(json))) + logger.lifecycle("Added androidHostTest assets directory to Paparazzi resources configuration.") + } + } + } + } +} diff --git a/theme-sosh/src/test/java/com/orange/ouds/theme/sosh/SoshComponentTestSuite.kt b/theme-sosh/src/androidHostTest/kotlin/com/orange/ouds/theme/sosh/SoshComponentTestSuite.kt similarity index 100% rename from theme-sosh/src/test/java/com/orange/ouds/theme/sosh/SoshComponentTestSuite.kt rename to theme-sosh/src/androidHostTest/kotlin/com/orange/ouds/theme/sosh/SoshComponentTestSuite.kt diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png diff --git a/theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png b/theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-sosh/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png rename to theme-sosh/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png diff --git a/theme-sosh/src/main/AndroidManifest.xml b/theme-sosh/src/androidMain/AndroidManifest.xml similarity index 100% rename from theme-sosh/src/main/AndroidManifest.xml rename to theme-sosh/src/androidMain/AndroidManifest.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_communication_accessibility_vision.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_communication_accessibility_vision.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_communication_accessibility_vision.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_communication_accessibility_vision.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_communication_security_and_safety_lock_closed.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_communication_security_and_safety_lock_closed.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_communication_security_and_safety_lock_closed.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_communication_security_and_safety_lock_closed.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_alert_important_fill.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_important_fill.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_alert_important_fill.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_important_fill.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_alert_info_fill.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_info_fill.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_alert_info_fill.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_info_fill.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_alert_tick_confirmation_fill.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_tick_confirmation_fill.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_alert_tick_confirmation_fill.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_tick_confirmation_fill.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_alert_warning_external_shape.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_warning_external_shape.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_alert_warning_external_shape.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_warning_external_shape.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_alert_warning_internal_shape.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_warning_internal_shape.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_alert_warning_internal_shape.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_alert_warning_internal_shape.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_error_fill.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_error_fill.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_error_fill.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_error_fill.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_info_fill.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_info_fill.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_info_fill.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_info_fill.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_tick_confirmation_fill.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_tick_confirmation_fill.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_tick_confirmation_fill.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_tick_confirmation_fill.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_warning_external_shape.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_warning_external_shape.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_warning_external_shape.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_warning_external_shape.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_warning_internal_shape.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_warning_internal_shape.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_badge_icon_warning_internal_shape.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_badge_icon_warning_internal_shape.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_bullet_list_level0.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_bullet_list_level0.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_bullet_list_level0.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_bullet_list_level0.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_bullet_list_level1.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_bullet_list_level1.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_bullet_list_level1.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_bullet_list_level1.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_bullet_list_level2.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_bullet_list_level2.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_bullet_list_level2.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_bullet_list_level2.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_bullet_list_tick.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_bullet_list_tick.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_bullet_list_tick.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_bullet_list_tick.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_button_expurge.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_button_expurge.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_button_expurge.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_button_expurge.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_button_next.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_button_next.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_button_next.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_button_next.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_button_previous.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_button_previous.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_button_previous.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_button_previous.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_checkbox_selected.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_checkbox_selected.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_checkbox_selected.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_checkbox_selected.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_checkbox_undetermined.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_checkbox_undetermined.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_checkbox_undetermined.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_checkbox_undetermined.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_chip_tick.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_chip_tick.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_chip_tick.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_chip_tick.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_link_next.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_link_next.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_link_next.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_link_next.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_link_previous.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_link_previous.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_link_previous.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_link_previous.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_radio_button_selected.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_radio_button_selected.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_radio_button_selected.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_radio_button_selected.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_switch_selected_switch.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_switch_selected_switch.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_switch_selected_switch.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_switch_selected_switch.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_component_tag_close.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_tag_close.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_component_tag_close.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_component_tag_close.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_functional_actions_delete_cross_round.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_actions_delete_cross_round.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_functional_actions_delete_cross_round.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_actions_delete_cross_round.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_functional_navigation_form_chevron_left.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_navigation_form_chevron_left.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_functional_navigation_form_chevron_left.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_navigation_form_chevron_left.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_functional_navigation_menu_grid_ui_round.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_navigation_menu_grid_ui_round.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_functional_navigation_menu_grid_ui_round.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_navigation_menu_grid_ui_round.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_functional_settings_and_tools_accessibility_hide.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_settings_and_tools_accessibility_hide.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_functional_settings_and_tools_accessibility_hide.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_settings_and_tools_accessibility_hide.xml diff --git a/theme-sosh/src/main/res/drawable/ic_sosh_functional_social_and_engagement_heart_recommend.xml b/theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_social_and_engagement_heart_recommend.xml similarity index 100% rename from theme-sosh/src/main/res/drawable/ic_sosh_functional_social_and_engagement_heart_recommend.xml rename to theme-sosh/src/commonMain/composeResources/drawable/ic_sosh_functional_social_and_engagement_heart_recommend.xml diff --git a/theme-sosh/src/main/res/font/sosh_black.ttf b/theme-sosh/src/commonMain/composeResources/font/sosh_black.ttf similarity index 100% rename from theme-sosh/src/main/res/font/sosh_black.ttf rename to theme-sosh/src/commonMain/composeResources/font/sosh_black.ttf diff --git a/theme-sosh/src/main/res/font/sosh_bold.ttf b/theme-sosh/src/commonMain/composeResources/font/sosh_bold.ttf similarity index 100% rename from theme-sosh/src/main/res/font/sosh_bold.ttf rename to theme-sosh/src/commonMain/composeResources/font/sosh_bold.ttf diff --git a/theme-sosh/src/main/res/font/sosh_medium.ttf b/theme-sosh/src/commonMain/composeResources/font/sosh_medium.ttf similarity index 100% rename from theme-sosh/src/main/res/font/sosh_medium.ttf rename to theme-sosh/src/commonMain/composeResources/font/sosh_medium.ttf diff --git a/theme-sosh/src/main/res/font/sosh_regular.ttf b/theme-sosh/src/commonMain/composeResources/font/sosh_regular.ttf similarity index 100% rename from theme-sosh/src/main/res/font/sosh_regular.ttf rename to theme-sosh/src/commonMain/composeResources/font/sosh_regular.ttf diff --git a/theme-sosh/src/main/res/font/sosh_thin.ttf b/theme-sosh/src/commonMain/composeResources/font/sosh_thin.ttf similarity index 100% rename from theme-sosh/src/main/res/font/sosh_thin.ttf rename to theme-sosh/src/commonMain/composeResources/font/sosh_thin.ttf diff --git a/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/SoshDrawableResources.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/SoshDrawableResources.kt new file mode 100644 index 0000000000..4110b7441f --- /dev/null +++ b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/SoshDrawableResources.kt @@ -0,0 +1,159 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.theme.sosh + +import com.orange.ouds.theme.OudsDrawableResources +import ouds_android.theme_sosh.generated.resources.Res +import ouds_android.theme_sosh.generated.resources.ic_sosh_communication_accessibility_vision +import ouds_android.theme_sosh.generated.resources.ic_sosh_communication_security_and_safety_lock_closed +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_alert_important_fill +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_alert_info_fill +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_alert_tick_confirmation_fill +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_alert_warning_external_shape +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_alert_warning_internal_shape +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_badge_icon_error_fill +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_badge_icon_info_fill +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_badge_icon_tick_confirmation_fill +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_badge_icon_warning_external_shape +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_badge_icon_warning_internal_shape +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_bullet_list_level0 +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_bullet_list_level1 +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_bullet_list_level2 +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_bullet_list_tick +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_button_expurge +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_button_next +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_button_previous +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_checkbox_selected +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_checkbox_undetermined +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_chip_tick +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_link_next +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_link_previous +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_radio_button_selected +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_switch_selected_switch +import ouds_android.theme_sosh.generated.resources.ic_sosh_component_tag_close +import ouds_android.theme_sosh.generated.resources.ic_sosh_functional_actions_delete_cross_round +import ouds_android.theme_sosh.generated.resources.ic_sosh_functional_navigation_form_chevron_left +import ouds_android.theme_sosh.generated.resources.ic_sosh_functional_navigation_menu_grid_ui_round +import ouds_android.theme_sosh.generated.resources.ic_sosh_functional_settings_and_tools_accessibility_hide +import ouds_android.theme_sosh.generated.resources.ic_sosh_functional_social_and_engagement_heart_recommend + +internal class SoshDrawableResources : OudsDrawableResources { + override val communication = Communication() + override val component = Component() + override val functional = Functional() + + class Communication : OudsDrawableResources.Communication { + override val accessibility = Accessibility() + override val securityAndSafety = SecurityAndSafety() + + class Accessibility : OudsDrawableResources.Communication.Accessibility { + override val vision = Res.drawable.ic_sosh_communication_accessibility_vision + } + + class SecurityAndSafety : OudsDrawableResources.Communication.SecurityAndSafety { + override val lockClosed = Res.drawable.ic_sosh_communication_security_and_safety_lock_closed + } + } + + class Component : OudsDrawableResources.Component { + override val alert = Alert() + override val badgeIcon = BadgeIcon() + override val bulletList = BulletList() + override val button = Button() + override val checkbox = Checkbox() + override val chip = Chip() + override val link = Link() + override val radioButton = RadioButton() + override val switch = Switch() + override val tag = Tag() + + class Alert : OudsDrawableResources.Component.Alert { + override val importantFill = Res.drawable.ic_sosh_component_alert_important_fill + override val infoFill = Res.drawable.ic_sosh_component_alert_info_fill + override val tickConfirmationFill = Res.drawable.ic_sosh_component_alert_tick_confirmation_fill + override val warningExternalShape = Res.drawable.ic_sosh_component_alert_warning_external_shape + override val warningInternalShape = Res.drawable.ic_sosh_component_alert_warning_internal_shape + } + + class BadgeIcon : OudsDrawableResources.Component.BadgeIcon { + override val errorFill = Res.drawable.ic_sosh_component_badge_icon_error_fill + override val infoFill = Res.drawable.ic_sosh_component_badge_icon_info_fill + override val tickConfirmationFill = Res.drawable.ic_sosh_component_badge_icon_tick_confirmation_fill + override val warningExternalShape = Res.drawable.ic_sosh_component_badge_icon_warning_external_shape + override val warningInternalShape = Res.drawable.ic_sosh_component_badge_icon_warning_internal_shape + } + + class BulletList : OudsDrawableResources.Component.BulletList { + override val level0 = Res.drawable.ic_sosh_component_bullet_list_level0 + override val level1 = Res.drawable.ic_sosh_component_bullet_list_level1 + override val level2 = Res.drawable.ic_sosh_component_bullet_list_level2 + override val tick = Res.drawable.ic_sosh_component_bullet_list_tick + } + + class Button : OudsDrawableResources.Component.Button { + override val expurge = Res.drawable.ic_sosh_component_button_expurge + override val next = Res.drawable.ic_sosh_component_button_next + override val previous = Res.drawable.ic_sosh_component_button_previous + } + + class Checkbox : OudsDrawableResources.Component.Checkbox { + override val selected = Res.drawable.ic_sosh_component_checkbox_selected + override val undetermined = Res.drawable.ic_sosh_component_checkbox_undetermined + } + + class Chip : OudsDrawableResources.Component.Chip { + override val tick = Res.drawable.ic_sosh_component_chip_tick + } + + class Link : OudsDrawableResources.Component.Link { + override val next = Res.drawable.ic_sosh_component_link_next + override val previous = Res.drawable.ic_sosh_component_link_previous + } + + class RadioButton : OudsDrawableResources.Component.RadioButton { + override val selected = Res.drawable.ic_sosh_component_radio_button_selected + } + + class Switch : OudsDrawableResources.Component.Switch { + override val selected = Res.drawable.ic_sosh_component_switch_selected_switch + } + + class Tag : OudsDrawableResources.Component.Tag { + override val close = Res.drawable.ic_sosh_component_tag_close + } + } + + class Functional : OudsDrawableResources.Functional { + override val actions = Actions() + override val navigation = Navigation() + override val settingsAndTools = SettingsAndTools() + override val socialAndEngagement = SocialAndEngagement() + + class Actions : OudsDrawableResources.Functional.Actions { + override val deleteCrossRound = Res.drawable.ic_sosh_functional_actions_delete_cross_round + } + + class Navigation : OudsDrawableResources.Functional.Navigation { + override val formChevronLeft = Res.drawable.ic_sosh_functional_navigation_form_chevron_left + override val menuGridUiRound = Res.drawable.ic_sosh_functional_navigation_menu_grid_ui_round + } + + class SettingsAndTools : OudsDrawableResources.Functional.SettingsAndTools { + override val accessibilityHide = Res.drawable.ic_sosh_functional_settings_and_tools_accessibility_hide + } + + class SocialAndEngagement : OudsDrawableResources.Functional.SocialAndEngagement { + override val heartRecommend = Res.drawable.ic_sosh_functional_social_and_engagement_heart_recommend + } + } +} diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/SoshTheme.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/SoshTheme.kt similarity index 79% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/SoshTheme.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/SoshTheme.kt index 9d9b6baae0..2c0c05db34 100644 --- a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/SoshTheme.kt +++ b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/SoshTheme.kt @@ -12,7 +12,7 @@ package com.orange.ouds.theme.sosh -import androidx.compose.ui.text.font.Font +import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily import androidx.compose.ui.text.font.FontWeight import com.orange.ouds.theme.OudsDrawableResources @@ -40,6 +40,13 @@ import com.orange.ouds.theme.tokens.semantic.OudsGridSemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsOpacitySemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsSizeSemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsSpaceSemanticTokens +import org.jetbrains.compose.resources.Font +import ouds_android.theme_sosh.generated.resources.Res +import ouds_android.theme_sosh.generated.resources.sosh_black +import ouds_android.theme_sosh.generated.resources.sosh_bold +import ouds_android.theme_sosh.generated.resources.sosh_medium +import ouds_android.theme_sosh.generated.resources.sosh_regular +import ouds_android.theme_sosh.generated.resources.sosh_thin const val SOSH_THEME_NAME = "Sosh" @@ -54,15 +61,16 @@ class SoshTheme : OudsThemeContract { override val settings: OudsThemeSettings get() = OudsThemeSettings() - @Suppress("OVERRIDE_DEPRECATION") - override val fontFamily: FontFamily - get() = FontFamily( - Font(R.font.sosh_black, weight = FontWeight.Black), - Font(R.font.sosh_medium, weight = FontWeight.Medium), - Font(R.font.sosh_bold, weight = FontWeight.Bold), - Font(R.font.sosh_regular, weight = FontWeight.Normal), - Font(R.font.sosh_thin, weight = FontWeight.Thin) + @Composable + override fun getFontFamily(language: String): FontFamily { + return FontFamily( + Font(resource = Res.font.sosh_black, weight = FontWeight.Black), + Font(resource = Res.font.sosh_medium, weight = FontWeight.Medium), + Font(resource = Res.font.sosh_bold, weight = FontWeight.Bold), + Font(resource = Res.font.sosh_regular, weight = FontWeight.Normal), + Font(resource = Res.font.sosh_thin, weight = FontWeight.Thin) ) + } override val colorTokens: OudsColorSemanticTokens get() = SoshColorSemanticTokens() diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshAlertTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshAlertTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshAlertTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshAlertTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshBadgeTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshBadgeTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshBadgeTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshBadgeTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshBarTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshBarTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshBarTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshBarTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshBulletListTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshBulletListTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshBulletListTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshBulletListTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshButtonMonoTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshButtonMonoTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshButtonMonoTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshButtonMonoTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshButtonTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshCheckboxTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshCheckboxTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshCheckboxTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshCheckboxTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshChipTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshChipTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshChipTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshChipTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshComponentsTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshControlItemTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshControlItemTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshControlItemTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshControlItemTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshDividerTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshDividerTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshDividerTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshDividerTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshIconTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshIconTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshIconTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshIconTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshInputTagTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshInputTagTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshInputTagTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshInputTagTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshLinkMonoTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshLinkMonoTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshLinkMonoTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshLinkMonoTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshLinkTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshLinkTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshLinkTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshLinkTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshPinCodeInputTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshPinCodeInputTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshPinCodeInputTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshPinCodeInputTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshProgressIndicatorTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshRadioButtonTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshRadioButtonTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshRadioButtonTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshRadioButtonTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshSwitchTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshSwitchTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshSwitchTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshSwitchTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshTagTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshTagTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshTagTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshTagTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshTextAreaTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshTextAreaTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshTextAreaTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshTextAreaTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshTextInputTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshTextInputTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/components/SoshTextInputTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/components/SoshTextInputTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/material/SoshMaterialColorTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/material/SoshMaterialColorTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/material/SoshMaterialColorTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/material/SoshMaterialColorTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/raw/SoshColorRawTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/raw/SoshColorRawTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/raw/SoshColorRawTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/raw/SoshColorRawTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshBorderSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshBorderSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshBorderSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshBorderSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorActionSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorActionSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorActionSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorActionSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorAlwaysSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorAlwaysSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorAlwaysSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorAlwaysSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBgSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBgSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBgSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBgSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBorderSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBorderSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBorderSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorBorderSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorContentSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorContentSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorContentSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorContentSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorModeSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorModeSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorModeSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorModeSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOpacitySemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOpacitySemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOpacitySemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOpacitySemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOverlaySemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOverlaySemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOverlaySemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorOverlaySemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorRepositorySemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorRepositorySemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorRepositorySemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorRepositorySemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSurfaceSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSurfaceSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSurfaceSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshColorSurfaceSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshEffectSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshEffectSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshEffectSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshEffectSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshElevationSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshElevationSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshElevationSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshElevationSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshFontSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshFontSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshFontSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshFontSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshGridSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshGridSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshGridSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshGridSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshOpacitySemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshOpacitySemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshOpacitySemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshOpacitySemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshSizeSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshSpaceSemanticTokens.kt b/theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshSpaceSemanticTokens.kt similarity index 100% rename from theme-sosh/src/main/java/com/orange/ouds/theme/sosh/tokens/semantic/SoshSpaceSemanticTokens.kt rename to theme-sosh/src/commonMain/kotlin/com/orange/ouds/theme/sosh/tokens/semantic/SoshSpaceSemanticTokens.kt diff --git a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/SoshDrawableResources.kt b/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/SoshDrawableResources.kt deleted file mode 100644 index a05c7dbc3c..0000000000 --- a/theme-sosh/src/main/java/com/orange/ouds/theme/sosh/SoshDrawableResources.kt +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Software Name: OUDS Android - * SPDX-FileCopyrightText: Copyright (c) Orange SA - * SPDX-License-Identifier: MIT - * - * This software is distributed under the MIT license, - * the text of which is available at https://opensource.org/license/MIT/ - * or see the "LICENSE" file for more details. - * - * Software description: Android library of reusable graphical components - */ - -package com.orange.ouds.theme.sosh - -import com.orange.ouds.theme.OudsDrawableResources - -internal class SoshDrawableResources : OudsDrawableResources { - override val communication = Communication() - override val component = Component() - override val functional = Functional() - - class Communication : OudsDrawableResources.Communication { - override val accessibility = Accessibility() - override val securityAndSafety = SecurityAndSafety() - - class Accessibility : OudsDrawableResources.Communication.Accessibility { - override val vision = R.drawable.ic_sosh_communication_accessibility_vision - } - - class SecurityAndSafety : OudsDrawableResources.Communication.SecurityAndSafety { - override val lockClosed = R.drawable.ic_sosh_communication_security_and_safety_lock_closed - } - } - - class Component : OudsDrawableResources.Component { - override val alert = Alert() - override val badgeIcon = BadgeIcon() - override val bulletList = BulletList() - override val button = Button() - override val checkbox = Checkbox() - override val chip = Chip() - override val link = Link() - override val radioButton = RadioButton() - override val switch = Switch() - override val tag = Tag() - - class Alert : OudsDrawableResources.Component.Alert { - override val importantFill = R.drawable.ic_sosh_component_alert_important_fill - override val infoFill = R.drawable.ic_sosh_component_alert_info_fill - override val tickConfirmationFill = R.drawable.ic_sosh_component_alert_tick_confirmation_fill - override val warningExternalShape = R.drawable.ic_sosh_component_alert_warning_external_shape - override val warningInternalShape = R.drawable.ic_sosh_component_alert_warning_internal_shape - } - - class BadgeIcon : OudsDrawableResources.Component.BadgeIcon { - override val errorFill = R.drawable.ic_sosh_component_badge_icon_error_fill - override val infoFill = R.drawable.ic_sosh_component_badge_icon_info_fill - override val tickConfirmationFill = R.drawable.ic_sosh_component_badge_icon_tick_confirmation_fill - override val warningExternalShape = R.drawable.ic_sosh_component_badge_icon_warning_external_shape - override val warningInternalShape = R.drawable.ic_sosh_component_badge_icon_warning_internal_shape - } - - class BulletList : OudsDrawableResources.Component.BulletList { - override val level0 = R.drawable.ic_sosh_component_bullet_list_level0 - override val level1 = R.drawable.ic_sosh_component_bullet_list_level1 - override val level2 = R.drawable.ic_sosh_component_bullet_list_level2 - override val tick = R.drawable.ic_sosh_component_bullet_list_tick - } - - class Button : OudsDrawableResources.Component.Button { - override val expurge = R.drawable.ic_sosh_component_button_expurge - override val next = R.drawable.ic_sosh_component_button_next - override val previous = R.drawable.ic_sosh_component_button_previous - } - - class Checkbox : OudsDrawableResources.Component.Checkbox { - override val selected = R.drawable.ic_sosh_component_checkbox_selected - override val undetermined = R.drawable.ic_sosh_component_checkbox_undetermined - } - - class Chip : OudsDrawableResources.Component.Chip { - override val tick = R.drawable.ic_sosh_component_chip_tick - } - - class Link : OudsDrawableResources.Component.Link { - override val next = R.drawable.ic_sosh_component_link_next - override val previous = R.drawable.ic_sosh_component_link_previous - } - - class RadioButton : OudsDrawableResources.Component.RadioButton { - override val selected = R.drawable.ic_sosh_component_radio_button_selected - } - - class Switch : OudsDrawableResources.Component.Switch { - override val selected = R.drawable.ic_sosh_component_switch_selected_switch - } - - class Tag : OudsDrawableResources.Component.Tag { - override val close = R.drawable.ic_sosh_component_tag_close - } - } - - class Functional : OudsDrawableResources.Functional { - override val actions = Actions() - override val navigation = Navigation() - override val settingsAndTools = SettingsAndTools() - override val socialAndEngagement = SocialAndEngagement() - - class Actions : OudsDrawableResources.Functional.Actions { - override val deleteCrossRound = R.drawable.ic_sosh_functional_actions_delete_cross_round - } - - class Navigation : OudsDrawableResources.Functional.Navigation { - override val formChevronLeft = R.drawable.ic_sosh_functional_navigation_form_chevron_left - override val menuGridUiRound = R.drawable.ic_sosh_functional_navigation_menu_grid_ui_round - } - - class SettingsAndTools : OudsDrawableResources.Functional.SettingsAndTools { - override val accessibilityHide = R.drawable.ic_sosh_functional_settings_and_tools_accessibility_hide - } - - class SocialAndEngagement : OudsDrawableResources.Functional.SocialAndEngagement { - override val heartRecommend = R.drawable.ic_sosh_functional_social_and_engagement_heart_recommend - } - } -} From 1bf668a6b2fb4a85e566860d3c05e20585c077eb Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Thu, 2 Jul 2026 19:27:54 +0200 Subject: [PATCH 11/18] Migrate theme-orange to KMP --- app/build.gradle.kts | 2 +- .../java/com/orange/ouds/app/ui/ThemeState.kt | 21 +- .../ui/utilities/ThemeDrawableResources.kt | 27 +- .../app/ui/utilities/composable/AppPreview.kt | 5 +- core/build.gradle.kts | 6 +- .../ouds/core/component/OudsBulletList.kt | 8 +- .../orange/ouds/core/utilities/OudsPreview.kt | 5 +- settings.gradle.kts | 2 +- .../ouds/theme/OudsDrawableResources.kt | 7 + theme-orange/build.gradle.kts | 181 +++++++++-- .../theme/orange/OrangeComponentTestSuite.kt | 0 ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...eTest$Default_takeDarkThemeSnapshot[3].png | Bin ...eTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[0].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[1].png | Bin ...est$WithIcon_takeLightThemeSnapshot[0].png | Bin ...est$WithIcon_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...heetScaffoldTest_takeDarkThemeSnapshot.png | Bin ...eetScaffoldTest_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[0].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[1].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithIconBadge_takeLightThemeSnapshot[0].png | Bin ...ithIconBadge_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...t_takeDarkThemeHighContrastSnapshot[4].png | Bin ...t_takeDarkThemeHighContrastSnapshot[5].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[0].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[1].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[2].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[3].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[4].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[5].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[4].png | Bin ..._takeLightThemeHighContrastSnapshot[5].png | Bin ...CheckboxTest_takeLightThemeSnapshot[0].png | Bin ...CheckboxTest_takeLightThemeSnapshot[1].png | Bin ...CheckboxTest_takeLightThemeSnapshot[2].png | Bin ...CheckboxTest_takeLightThemeSnapshot[3].png | Bin ...CheckboxTest_takeLightThemeSnapshot[4].png | Bin ...CheckboxTest_takeLightThemeSnapshot[5].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[0].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[1].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[2].png | Bin ...ndicatorTest_takeLightThemeSnapshot[0].png | Bin ...ndicatorTest_takeLightThemeSnapshot[1].png | Bin ...ndicatorTest_takeLightThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[0].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[10].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[11].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[12].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[13].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[14].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[15].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[16].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[17].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[18].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[19].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[1].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[20].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[21].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[22].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[23].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[24].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[25].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[3].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[4].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[5].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[6].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[7].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[8].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[9].png | Bin ...loredBoxTest_takeLightThemeSnapshot[0].png | Bin ...oredBoxTest_takeLightThemeSnapshot[10].png | Bin ...oredBoxTest_takeLightThemeSnapshot[11].png | Bin ...oredBoxTest_takeLightThemeSnapshot[12].png | Bin ...oredBoxTest_takeLightThemeSnapshot[13].png | Bin ...oredBoxTest_takeLightThemeSnapshot[14].png | Bin ...oredBoxTest_takeLightThemeSnapshot[15].png | Bin ...oredBoxTest_takeLightThemeSnapshot[16].png | Bin ...oredBoxTest_takeLightThemeSnapshot[17].png | Bin ...oredBoxTest_takeLightThemeSnapshot[18].png | Bin ...oredBoxTest_takeLightThemeSnapshot[19].png | Bin ...loredBoxTest_takeLightThemeSnapshot[1].png | Bin ...oredBoxTest_takeLightThemeSnapshot[20].png | Bin ...oredBoxTest_takeLightThemeSnapshot[21].png | Bin ...oredBoxTest_takeLightThemeSnapshot[22].png | Bin ...oredBoxTest_takeLightThemeSnapshot[23].png | Bin ...oredBoxTest_takeLightThemeSnapshot[24].png | Bin ...oredBoxTest_takeLightThemeSnapshot[25].png | Bin ...loredBoxTest_takeLightThemeSnapshot[2].png | Bin ...loredBoxTest_takeLightThemeSnapshot[3].png | Bin ...loredBoxTest_takeLightThemeSnapshot[4].png | Bin ...loredBoxTest_takeLightThemeSnapshot[5].png | Bin ...loredBoxTest_takeLightThemeSnapshot[6].png | Bin ...loredBoxTest_takeLightThemeSnapshot[7].png | Bin ...loredBoxTest_takeLightThemeSnapshot[8].png | Bin ...loredBoxTest_takeLightThemeSnapshot[9].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[2].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[3].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[4].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[5].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[6].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[7].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[8].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[2].png | Bin ...t$Horizontal_takeLightThemeSnapshot[3].png | Bin ...t$Horizontal_takeLightThemeSnapshot[4].png | Bin ...t$Horizontal_takeLightThemeSnapshot[5].png | Bin ...t$Horizontal_takeLightThemeSnapshot[6].png | Bin ...t$Horizontal_takeLightThemeSnapshot[7].png | Bin ...t$Horizontal_takeLightThemeSnapshot[8].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[0].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[1].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[2].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[3].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[4].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[5].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[6].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[7].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[8].png | Bin ...est$Vertical_takeLightThemeSnapshot[0].png | Bin ...est$Vertical_takeLightThemeSnapshot[1].png | Bin ...est$Vertical_takeLightThemeSnapshot[2].png | Bin ...est$Vertical_takeLightThemeSnapshot[3].png | Bin ...est$Vertical_takeLightThemeSnapshot[4].png | Bin ...est$Vertical_takeLightThemeSnapshot[5].png | Bin ...est$Vertical_takeLightThemeSnapshot[6].png | Bin ...est$Vertical_takeLightThemeSnapshot[7].png | Bin ...est$Vertical_takeLightThemeSnapshot[8].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...pTest$Default_takeDarkThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[4].png | Bin ...pTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Extended_takeDarkThemeSnapshot[0].png | Bin ...Test$Extended_takeDarkThemeSnapshot[1].png | Bin ...est$Extended_takeLightThemeSnapshot[0].png | Bin ...est$Extended_takeLightThemeSnapshot[1].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[1].png | Bin ...onTest$Large_takeLightThemeSnapshot[0].png | Bin ...onTest$Large_takeLightThemeSnapshot[1].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[1].png | Bin ...onTest$Small_takeLightThemeSnapshot[0].png | Bin ...onTest$Small_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...OudsInputTagTest_takeDarkThemeSnapshot.png | Bin ...udsInputTagTest_takeLightThemeSnapshot.png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...hLongHelperText_takeLightThemeSnapshot.png | Bin ...kTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...kTest$Default_takeDarkThemeSnapshot[1].png | Bin ...kTest$Default_takeDarkThemeSnapshot[2].png | Bin ...kTest$Default_takeDarkThemeSnapshot[3].png | Bin ...kTest$Default_takeDarkThemeSnapshot[4].png | Bin ...kTest$Default_takeDarkThemeSnapshot[5].png | Bin ...kTest$Default_takeDarkThemeSnapshot[6].png | Bin ...kTest$Default_takeDarkThemeSnapshot[7].png | Bin ...kTest$Default_takeDarkThemeSnapshot[8].png | Bin ...kTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...lBottomSheetTest_takeDarkThemeSnapshot.png | Bin ...BottomSheetTest_takeLightThemeSnapshot.png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...rizontalItems_takeDarkThemeSnapshot[0].png | Bin ...rizontalItems_takeDarkThemeSnapshot[1].png | Bin ...izontalItems_takeLightThemeSnapshot[0].png | Bin ...izontalItems_takeLightThemeSnapshot[1].png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeDarkThemeSnapshot[30].png | Bin ...Test$Default_takeDarkThemeSnapshot[31].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$Default_takeLightThemeSnapshot[30].png | Bin ...est$Default_takeLightThemeSnapshot[31].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...undedCorners_takeLightThemeSnapshot[0].png | Bin ...undedCorners_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[0].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[1].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[2].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ...ioButtonTest_takeLightThemeSnapshot[0].png | Bin ...ioButtonTest_takeLightThemeSnapshot[1].png | Bin ...ioButtonTest_takeLightThemeSnapshot[2].png | Bin ...ioButtonTest_takeLightThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[0].png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[1].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[0].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[0].png | Bin ...gTest$Default_takeDarkThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[2].png | Bin ...gTest$Default_takeDarkThemeSnapshot[3].png | Bin ...gTest$Default_takeDarkThemeSnapshot[4].png | Bin ...gTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t$AutoResize_takeLightThemeSnapshot[0].png | Bin ...t$AutoResize_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[0].png | Bin ...aTest$Default_takeDarkThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[2].png | Bin ...aTest$Default_takeDarkThemeSnapshot[3].png | Bin ...aTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithLongLabels_takeLightThemeSnapshot.png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ntedLeadingIcon_takeLightThemeSnapshot.png | Bin ...CenterAligned_takeDarkThemeSnapshot[0].png | Bin ...CenterAligned_takeDarkThemeSnapshot[1].png | Bin ...CenterAligned_takeDarkThemeSnapshot[2].png | Bin ...enterAligned_takeLightThemeSnapshot[0].png | Bin ...enterAligned_takeLightThemeSnapshot[1].png | Bin ...enterAligned_takeLightThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[0].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[1].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[2].png | Bin ...arTest$Large_takeLightThemeSnapshot[0].png | Bin ...arTest$Large_takeLightThemeSnapshot[1].png | Bin ...arTest$Large_takeLightThemeSnapshot[2].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[0].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[1].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[2].png | Bin ...rTest$Medium_takeLightThemeSnapshot[0].png | Bin ...rTest$Medium_takeLightThemeSnapshot[1].png | Bin ...rTest$Medium_takeLightThemeSnapshot[2].png | Bin .../{main => androidMain}/AndroidManifest.xml | 0 ...nge_communication_accessibility_vision.xml | 0 ...cation_security_and_safety_lock_closed.xml | 0 ..._orange_component_alert_important_fill.xml | 0 .../ic_orange_component_alert_info_fill.xml | 0 ...component_alert_tick_confirmation_fill.xml | 0 ...component_alert_warning_external_shape.xml | 0 ...component_alert_warning_internal_shape.xml | 0 ...orange_component_badge_icon_error_fill.xml | 0 ..._orange_component_badge_icon_info_fill.xml | 0 ...nent_badge_icon_tick_confirmation_fill.xml | 0 ...nent_badge_icon_warning_external_shape.xml | 0 ...nent_badge_icon_warning_internal_shape.xml | 0 ...ic_orange_component_bullet_list_level0.xml | 0 ...ange_component_bullet_list_level0_rtl.xml} | 0 ...ic_orange_component_bullet_list_level1.xml | 0 ...ange_component_bullet_list_level1_rtl.xml} | 0 ...ic_orange_component_bullet_list_level2.xml | 0 ...ange_component_bullet_list_level2_rtl.xml} | 0 .../ic_orange_component_bullet_list_tick.xml | 0 .../ic_orange_component_button_expurge.xml | 0 .../ic_orange_component_button_next.xml | 0 .../ic_orange_component_button_previous.xml | 0 .../ic_orange_component_checkbox_selected.xml | 0 ...orange_component_checkbox_undetermined.xml | 0 .../ic_orange_component_chip_tick.xml | 0 .../ic_orange_component_link_next.xml | 0 .../ic_orange_component_link_previous.xml | 0 ...orange_component_radio_button_selected.xml | 0 ...range_component_switch_selected_switch.xml | 0 .../ic_orange_component_tag_close.xml | 0 ..._functional_actions_delete_cross_round.xml | 0 ...unctional_navigation_form_chevron_left.xml | 0 ...nctional_navigation_menu_grid_ui_round.xml | 0 ..._settings_and_tools_accessibility_hide.xml | 0 ..._social_and_engagement_heart_recommend.xml | 0 .../theme/orange/OrangeDrawableResources.kt | 172 ++++++++++ .../ouds/theme/orange/OrangeFontFamily.kt | 293 +++++++++++++++++ .../ouds/theme/orange/OrangeFontProvider.kt | 172 ++++++++++ .../orange/ouds/theme/orange/OrangeTheme.kt | 12 +- .../tokens/components/OrangeAlertTokens.kt | 0 .../tokens/components/OrangeBadgeTokens.kt | 0 .../tokens/components/OrangeBarTokens.kt | 0 .../components/OrangeBulletListTokens.kt | 0 .../components/OrangeButtonMonoTokens.kt | 0 .../tokens/components/OrangeButtonTokens.kt | 0 .../tokens/components/OrangeCheckboxTokens.kt | 0 .../tokens/components/OrangeChipTokens.kt | 0 .../components/OrangeComponentsTokens.kt | 0 .../components/OrangeControlItemTokens.kt | 0 .../tokens/components/OrangeDividerTokens.kt | 0 .../tokens/components/OrangeIconTokens.kt | 0 .../tokens/components/OrangeInputTagTokens.kt | 0 .../tokens/components/OrangeLinkMonoTokens.kt | 0 .../tokens/components/OrangeLinkTokens.kt | 0 .../components/OrangePinCodeInputTokens.kt | 0 .../OrangeProgressIndicatorTokens.kt | 0 .../components/OrangeRadioButtonTokens.kt | 0 .../tokens/components/OrangeSwitchTokens.kt | 0 .../tokens/components/OrangeTagTokens.kt | 0 .../tokens/components/OrangeTextAreaTokens.kt | 0 .../components/OrangeTextInputTokens.kt | 0 .../material/OrangeMaterialColorTokens.kt | 0 .../orange/tokens/raw/OrangeColorRawTokens.kt | 0 .../semantic/OrangeBorderSemanticTokens.kt | 0 .../OrangeColorActionSemanticTokens.kt | 0 .../OrangeColorAlwaysSemanticTokens.kt | 0 .../semantic/OrangeColorBgSemanticTokens.kt | 0 .../OrangeColorBorderSemanticTokens.kt | 0 .../OrangeColorContentSemanticTokens.kt | 0 .../semantic/OrangeColorModeSemanticTokens.kt | 0 .../OrangeColorOpacitySemanticTokens.kt | 0 .../OrangeColorOverlaySemanticTokens.kt | 0 .../OrangeColorRepositorySemanticTokens.kt | 0 .../semantic/OrangeColorSemanticTokens.kt | 0 .../OrangeColorSurfaceSemanticTokens.kt | 0 .../semantic/OrangeEffectSemanticTokens.kt | 0 .../semantic/OrangeElevationSemanticTokens.kt | 0 .../semantic/OrangeFontSemanticTokens.kt | 0 .../semantic/OrangeGridSemanticTokens.kt | 0 .../semantic/OrangeOpacitySemanticTokens.kt | 0 .../semantic/OrangeSizeSemanticTokens.kt | 0 .../semantic/OrangeSpaceSemanticTokens.kt | 0 .../theme/orange/OrangeDrawableResources.kt | 131 -------- .../ouds/theme/orange/OrangeFontFamily.kt | 298 ------------------ .../ouds/theme/orange/OrangeFontProvider.kt | 172 ---------- 673 files changed, 842 insertions(+), 672 deletions(-) rename theme-orange/src/{test/java => androidHostTest/kotlin}/com/orange/ouds/theme/orange/OrangeComponentTestSuite.kt (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png (100%) rename theme-orange/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png (100%) rename theme-orange/src/{main => androidMain}/AndroidManifest.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_communication_accessibility_vision.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_communication_security_and_safety_lock_closed.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_alert_important_fill.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_alert_info_fill.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_alert_tick_confirmation_fill.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_alert_warning_external_shape.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_alert_warning_internal_shape.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_badge_icon_error_fill.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_badge_icon_info_fill.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_badge_icon_tick_confirmation_fill.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_badge_icon_warning_external_shape.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_badge_icon_warning_internal_shape.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_bullet_list_level0.xml (100%) rename theme-orange/src/{main/res/drawable-ldrtl/ic_orange_component_bullet_list_level0.xml => commonMain/composeResources/drawable/ic_orange_component_bullet_list_level0_rtl.xml} (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_bullet_list_level1.xml (100%) rename theme-orange/src/{main/res/drawable-ldrtl/ic_orange_component_bullet_list_level1.xml => commonMain/composeResources/drawable/ic_orange_component_bullet_list_level1_rtl.xml} (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_bullet_list_level2.xml (100%) rename theme-orange/src/{main/res/drawable-ldrtl/ic_orange_component_bullet_list_level2.xml => commonMain/composeResources/drawable/ic_orange_component_bullet_list_level2_rtl.xml} (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_bullet_list_tick.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_button_expurge.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_button_next.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_button_previous.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_checkbox_selected.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_checkbox_undetermined.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_chip_tick.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_link_next.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_link_previous.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_radio_button_selected.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_switch_selected_switch.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_component_tag_close.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_functional_actions_delete_cross_round.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_functional_navigation_form_chevron_left.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_functional_navigation_menu_grid_ui_round.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_functional_settings_and_tools_accessibility_hide.xml (100%) rename theme-orange/src/{main/res => commonMain/composeResources}/drawable/ic_orange_functional_social_and_engagement_heart_recommend.xml (100%) create mode 100644 theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeDrawableResources.kt create mode 100644 theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.kt create mode 100644 theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/OrangeTheme.kt (97%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeAlertTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeBadgeTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeBarTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeBulletListTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeButtonMonoTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeCheckboxTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeChipTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeControlItemTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeDividerTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeIconTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeInputTagTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeLinkMonoTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeLinkTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangePinCodeInputTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeRadioButtonTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeSwitchTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeTagTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeTextAreaTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/components/OrangeTextInputTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/material/OrangeMaterialColorTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/raw/OrangeColorRawTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeBorderSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorActionSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorAlwaysSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBgSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBorderSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorContentSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorModeSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOpacitySemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOverlaySemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorRepositorySemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSurfaceSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeEffectSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeElevationSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeFontSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeGridSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeOpacitySemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt (100%) rename theme-orange/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orange/tokens/semantic/OrangeSpaceSemanticTokens.kt (100%) delete mode 100644 theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeDrawableResources.kt delete mode 100644 theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeFontFamily.kt delete mode 100644 theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeFontProvider.kt diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 65926215b6..1281aec065 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -119,7 +119,7 @@ firebaseAppDistributionDefault { dependencies { implementation(project(":core")) implementation(project(":foundation")) -// implementation(project(":theme-orange")) + implementation(project(":theme-orange")) // implementation(project(":theme-orange-compact")) implementation(project(":theme-sosh")) implementation(project(":theme-wireframe")) diff --git a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt index 65d3e656b8..e1f80048bb 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt @@ -21,6 +21,11 @@ import androidx.compose.runtime.setValue import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings +import com.orange.ouds.theme.orange.ORANGE_THEME_NAME +import com.orange.ouds.theme.orange.OrangeFontFamily +import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic +import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin +import com.orange.ouds.theme.orange.OrangeTheme import com.orange.ouds.theme.sosh.SOSH_THEME_NAME import com.orange.ouds.theme.sosh.SoshTheme //import com.orange.ouds.theme.orange.ORANGE_THEME_NAME @@ -39,7 +44,7 @@ import com.orange.ouds.theme.wireframe.WireframeTheme fun rememberThemeState( settings: OudsThemeSettings = OudsThemeSettings(), themeNames: List = listOf( -// ORANGE_THEME_NAME, + ORANGE_THEME_NAME, // ORANGE_COMPACT_THEME_NAME, SOSH_THEME_NAME, WIREFRAME_THEME_NAME @@ -118,13 +123,13 @@ class ThemeState( return with(settings) { names.mapNotNull { name -> when (name) { -// ORANGE_THEME_NAME -> OrangeTheme( -// orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), -// roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, -// roundedCornerButtons = roundedCornerButtons.orElse { false }, -// roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, -// roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } -// ) + ORANGE_THEME_NAME -> OrangeTheme( + orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), + roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, + roundedCornerButtons = roundedCornerButtons.orElse { false }, + roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, + roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } + ) // ORANGE_COMPACT_THEME_NAME -> OrangeCompactTheme( // orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), // roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt index 49fe0aa703..b0228bfde7 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt @@ -16,6 +16,7 @@ import androidx.annotation.DrawableRes import androidx.compose.runtime.staticCompositionLocalOf import com.orange.ouds.app.R import com.orange.ouds.theme.OudsThemeContract +import com.orange.ouds.theme.orange.OrangeTheme import com.orange.ouds.theme.sosh.SoshTheme //import com.orange.ouds.theme.orange.OrangeTheme //import com.orange.ouds.theme.orangecompact.OrangeCompactTheme @@ -30,7 +31,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val avatar: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_avatar + is OrangeTheme -> R.drawable.ic_orange_avatar is SoshTheme -> R.drawable.ic_sosh_avatar is WireframeTheme -> R.drawable.ic_wireframe_avatar else -> error(ThemeDrawableResources::avatar) @@ -39,7 +40,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val call: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_call + is OrangeTheme -> R.drawable.ic_orange_call is SoshTheme -> R.drawable.ic_sosh_call is WireframeTheme -> R.drawable.ic_wireframe_call else -> error(ThemeDrawableResources::call) @@ -48,7 +49,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val filters: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_filters + is OrangeTheme -> R.drawable.ic_orange_filters is SoshTheme -> R.drawable.ic_sosh_filters is WireframeTheme -> R.drawable.ic_wireframe_filters else -> error(ThemeDrawableResources::filters) @@ -57,7 +58,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val formChevronDown: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_form_chevron_down + is OrangeTheme -> R.drawable.ic_orange_form_chevron_down is SoshTheme -> R.drawable.ic_sosh_form_chevron_down is WireframeTheme -> R.drawable.ic_wireframe_form_chevron_down else -> error(ThemeDrawableResources::formChevronDown) @@ -66,7 +67,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val home: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_home + is OrangeTheme -> R.drawable.ic_orange_home is SoshTheme -> R.drawable.ic_sosh_home is WireframeTheme -> R.drawable.ic_wireframe_home else -> error(ThemeDrawableResources::home) @@ -75,7 +76,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val info: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_info + is OrangeTheme -> R.drawable.ic_orange_info is SoshTheme -> R.drawable.ic_sosh_info is WireframeTheme -> R.drawable.ic_wireframe_info else -> error(ThemeDrawableResources::info) @@ -84,7 +85,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val menuGrid: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_menu_grid + is OrangeTheme -> R.drawable.ic_orange_menu_grid is SoshTheme -> R.drawable.ic_sosh_menu_grid is WireframeTheme -> R.drawable.ic_wireframe_menu_grid else -> error(ThemeDrawableResources::menuGrid) @@ -93,7 +94,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val notificationAlert: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_notification_alert + is OrangeTheme -> R.drawable.ic_orange_notification_alert is SoshTheme -> R.drawable.ic_sosh_notification_alert is WireframeTheme -> R.drawable.ic_wireframe_notification_alert else -> error(ThemeDrawableResources::notificationAlert) @@ -102,7 +103,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val palette: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_palette + is OrangeTheme -> R.drawable.ic_orange_palette is SoshTheme -> R.drawable.ic_sosh_palette is WireframeTheme -> R.drawable.ic_wireframe_palette else -> error(ThemeDrawableResources::palette) @@ -111,7 +112,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val settings: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_settings + is OrangeTheme -> R.drawable.ic_orange_settings is SoshTheme -> R.drawable.ic_sosh_settings is WireframeTheme -> R.drawable.ic_wireframe_settings else -> error(ThemeDrawableResources::settings) @@ -120,7 +121,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val shop: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_shop + is OrangeTheme -> R.drawable.ic_orange_shop is SoshTheme -> R.drawable.ic_sosh_shop is WireframeTheme -> R.drawable.ic_wireframe_shop else -> error(ThemeDrawableResources::shop) @@ -129,7 +130,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val smsMessage: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_sms_message + is OrangeTheme -> R.drawable.ic_orange_sms_message is SoshTheme -> R.drawable.ic_sosh_sms_message is WireframeTheme -> R.drawable.ic_wireframe_sms_message else -> error(ThemeDrawableResources::smsMessage) @@ -138,7 +139,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val tipsAndTricks: Int @DrawableRes get() = when (theme) { -// is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_tips_and_tricks + is OrangeTheme -> R.drawable.ic_orange_tips_and_tricks is SoshTheme -> R.drawable.ic_sosh_tips_and_tricks is WireframeTheme -> R.drawable.ic_wireframe_tips_and_tricks else -> error(ThemeDrawableResources::tipsAndTricks) diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt index 73d1ec8f23..52a9c1d856 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt @@ -22,7 +22,8 @@ import com.orange.ouds.app.ui.utilities.LocalThemeDrawableResources import com.orange.ouds.app.ui.utilities.ThemeDrawableResources import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.foundation.InternalOudsApi -import com.orange.ouds.theme.wireframe.WireframeTheme +import com.orange.ouds.theme.orange.OrangeTheme +import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily //import com.orange.ouds.theme.orange.OrangeTheme //import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily @@ -33,7 +34,7 @@ fun AppPreview( modifier: Modifier = Modifier, content: @Composable () -> Unit ) { - val theme = WireframeTheme()//OrangeTheme(getPreviewOrangeFontFamily()) + val theme = OrangeTheme(getPreviewOrangeFontFamily()) CompositionLocalProvider(value = LocalThemeDrawableResources provides ThemeDrawableResources(theme)) { OudsTheme( theme = theme, diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 909e6cafab..53935fc890 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -42,7 +42,7 @@ kotlin { minSdk = libs.versions.androidMinSdk.get().toInt() androidResources.enable = true - + withHostTestBuilder { }.configure { isIncludeAndroidResources = true @@ -100,9 +100,9 @@ kotlin { implementation(project(":foundation")) api(project(":theme-contract")) // compileOnly dependencies on themes are needed for previews - // compileOnly(project(":theme-orange")) + compileOnly(project(":theme-orange")) // compileOnly(project(":theme-orange-compact")) - // compileOnly(project(":theme-sosh")) + compileOnly(project(":theme-sosh")) compileOnly(project(":theme-wireframe")) //implementation(platform(libs.androidx.compose.bom)) diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBulletList.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBulletList.kt index 8421d087d9..a193b3f9e7 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBulletList.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBulletList.kt @@ -495,10 +495,12 @@ sealed interface OudsBulletListUnorderedAsset : OudsPolymorphicComponentContent val parentOrderedTypeCount = parentTypes.count { it is OudsBulletListType.Ordered } val level = parentTypes.count() val unorderedBulletLevel = level - parentOrderedTypeCount + val isRtl = LocalLayoutDirection.current == LayoutDirection.Rtl + val bulletList = OudsTheme.drawableResources.component.bulletList val iconRes = when (unorderedBulletLevel) { - 0 -> OudsTheme.drawableResources.component.bulletList.level0 - 1 -> OudsTheme.drawableResources.component.bulletList.level1 - else -> OudsTheme.drawableResources.component.bulletList.level2 + 0 -> if (isRtl) bulletList.level0Rtl ?: bulletList.level0 else bulletList.level0 + 1 -> if (isRtl) bulletList.level1Rtl ?: bulletList.level1 else bulletList.level1 + else -> if (isRtl) bulletList.level2Rtl ?: bulletList.level2 else bulletList.level2 } painterResource(resource = iconRes) } diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt index 9a22c90f0e..cb14691372 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt @@ -57,7 +57,8 @@ import com.orange.ouds.core.theme.LocalHighContrastModeEnabled import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings -import com.orange.ouds.theme.wireframe.WireframeTheme +import com.orange.ouds.theme.orange.OrangeTheme +import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily import kotlin.enums.enumEntries import kotlin.math.ceil import kotlin.math.min @@ -125,7 +126,7 @@ internal fun OudsThemeContract.mapSettings(transform: (OudsThemeSettings) -> (Ou } } -internal fun getPreviewTheme(): OudsThemeContract = WireframeTheme()//OrangeTheme(getPreviewOrangeFontFamily()) +internal fun getPreviewTheme(): OudsThemeContract = OrangeTheme(getPreviewOrangeFontFamily()) internal fun buildPreviewAnnotatedErrorMessage() = buildOudsAnnotatedErrorMessage { append("Error message with ") diff --git a/settings.gradle.kts b/settings.gradle.kts index 341c90636c..b17c02c911 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -39,7 +39,7 @@ include(":core") include(":core-test") include(":global-raw-tokens") include(":theme-contract") -//include(":theme-orange") +include(":theme-orange") //include(":theme-orange-compact") include(":theme-sosh") include(":theme-wireframe") \ No newline at end of file diff --git a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt index 74d12f7914..71d246ad61 100644 --- a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt +++ b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsDrawableResources.kt @@ -81,6 +81,13 @@ interface OudsDrawableResources { val level2: DrawableResource val tick: DrawableResource + + // Optional RTL variants - themes without RTL support can use default null + val level0Rtl: DrawableResource? get() = null + + val level1Rtl: DrawableResource? get() = null + + val level2Rtl: DrawableResource? get() = null } interface Button { diff --git a/theme-orange/build.gradle.kts b/theme-orange/build.gradle.kts index 790b3b9572..093f46821c 100644 --- a/theme-orange/build.gradle.kts +++ b/theme-orange/build.gradle.kts @@ -1,3 +1,6 @@ +import groovy.json.JsonOutput +import groovy.json.JsonSlurper + /* * Software Name: OUDS Android * SPDX-FileCopyrightText: Copyright (c) Orange SA @@ -12,49 +15,165 @@ plugins { id("dokka") - id("library") +// id("library") id("paparazzi") alias(libs.plugins.compose.compiler) alias(libs.plugins.paparazzi) - id(libs.plugins.kotlin.parcelize.get().pluginId) // https://github.com/gradle/gradle/issues/20084#issuecomment-1060822638 + alias(libs.plugins.compose.multiplatform) + id(libs.plugins.kotlin.multiplatform.get().pluginId) + id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) } // Temporary workaround for https://issuetracker.google.com/issues/476936389 -val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) -dokkaKotlinAdapter.apply(project) +//val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) +//dokkaKotlinAdapter.apply(project) -android { - namespace = "com.orange.ouds.theme.orange" +kotlin { + jvmToolchain(17) - buildFeatures { - compose = true + compilerOptions { + freeCompilerArgs.addAll( + "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", + "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", + "-opt-in=com.orange.ouds.foundation.InternalOudsApi" + ) } - kotlin { - compilerOptions { - freeCompilerArgs.addAll( - "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", - "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", - "-opt-in=com.orange.ouds.foundation.InternalOudsApi" - ) + // Target declarations - add or remove as needed below. These define + // which platforms this KMP module supports. + // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets + android { + namespace = "com.orange.ouds.theme.orange" + compileSdk = libs.versions.androidCompileSdk.get().toInt() + minSdk = libs.versions.androidMinSdk.get().toInt() + + androidResources.enable = true + + withHostTestBuilder { + }.configure { + isIncludeAndroidResources = true + } + + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } } -} -dependencies { - // TODO Remove the core dependency when https://github.com/cashapp/paparazzi/issues/1060 is fixed - // A few considerations about this fix: - // - The core dependency is needed otherwise core resources are not found during Paparazzi tests - // - We use runtimeOnly instead of implementation otherwise there is a cyclic dependency between core and this module if it is used as the preview theme - // - Moreover, although using runtimeOnly works when launching tests, this leads to a cyclic dependency when launching the linter, - // that's why we only add this dependency when launching Paparazzi tasks - if (gradle.startParameter.taskNames.any { it.contains("paparazzi", ignoreCase = true) }) { - runtimeOnly(project(":core")) + // For iOS targets, this is also where you should + // configure native binary output. For more information, see: + // https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks + + // A step-by-step guide on how to include this library in an XCode + // project can be found here: + // https://developer.android.com/kotlin/multiplatform/migrate + val xcfName = "oudsThemeOrange" + +// iosX64 { +// binaries.framework { +// baseName = xcfName +// } +// } + + iosArm64 { + binaries.framework { + baseName = xcfName + } + } + + iosSimulatorArm64 { + binaries.framework { + baseName = xcfName + } + } + + // Source set declarations. + // Declaring a target automatically creates a source set with the same name. By default, the + // Kotlin Gradle Plugin creates additional source sets that depend on each other, since it is + // common to share sources between related targets. + // See: https://kotlinlang.org/docs/multiplatform-hierarchy.html + sourceSets { + commonMain { + dependencies { + implementation(libs.compose.components.resources) + implementation(libs.kotlin.stdlib) + // Add KMP dependencies here + implementation(project(":foundation")) + implementation(project(":global-raw-tokens")) + implementation(project(":theme-contract")) + } + } + + commonTest { + dependencies { + implementation(libs.kotlin.test) + } + } + + androidMain { + dependencies { + // Add Android-specific dependencies here. Note that this source set depends on + // commonMain by default and will correctly pull the Android artifacts of any KMP + // dependencies declared in commonMain. + } + } + + getByName("androidHostTest") { + dependencies { + implementation(project(":core-test")) + } + } + + getByName("androidDeviceTest") { + dependencies { + implementation(libs.androidx.junit) + implementation(libs.androidx.runner) + implementation(libs.core) + } + } + + iosMain { + dependencies { + // Add iOS-specific dependencies here. This a source set created by Kotlin Gradle + // Plugin (KGP) that each specific iOS target (e.g., iosX64) depends on as + // part of KMP’s default source set hierarchy. Note that this source set depends + // on common by default and will correctly pull the iOS artifacts of any + // KMP dependencies declared in commonMain. + } + } } - implementation(project(":foundation")) - implementation(project(":global-raw-tokens")) - implementation(project(":theme-contract")) - implementation(libs.androidx.core) +} + +// Configure test tasks to use Java 21 for Paparazzi +tasks.withType().configureEach { + javaLauncher.set(javaToolchains.launcherFor { + languageVersion.set(JavaLanguageVersion.of(21)) + }) +} + +// Fix for Paparazzi not finding Compose Multiplatform resources from transitive dependencies in androidHostTest +// Issue: https://github.com/cashapp/paparazzi/issues/1060 +// This configuration adds the androidHostTest assets directory to Paparazzi's resource configuration +afterEvaluate { + tasks.matching { it.name.startsWith("preparePaparazzi") }.configureEach { + doLast { + val resourcesJsonFile = file("build/intermediates/paparazzi/androidMain/resources.json") + if (resourcesJsonFile.exists()) { + @Suppress("UNCHECKED_CAST") + val json = JsonSlurper().parseText(resourcesJsonFile.readText()) as Map - testImplementation(project(":core-test")) -} \ No newline at end of file + @Suppress("UNCHECKED_CAST") + val projectAssetDirs = json["projectAssetDirs"] as MutableList + + // Add the androidHostTest merged assets directory where core module's Compose resources are located + val androidHostTestAssetsDir = "build/intermediates/assets/androidHostTest/mergeAndroidHostTestAssets" + if (!projectAssetDirs.contains(androidHostTestAssetsDir)) { + projectAssetDirs.add(androidHostTestAssetsDir) + resourcesJsonFile.writeText(JsonOutput.prettyPrint(JsonOutput.toJson(json))) + logger.lifecycle("Added androidHostTest assets directory to Paparazzi resources configuration.") + } + } + } + } +} diff --git a/theme-orange/src/test/java/com/orange/ouds/theme/orange/OrangeComponentTestSuite.kt b/theme-orange/src/androidHostTest/kotlin/com/orange/ouds/theme/orange/OrangeComponentTestSuite.kt similarity index 100% rename from theme-orange/src/test/java/com/orange/ouds/theme/orange/OrangeComponentTestSuite.kt rename to theme-orange/src/androidHostTest/kotlin/com/orange/ouds/theme/orange/OrangeComponentTestSuite.kt diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png b/theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png rename to theme-orange/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png diff --git a/theme-orange/src/main/AndroidManifest.xml b/theme-orange/src/androidMain/AndroidManifest.xml similarity index 100% rename from theme-orange/src/main/AndroidManifest.xml rename to theme-orange/src/androidMain/AndroidManifest.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_communication_accessibility_vision.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_communication_accessibility_vision.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_communication_accessibility_vision.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_communication_accessibility_vision.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_communication_security_and_safety_lock_closed.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_communication_security_and_safety_lock_closed.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_communication_security_and_safety_lock_closed.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_communication_security_and_safety_lock_closed.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_alert_important_fill.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_important_fill.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_alert_important_fill.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_important_fill.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_alert_info_fill.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_info_fill.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_alert_info_fill.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_info_fill.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_alert_tick_confirmation_fill.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_tick_confirmation_fill.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_alert_tick_confirmation_fill.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_tick_confirmation_fill.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_alert_warning_external_shape.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_warning_external_shape.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_alert_warning_external_shape.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_warning_external_shape.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_alert_warning_internal_shape.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_warning_internal_shape.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_alert_warning_internal_shape.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_alert_warning_internal_shape.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_error_fill.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_error_fill.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_error_fill.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_error_fill.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_info_fill.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_info_fill.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_info_fill.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_info_fill.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_tick_confirmation_fill.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_tick_confirmation_fill.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_tick_confirmation_fill.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_tick_confirmation_fill.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_warning_external_shape.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_warning_external_shape.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_warning_external_shape.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_warning_external_shape.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_warning_internal_shape.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_warning_internal_shape.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_badge_icon_warning_internal_shape.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_badge_icon_warning_internal_shape.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_bullet_list_level0.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level0.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_bullet_list_level0.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level0.xml diff --git a/theme-orange/src/main/res/drawable-ldrtl/ic_orange_component_bullet_list_level0.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level0_rtl.xml similarity index 100% rename from theme-orange/src/main/res/drawable-ldrtl/ic_orange_component_bullet_list_level0.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level0_rtl.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_bullet_list_level1.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level1.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_bullet_list_level1.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level1.xml diff --git a/theme-orange/src/main/res/drawable-ldrtl/ic_orange_component_bullet_list_level1.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level1_rtl.xml similarity index 100% rename from theme-orange/src/main/res/drawable-ldrtl/ic_orange_component_bullet_list_level1.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level1_rtl.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_bullet_list_level2.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level2.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_bullet_list_level2.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level2.xml diff --git a/theme-orange/src/main/res/drawable-ldrtl/ic_orange_component_bullet_list_level2.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level2_rtl.xml similarity index 100% rename from theme-orange/src/main/res/drawable-ldrtl/ic_orange_component_bullet_list_level2.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_level2_rtl.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_bullet_list_tick.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_tick.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_bullet_list_tick.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_bullet_list_tick.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_button_expurge.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_button_expurge.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_button_expurge.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_button_expurge.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_button_next.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_button_next.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_button_next.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_button_next.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_button_previous.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_button_previous.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_button_previous.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_button_previous.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_checkbox_selected.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_checkbox_selected.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_checkbox_selected.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_checkbox_selected.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_checkbox_undetermined.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_checkbox_undetermined.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_checkbox_undetermined.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_checkbox_undetermined.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_chip_tick.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_chip_tick.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_chip_tick.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_chip_tick.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_link_next.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_link_next.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_link_next.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_link_next.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_link_previous.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_link_previous.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_link_previous.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_link_previous.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_radio_button_selected.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_radio_button_selected.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_radio_button_selected.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_radio_button_selected.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_switch_selected_switch.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_switch_selected_switch.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_switch_selected_switch.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_switch_selected_switch.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_component_tag_close.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_tag_close.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_component_tag_close.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_component_tag_close.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_functional_actions_delete_cross_round.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_actions_delete_cross_round.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_functional_actions_delete_cross_round.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_actions_delete_cross_round.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_functional_navigation_form_chevron_left.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_navigation_form_chevron_left.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_functional_navigation_form_chevron_left.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_navigation_form_chevron_left.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_functional_navigation_menu_grid_ui_round.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_navigation_menu_grid_ui_round.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_functional_navigation_menu_grid_ui_round.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_navigation_menu_grid_ui_round.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_functional_settings_and_tools_accessibility_hide.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_settings_and_tools_accessibility_hide.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_functional_settings_and_tools_accessibility_hide.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_settings_and_tools_accessibility_hide.xml diff --git a/theme-orange/src/main/res/drawable/ic_orange_functional_social_and_engagement_heart_recommend.xml b/theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_social_and_engagement_heart_recommend.xml similarity index 100% rename from theme-orange/src/main/res/drawable/ic_orange_functional_social_and_engagement_heart_recommend.xml rename to theme-orange/src/commonMain/composeResources/drawable/ic_orange_functional_social_and_engagement_heart_recommend.xml diff --git a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeDrawableResources.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeDrawableResources.kt new file mode 100644 index 0000000000..ab1ac3d613 --- /dev/null +++ b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeDrawableResources.kt @@ -0,0 +1,172 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.theme.orange + +import com.orange.ouds.foundation.InternalOudsApi +import com.orange.ouds.theme.OudsDrawableResources +import ouds_android.theme_orange.generated.resources.Res +import ouds_android.theme_orange.generated.resources.ic_orange_communication_accessibility_vision +import ouds_android.theme_orange.generated.resources.ic_orange_communication_security_and_safety_lock_closed +import ouds_android.theme_orange.generated.resources.ic_orange_component_alert_important_fill +import ouds_android.theme_orange.generated.resources.ic_orange_component_alert_info_fill +import ouds_android.theme_orange.generated.resources.ic_orange_component_alert_tick_confirmation_fill +import ouds_android.theme_orange.generated.resources.ic_orange_component_alert_warning_external_shape +import ouds_android.theme_orange.generated.resources.ic_orange_component_alert_warning_internal_shape +import ouds_android.theme_orange.generated.resources.ic_orange_component_badge_icon_error_fill +import ouds_android.theme_orange.generated.resources.ic_orange_component_badge_icon_info_fill +import ouds_android.theme_orange.generated.resources.ic_orange_component_badge_icon_tick_confirmation_fill +import ouds_android.theme_orange.generated.resources.ic_orange_component_badge_icon_warning_external_shape +import ouds_android.theme_orange.generated.resources.ic_orange_component_badge_icon_warning_internal_shape +import ouds_android.theme_orange.generated.resources.ic_orange_component_bullet_list_level0 +import ouds_android.theme_orange.generated.resources.ic_orange_component_bullet_list_level0_rtl +import ouds_android.theme_orange.generated.resources.ic_orange_component_bullet_list_level1 +import ouds_android.theme_orange.generated.resources.ic_orange_component_bullet_list_level1_rtl +import ouds_android.theme_orange.generated.resources.ic_orange_component_bullet_list_level2 +import ouds_android.theme_orange.generated.resources.ic_orange_component_bullet_list_level2_rtl +import ouds_android.theme_orange.generated.resources.ic_orange_component_bullet_list_tick +import ouds_android.theme_orange.generated.resources.ic_orange_component_button_expurge +import ouds_android.theme_orange.generated.resources.ic_orange_component_button_next +import ouds_android.theme_orange.generated.resources.ic_orange_component_button_previous +import ouds_android.theme_orange.generated.resources.ic_orange_component_checkbox_selected +import ouds_android.theme_orange.generated.resources.ic_orange_component_checkbox_undetermined +import ouds_android.theme_orange.generated.resources.ic_orange_component_chip_tick +import ouds_android.theme_orange.generated.resources.ic_orange_component_link_next +import ouds_android.theme_orange.generated.resources.ic_orange_component_link_previous +import ouds_android.theme_orange.generated.resources.ic_orange_component_radio_button_selected +import ouds_android.theme_orange.generated.resources.ic_orange_component_switch_selected_switch +import ouds_android.theme_orange.generated.resources.ic_orange_component_tag_close +import ouds_android.theme_orange.generated.resources.ic_orange_functional_actions_delete_cross_round +import ouds_android.theme_orange.generated.resources.ic_orange_functional_navigation_form_chevron_left +import ouds_android.theme_orange.generated.resources.ic_orange_functional_navigation_menu_grid_ui_round +import ouds_android.theme_orange.generated.resources.ic_orange_functional_settings_and_tools_accessibility_hide +import ouds_android.theme_orange.generated.resources.ic_orange_functional_social_and_engagement_heart_recommend + +/** + * @suppress + */ +@InternalOudsApi +class OrangeDrawableResources : OudsDrawableResources { + override val communication = Communication() + override val component = Component() + override val functional = Functional() + + class Communication : OudsDrawableResources.Communication { + override val accessibility = Accessibility() + override val securityAndSafety = SecurityAndSafety() + + class Accessibility : OudsDrawableResources.Communication.Accessibility { + override val vision = Res.drawable.ic_orange_communication_accessibility_vision + } + + class SecurityAndSafety : OudsDrawableResources.Communication.SecurityAndSafety { + override val lockClosed = Res.drawable.ic_orange_communication_security_and_safety_lock_closed + } + } + + class Component : OudsDrawableResources.Component { + override val alert = Alert() + override val badgeIcon = BadgeIcon() + override val bulletList = BulletList() + override val button = Button() + override val checkbox = Checkbox() + override val chip = Chip() + override val link = Link() + override val radioButton = RadioButton() + override val switch = Switch() + override val tag = Tag() + + class Alert : OudsDrawableResources.Component.Alert { + override val importantFill = Res.drawable.ic_orange_component_alert_important_fill + override val infoFill = Res.drawable.ic_orange_component_alert_info_fill + override val tickConfirmationFill = Res.drawable.ic_orange_component_alert_tick_confirmation_fill + override val warningExternalShape = Res.drawable.ic_orange_component_alert_warning_external_shape + override val warningInternalShape = Res.drawable.ic_orange_component_alert_warning_internal_shape + } + + class BadgeIcon : OudsDrawableResources.Component.BadgeIcon { + override val errorFill = Res.drawable.ic_orange_component_badge_icon_error_fill + override val infoFill = Res.drawable.ic_orange_component_badge_icon_info_fill + override val tickConfirmationFill = Res.drawable.ic_orange_component_badge_icon_tick_confirmation_fill + override val warningExternalShape = Res.drawable.ic_orange_component_badge_icon_warning_external_shape + override val warningInternalShape = Res.drawable.ic_orange_component_badge_icon_warning_internal_shape + } + + class BulletList : OudsDrawableResources.Component.BulletList { + override val level0 = Res.drawable.ic_orange_component_bullet_list_level0 + override val level1 = Res.drawable.ic_orange_component_bullet_list_level1 + override val level2 = Res.drawable.ic_orange_component_bullet_list_level2 + override val tick = Res.drawable.ic_orange_component_bullet_list_tick + + // RTL variants for Arabic, Hebrew, and other RTL languages + override val level0Rtl = Res.drawable.ic_orange_component_bullet_list_level0_rtl + override val level1Rtl = Res.drawable.ic_orange_component_bullet_list_level1_rtl + override val level2Rtl = Res.drawable.ic_orange_component_bullet_list_level2_rtl + } + + class Button : OudsDrawableResources.Component.Button { + override val expurge = Res.drawable.ic_orange_component_button_expurge + override val next = Res.drawable.ic_orange_component_button_next + override val previous = Res.drawable.ic_orange_component_button_previous + } + + class Checkbox : OudsDrawableResources.Component.Checkbox { + override val selected = Res.drawable.ic_orange_component_checkbox_selected + override val undetermined = Res.drawable.ic_orange_component_checkbox_undetermined + } + + class Chip : OudsDrawableResources.Component.Chip { + override val tick = Res.drawable.ic_orange_component_chip_tick + } + + class Link : OudsDrawableResources.Component.Link { + override val next = Res.drawable.ic_orange_component_link_next + override val previous = Res.drawable.ic_orange_component_link_previous + } + + class RadioButton : OudsDrawableResources.Component.RadioButton { + override val selected = Res.drawable.ic_orange_component_radio_button_selected + } + + class Switch : OudsDrawableResources.Component.Switch { + override val selected = Res.drawable.ic_orange_component_switch_selected_switch + } + + class Tag : OudsDrawableResources.Component.Tag { + override val close = Res.drawable.ic_orange_component_tag_close + } + } + + class Functional : OudsDrawableResources.Functional { + override val actions = Actions() + override val navigation = Navigation() + override val settingsAndTools = SettingsAndTools() + override val socialAndEngagement = SocialAndEngagement() + + class Actions : OudsDrawableResources.Functional.Actions { + override val deleteCrossRound = Res.drawable.ic_orange_functional_actions_delete_cross_round + } + + class Navigation : OudsDrawableResources.Functional.Navigation { + override val formChevronLeft = Res.drawable.ic_orange_functional_navigation_form_chevron_left + override val menuGridUiRound = Res.drawable.ic_orange_functional_navigation_menu_grid_ui_round + } + + class SettingsAndTools : OudsDrawableResources.Functional.SettingsAndTools { + override val accessibilityHide = Res.drawable.ic_orange_functional_settings_and_tools_accessibility_hide + } + + class SocialAndEngagement : OudsDrawableResources.Functional.SocialAndEngagement { + override val heartRecommend = Res.drawable.ic_orange_functional_social_and_engagement_heart_recommend + } + } +} diff --git a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.kt new file mode 100644 index 0000000000..9b9ab0a2d9 --- /dev/null +++ b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.kt @@ -0,0 +1,293 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.theme.orange + +import androidx.compose.runtime.Composable +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import com.orange.ouds.foundation.InternalOudsApi +import com.orange.ouds.foundation.extensions.orElse +import org.jetbrains.compose.resources.Font +import org.jetbrains.compose.resources.FontResource + +/** + * The font family to use for the Orange themes. + */ +// The primary constructor should theoretically contain nullable Latin and Arabic parameters but this leads to a platform declaration clash +// That's why we use a private empty primary constructor and set Latin and Arabic properties later on +class OrangeFontFamily private constructor() { + + companion object { + + private var downloadedLatinFontFamily: FontFamily? = null + private var downloadedArabicFontFamily: FontFamily? = null + + /** + * Preloads the downloadable font families for the Orange themes. + * Call this method if either the [latin] or [arabic] property of the [OrangeFontFamily] used to create the Orange theme + * instance is an implementation of [OrangeDownloadableFontFamily] ([OrangeHelveticaNeueLatin.Downloadable] or [OrangeHelveticaNeueArabic.Downloadable]). + * + * Please note that downloading font files is not the preferred way of configuring font families for the Orange themes. See documentation of [OrangeTheme] for more information. + * + * @param context The context. + * @param downloadableFontFamilies The downloadable font families to preload. + * @param onComplete A callback that is called when the font families are fully loaded. + */ +// fun preloadDownloadableFontFamilies( +// context: Context, +// downloadableFontFamilies: List, +// onComplete: (success: Boolean) -> Unit +// ) { +// val downloadableFontFamiliesToPreload = downloadableFontFamilies.filter { downloadableFontFamily -> +// when (downloadableFontFamily) { +// is OrangeHelveticaNeueLatin.Downloadable -> downloadedLatinFontFamily == null +// is OrangeHelveticaNeueArabic.Downloadable -> downloadedArabicFontFamily == null +// } +// } +// +// if (downloadableFontFamiliesToPreload.isEmpty()) { +// onComplete(true) +// } else { +// var preloadedDownloadableFontFamilyCount = 0 +// +// // Font requests require the list of sets of hashes for the certificates the provider is signed with. +// // As OrangeFontProvider is embedded in the app, it is signed with the app certificate. +// // That is why we can retrieve the certificate using methods on package manager. +// val certificates = try { +// @Suppress("DEPRECATION") +// val flags = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) PackageManager.GET_SIGNING_CERTIFICATES else PackageManager.GET_SIGNATURES +// val packageInfo = context.packageManager.getPackageInfo(context.packageName, flags) +// val signatures = with(packageInfo) { +// @Suppress("DEPRECATION") +// if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) signingInfo?.apkContentsSigners else signatures +// } +// listOf(signatures.orEmpty().map { it.toByteArray() }) +// } catch (_: Exception) { +// emptyList() +// } +// +// var success = true +// val callbackExecutor = ContextCompat.getMainExecutor(context) +// downloadableFontFamiliesToPreload.forEach { downloadableFontFamily -> +// val fontWeights = when (downloadableFontFamily) { +// is OrangeHelveticaNeueLatin.Downloadable -> listOf(FontWeight.Normal, FontWeight.Medium, FontWeight.Bold) +// is OrangeHelveticaNeueArabic.Downloadable -> listOf(FontWeight.Light, FontWeight.Normal, FontWeight.Bold) +// } +// val script = when (downloadableFontFamily) { +// is OrangeHelveticaNeueLatin.Downloadable -> OrangeFontProvider.QUERY_SCRIPT_PARAMETER_VALUE_LATIN +// is OrangeHelveticaNeueArabic.Downloadable -> OrangeFontProvider.QUERY_SCRIPT_PARAMETER_VALUE_ARABIC +// } +// val typefaces = mutableMapOf() +// +// fontWeights.forEach { fontWeight -> +// val query = +// "${OrangeFontProvider.QUERY_WEIGHT_PARAMETER_KEY}=${fontWeight.weight}&${OrangeFontProvider.QUERY_SCRIPT_PARAMETER_KEY}=$script" +// val fontRequest = FontRequest(OrangeFontProvider.AUTHORITY, context.packageName, query, certificates) +// +// val callback = object : FontsContractCompat.FontRequestCallback() { +// +// override fun onTypefaceRetrieved(typeface: Typeface?) { +// onTypefaceRequestComplete(fontWeight, typeface) +// } +// +// override fun onTypefaceRequestFailed(reason: Int) { +// onTypefaceRequestComplete(fontWeight, null) +// } +// +// private fun onTypefaceRequestComplete(fontWeight: FontWeight, typeface: Typeface?) { +// typefaces[fontWeight] = typeface +// if (typefaces.size == fontWeights.size) { +// if (typefaces.values.any { it == null }) { +// success = false +// } else { +// val fonts = typefaces.mapNotNull { (fontWeight, typeface) -> +// typeface?.let { Font(fontWeight, typeface) } +// } +// val downloadedFontFamily = FontFamily(fonts) +// when (downloadableFontFamily) { +// is OrangeHelveticaNeueLatin.Downloadable -> downloadedLatinFontFamily = downloadedFontFamily +// is OrangeHelveticaNeueArabic.Downloadable -> downloadedArabicFontFamily = downloadedFontFamily +// } +// } +// preloadedDownloadableFontFamilyCount++ +// if (downloadableFontFamiliesToPreload.size == preloadedDownloadableFontFamilyCount) { +// onComplete(success) +// } +// } +// } +// +// private fun Font(weight: FontWeight, typeface: Typeface, style: FontStyle = FontStyle.Normal): Font { +// val typefaceLoader = object : AndroidFont.TypefaceLoader { +// override fun loadBlocking(context: Context, font: AndroidFont): Typeface? = typeface +// override suspend fun awaitLoad(context: Context, font: AndroidFont): Typeface? = typeface +// } +// +// return object : AndroidFont(FontLoadingStrategy.Blocking, typefaceLoader, Settings()) { +// override val weight: FontWeight = weight +// override val style: FontStyle = style +// } +// } +// +// } +// +// val style = if (fontWeight.weight >= FontWeight.Bold.weight) Typeface.BOLD else Typeface.NORMAL +// FontsContractCompat.requestFont(context, fontRequest, style, null, callbackExecutor, callback) +// } +// } +// } +// } + } + + /** The Helvetica Neue Latin font family. */ + var latin: OrangeHelveticaNeueLatin? = null + private set + + /** The Helvetica Neue Arabic font family. */ + var arabic: OrangeHelveticaNeueArabic? = null + private set + + /** + * Creates an instance of [OrangeFontFamily] with the Helvetica Neue Latin font family. + * + * @param latin The Helvetica Neue Latin font family. + */ + constructor(latin: OrangeHelveticaNeueLatin) : this() { + this.latin = latin + } + + /** + * Creates an instance of [OrangeFontFamily] with the Helvetica Neue Arabic font family. + * + * @param arabic The Helvetica Neue Arabic font family. + */ + constructor(arabic: OrangeHelveticaNeueArabic) : this() { + this.arabic = arabic + } + + /** + * Creates an instance of [OrangeFontFamily] with Helvetica Neue Latin and Arabic font families. + * + * @param latin The Helvetica Neue Latin font family. + * @param arabic The Helvetica Neue Arabic font family. + */ + constructor(latin: OrangeHelveticaNeueLatin, arabic: OrangeHelveticaNeueArabic) : this() { + this.latin = latin + this.arabic = arabic + } + + /** + * @suppress + */ + @Composable + @InternalOudsApi + fun getFontFamily(language: String): FontFamily { + val localizedFontFamily = if (language == "ar") arabic else latin + return when (localizedFontFamily) { + is OrangeBundledFontFamily -> localizedFontFamily.fontFamily + is OrangeDownloadableFontFamily -> when (localizedFontFamily) { + is OrangeHelveticaNeueLatin.Downloadable -> downloadedLatinFontFamily + is OrangeHelveticaNeueArabic.Downloadable -> downloadedArabicFontFamily + } + else -> null + }.orElse { + FontFamily.Default + } + } +} + +/** + * A bundled font family for the Orange theme. + */ +sealed interface OrangeBundledFontFamily { + + /** The associated Compose font family. */ + @get:Composable + val fontFamily: FontFamily +} + +/** + * A downloadable font family for the Orange theme. + */ +sealed interface OrangeDownloadableFontFamily + +/** + * The Helvetica Neue Latin font family for the Orange theme. + */ +sealed class OrangeHelveticaNeueLatin { + + /** + * The bundled Helvetica Neue Latin font family for the Orange theme. + * + * @param regularFontResId The resource identifier of the Helvetica Neue Latin regular font. + * @param mediumFontResId The resource identifier of the Helvetica Neue Latin medium font. + * @param boldFontResId The resource identifier of the Helvetica Neue Latin bold font. + */ + class Bundled( + val regularFontResId: FontResource, + val mediumFontResId: FontResource, + val boldFontResId: FontResource + ) : OrangeHelveticaNeueLatin(), OrangeBundledFontFamily { + + @get:Composable + override val fontFamily: FontFamily + get() = FontFamily( + Font(regularFontResId, FontWeight.Normal), + Font(mediumFontResId, FontWeight.Medium), + Font(boldFontResId, FontWeight.Bold) + ) + } + + /** + * The downloadable Helvetica Neue Latin font family for the Orange theme. + */ + object Downloadable : OrangeHelveticaNeueLatin(), OrangeDownloadableFontFamily +} + +/** + * The Helvetica Neue Arabic font family for the Orange theme. + */ +sealed class OrangeHelveticaNeueArabic { + + /** + * The bundled Helvetica Neue Arabic font family for the Orange theme. + * + * @param lightFontResId The resource identifier of the Helvetica Neue Arabic light font. + * @param regularFontResId The resource identifier of the Helvetica Neue Arabic regular font. + * @param boldFontResId The resource identifier of the Helvetica Neue Arabic bold font. + */ + class Bundled( + val lightFontResId: FontResource, + val regularFontResId: FontResource, + val boldFontResId: FontResource + ) : OrangeHelveticaNeueArabic(), OrangeBundledFontFamily { + + @get:Composable + override val fontFamily: FontFamily + get() = FontFamily( + Font(lightFontResId, FontWeight.Light), + Font(regularFontResId, FontWeight.Normal), + Font(boldFontResId, FontWeight.Bold) + ) + } + + /** + * The downloadable Helvetica Neue Arabic font family for the Orange theme. + */ + object Downloadable : OrangeHelveticaNeueArabic(), OrangeDownloadableFontFamily +} + +/** + * @suppress + */ +@InternalOudsApi +fun getPreviewOrangeFontFamily() = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable) diff --git a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt new file mode 100644 index 0000000000..8dac0a45a5 --- /dev/null +++ b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt @@ -0,0 +1,172 @@ +///* +// * Software Name: OUDS Android +// * SPDX-FileCopyrightText: Copyright (c) Orange SA +// * SPDX-License-Identifier: MIT +// * +// * This software is distributed under the MIT license, +// * the text of which is available at https://opensource.org/license/MIT/ +// * or see the "LICENSE" file for more details. +// * +// * Software description: Android library of reusable graphical components +// */ +// +//package com.orange.ouds.theme.orange +// +//import android.content.ContentProvider +//import android.content.ContentValues +//import android.database.Cursor +//import android.database.MatrixCursor +//import android.net.Uri +//import android.os.CancellationSignal +//import android.os.ParcelFileDescriptor +//import androidx.compose.ui.text.font.FontWeight +//import androidx.core.provider.FontsContractCompat +//import java.io.File +//import java.io.FileOutputStream +//import java.net.URL +// +///** +// * The font provider for the Orange theme. +// */ +//class OrangeFontProvider : ContentProvider() { +// +// companion object { +// +// /** The Orange font provider authority. */ +// const val AUTHORITY = "com.orange.ouds.theme.orange.fontprovider" +// +// internal const val QUERY_WEIGHT_PARAMETER_KEY = "weight" +// internal const val QUERY_SCRIPT_PARAMETER_KEY = "script" +// internal const val QUERY_SCRIPT_PARAMETER_VALUE_LATIN = "latin" +// internal const val QUERY_SCRIPT_PARAMETER_VALUE_ARABIC = "arabic" +// +// private const val CDN_BASE_URL = "https://mastermedia.dam-broadcast.com" +// } +// +// private enum class Font(val filename: String, val cdnFilename: String, val fontWeight: FontWeight, val script: String) { +// +// HelveticaNeueLatinRoman( +// "helvetica_neue_latin_roman.ttf", +// "pm_12751_491_491559-ngke9h7d3m-HelveticaNeue-Roman.ttf", +// FontWeight.Normal, +// QUERY_SCRIPT_PARAMETER_VALUE_LATIN +// ), +// HelveticaNeueLatinMedium( +// "helvetica_neue_latin_medium.ttf", +// "pm_12751_491_491556-bd333uw5x5-HelveticaNeue-Medium.ttf", +// FontWeight.Medium, +// QUERY_SCRIPT_PARAMETER_VALUE_LATIN +// ), +// HelveticaNeueLatinBold( +// "helvetica_neue_latin_bold.ttf", +// "pm_12751_491_491553-29arstkwm3-HelveticaNeue-Bold.ttf", +// FontWeight.Bold, +// QUERY_SCRIPT_PARAMETER_VALUE_LATIN +// ), +// HelveticaNeueArabicLight( +// "helvetica_neue_arabic_light.ttf", +// "pm_12751_502_502368-657u3r24tf-HelveticaNeueW20-Arabic-45Light.ttf", +// FontWeight.Light, +// QUERY_SCRIPT_PARAMETER_VALUE_ARABIC +// ), +// HelveticaNeueArabicRoman( +// "helvetica_neue_arabic_roman.ttf", +// "pm_12751_502_502371-4jrbp3k3ec-HelveticaNeueW20-Arabic-55Roman.ttf", +// FontWeight.Normal, +// QUERY_SCRIPT_PARAMETER_VALUE_ARABIC +// ), +// HelveticaNeueArabicBold( +// "helvetica_neue_arabic_bold.ttf", +// "pm_12751_502_502374-hak4nhssgj-HelveticaNeueW20-Arabic-75Bold.ttf", +// FontWeight.Bold, +// QUERY_SCRIPT_PARAMETER_VALUE_ARABIC +// ) +// } +// +// override fun onCreate(): Boolean = true +// +// override fun query( +// uri: Uri, +// projection: Array?, +// selection: String?, +// selectionArgs: Array?, +// sortOrder: String?, +// cancellationSignal: CancellationSignal? +// ): Cursor? { +// return context?.let { context -> +// val arguments = selectionArgs?.firstOrNull() +// ?.split("&") +// ?.map { it.split("=") } +// ?.associate { it[0] to it[1] } +// .orEmpty() +// val fontWeight = arguments[QUERY_WEIGHT_PARAMETER_KEY]?.toIntOrNull()?.let { FontWeight(it) } +// val script = arguments[QUERY_SCRIPT_PARAMETER_KEY] +// val font = Font.entries.firstOrNull { it.fontWeight == fontWeight && it.script == script } +// var cursor: Cursor? = null +// if (font != null) { +// val fontFile = File(context.filesDir, font.filename) +// if (!fontFile.exists()) { +// try { +// URL("$CDN_BASE_URL/${font.cdnFilename}").openStream().use { input -> +// FileOutputStream(fontFile).use { output -> +// input.copyTo(output) +// } +// } +// } catch (_: Exception) { +// cursor = MatrixCursor(arrayOf(FontsContractCompat.Columns.RESULT_CODE)) +// cursor.addRow(arrayOf(FontsContractCompat.Columns.RESULT_CODE_FONT_UNAVAILABLE)) +// } +// } +// +// if (cursor == null) { +// cursor = MatrixCursor( +// arrayOf( +// FontsContractCompat.Columns._ID, +// FontsContractCompat.Columns.FILE_ID, +// FontsContractCompat.Columns.WEIGHT, +// FontsContractCompat.Columns.ITALIC, +// FontsContractCompat.Columns.RESULT_CODE +// ) +// ) +// +// val id = Font.entries.indexOf(font).toLong() +// cursor.addRow( +// arrayOf( +// id, // _ID +// id, // FILE_ID +// font.fontWeight.weight, // WEIGHT +// 0, // ITALIC +// FontsContractCompat.Columns.RESULT_CODE_OK // RESULT_CODE +// ) +// ) +// } +// } +// +// return@let cursor +// } +// } +// +// override fun openFile(uri: Uri, mode: String): ParcelFileDescriptor? { +// return context?.let { context -> +// val font = uri.lastPathSegment?.toIntOrNull()?.let { Font.entries[it] } +// font?.filename?.let { filename -> +// val file = File(context.filesDir, filename) +// if (file.exists()) { +// ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY) +// } else { +// null +// } +// } +// } +// } +// +// override fun query(uri: Uri, projection: Array?, selection: String?, selectionArgs: Array?, sortOrder: String?): Cursor? = null +// +// override fun getType(uri: Uri): String? = null +// +// override fun insert(uri: Uri, values: ContentValues?): Uri? = null +// +// override fun delete(uri: Uri, selection: String?, selectionArgs: Array?): Int = 0 +// +// override fun update(uri: Uri, values: ContentValues?, selection: String?, selectionArgs: Array?): Int = 0 +//} diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeTheme.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeTheme.kt similarity index 97% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeTheme.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeTheme.kt index 19e25a933b..d5e33d8bd2 100644 --- a/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeTheme.kt +++ b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeTheme.kt @@ -12,6 +12,7 @@ package com.orange.ouds.theme.orange +import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily import com.orange.ouds.theme.OudsDrawableResources import com.orange.ouds.theme.OudsThemeContract @@ -38,7 +39,7 @@ import com.orange.ouds.theme.tokens.semantic.OudsGridSemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsOpacitySemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsSizeSemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsSpaceSemanticTokens -import java.util.Locale +import kotlin.jvm.JvmOverloads const val ORANGE_THEME_NAME = "Orange" @@ -148,12 +149,9 @@ open class OrangeTheme @JvmOverloads constructor( override val name: String get() = ORANGE_THEME_NAME - @Suppress("OVERRIDE_DEPRECATION") - override val fontFamily: FontFamily - get() = getFontFamily(Locale.getDefault()) - - override fun getFontFamily(locale: Locale): FontFamily { - return orangeFontFamily.getFontFamily(locale) + @Composable + override fun getFontFamily(language: String): FontFamily { + return orangeFontFamily.getFontFamily(language) } override val settings: OudsThemeSettings diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeAlertTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeAlertTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeAlertTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeAlertTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeBadgeTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeBadgeTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeBadgeTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeBadgeTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeBarTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeBarTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeBarTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeBarTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeBulletListTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeBulletListTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeBulletListTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeBulletListTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeButtonMonoTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeButtonMonoTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeButtonMonoTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeButtonMonoTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeButtonTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeCheckboxTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeCheckboxTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeCheckboxTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeCheckboxTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeChipTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeChipTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeChipTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeChipTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeComponentsTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeControlItemTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeControlItemTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeControlItemTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeControlItemTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeDividerTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeDividerTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeDividerTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeDividerTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeIconTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeIconTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeIconTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeIconTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeInputTagTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeInputTagTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeInputTagTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeInputTagTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeLinkMonoTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeLinkMonoTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeLinkMonoTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeLinkMonoTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeLinkTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeLinkTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeLinkTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeLinkTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangePinCodeInputTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangePinCodeInputTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangePinCodeInputTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangePinCodeInputTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeProgressIndicatorTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeRadioButtonTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeRadioButtonTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeRadioButtonTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeRadioButtonTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeSwitchTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeSwitchTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeSwitchTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeSwitchTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeTagTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeTagTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeTagTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeTagTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeTextAreaTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeTextAreaTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeTextAreaTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeTextAreaTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeTextInputTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeTextInputTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/components/OrangeTextInputTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/components/OrangeTextInputTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/material/OrangeMaterialColorTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/material/OrangeMaterialColorTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/material/OrangeMaterialColorTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/material/OrangeMaterialColorTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/raw/OrangeColorRawTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/raw/OrangeColorRawTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/raw/OrangeColorRawTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/raw/OrangeColorRawTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeBorderSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeBorderSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeBorderSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeBorderSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorActionSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorActionSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorActionSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorActionSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorAlwaysSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorAlwaysSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorAlwaysSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorAlwaysSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBgSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBgSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBgSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBgSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBorderSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBorderSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBorderSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorBorderSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorContentSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorContentSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorContentSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorContentSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorModeSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorModeSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorModeSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorModeSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOpacitySemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOpacitySemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOpacitySemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOpacitySemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOverlaySemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOverlaySemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOverlaySemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorOverlaySemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorRepositorySemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorRepositorySemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorRepositorySemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorRepositorySemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSurfaceSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSurfaceSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSurfaceSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeColorSurfaceSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeEffectSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeEffectSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeEffectSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeEffectSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeElevationSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeElevationSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeElevationSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeElevationSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeFontSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeFontSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeFontSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeFontSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeGridSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeGridSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeGridSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeGridSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeOpacitySemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeOpacitySemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeOpacitySemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeOpacitySemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeSizeSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeSpaceSemanticTokens.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeSpaceSemanticTokens.kt similarity index 100% rename from theme-orange/src/main/java/com/orange/ouds/theme/orange/tokens/semantic/OrangeSpaceSemanticTokens.kt rename to theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/tokens/semantic/OrangeSpaceSemanticTokens.kt diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeDrawableResources.kt b/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeDrawableResources.kt deleted file mode 100644 index 554566e5af..0000000000 --- a/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeDrawableResources.kt +++ /dev/null @@ -1,131 +0,0 @@ -/* - * Software Name: OUDS Android - * SPDX-FileCopyrightText: Copyright (c) Orange SA - * SPDX-License-Identifier: MIT - * - * This software is distributed under the MIT license, - * the text of which is available at https://opensource.org/license/MIT/ - * or see the "LICENSE" file for more details. - * - * Software description: Android library of reusable graphical components - */ - -package com.orange.ouds.theme.orange - -import com.orange.ouds.foundation.InternalOudsApi -import com.orange.ouds.theme.OudsDrawableResources - -/** - * @suppress - */ -@InternalOudsApi -class OrangeDrawableResources : OudsDrawableResources { - override val communication = Communication() - override val component = Component() - override val functional = Functional() - - class Communication : OudsDrawableResources.Communication { - override val accessibility = Accessibility() - override val securityAndSafety = SecurityAndSafety() - - class Accessibility : OudsDrawableResources.Communication.Accessibility { - override val vision = R.drawable.ic_orange_communication_accessibility_vision - } - - class SecurityAndSafety : OudsDrawableResources.Communication.SecurityAndSafety { - override val lockClosed = R.drawable.ic_orange_communication_security_and_safety_lock_closed - } - } - - class Component : OudsDrawableResources.Component { - override val alert = Alert() - override val badgeIcon = BadgeIcon() - override val bulletList = BulletList() - override val button = Button() - override val checkbox = Checkbox() - override val chip = Chip() - override val link = Link() - override val radioButton = RadioButton() - override val switch = Switch() - override val tag = Tag() - - class Alert : OudsDrawableResources.Component.Alert { - override val importantFill = R.drawable.ic_orange_component_alert_important_fill - override val infoFill = R.drawable.ic_orange_component_alert_info_fill - override val tickConfirmationFill = R.drawable.ic_orange_component_alert_tick_confirmation_fill - override val warningExternalShape = R.drawable.ic_orange_component_alert_warning_external_shape - override val warningInternalShape = R.drawable.ic_orange_component_alert_warning_internal_shape - } - - class BadgeIcon : OudsDrawableResources.Component.BadgeIcon { - override val errorFill = R.drawable.ic_orange_component_badge_icon_error_fill - override val infoFill = R.drawable.ic_orange_component_badge_icon_info_fill - override val tickConfirmationFill = R.drawable.ic_orange_component_badge_icon_tick_confirmation_fill - override val warningExternalShape = R.drawable.ic_orange_component_badge_icon_warning_external_shape - override val warningInternalShape = R.drawable.ic_orange_component_badge_icon_warning_internal_shape - } - - class BulletList : OudsDrawableResources.Component.BulletList { - override val level0 = R.drawable.ic_orange_component_bullet_list_level0 - override val level1 = R.drawable.ic_orange_component_bullet_list_level1 - override val level2 = R.drawable.ic_orange_component_bullet_list_level2 - override val tick = R.drawable.ic_orange_component_bullet_list_tick - } - - class Button : OudsDrawableResources.Component.Button { - override val expurge = R.drawable.ic_orange_component_button_expurge - override val next = R.drawable.ic_orange_component_button_next - override val previous = R.drawable.ic_orange_component_button_previous - } - - class Checkbox : OudsDrawableResources.Component.Checkbox { - override val selected = R.drawable.ic_orange_component_checkbox_selected - override val undetermined = R.drawable.ic_orange_component_checkbox_undetermined - } - - class Chip : OudsDrawableResources.Component.Chip { - override val tick = R.drawable.ic_orange_component_chip_tick - } - - class Link : OudsDrawableResources.Component.Link { - override val next = R.drawable.ic_orange_component_link_next - override val previous = R.drawable.ic_orange_component_link_previous - } - - class RadioButton : OudsDrawableResources.Component.RadioButton { - override val selected = R.drawable.ic_orange_component_radio_button_selected - } - - class Switch : OudsDrawableResources.Component.Switch { - override val selected = R.drawable.ic_orange_component_switch_selected_switch - } - - class Tag : OudsDrawableResources.Component.Tag { - override val close = R.drawable.ic_orange_component_tag_close - } - } - - class Functional : OudsDrawableResources.Functional { - override val actions = Actions() - override val navigation = Navigation() - override val settingsAndTools = SettingsAndTools() - override val socialAndEngagement = SocialAndEngagement() - - class Actions : OudsDrawableResources.Functional.Actions { - override val deleteCrossRound = R.drawable.ic_orange_functional_actions_delete_cross_round - } - - class Navigation : OudsDrawableResources.Functional.Navigation { - override val formChevronLeft = R.drawable.ic_orange_functional_navigation_form_chevron_left - override val menuGridUiRound = R.drawable.ic_orange_functional_navigation_menu_grid_ui_round - } - - class SettingsAndTools : OudsDrawableResources.Functional.SettingsAndTools { - override val accessibilityHide = R.drawable.ic_orange_functional_settings_and_tools_accessibility_hide - } - - class SocialAndEngagement : OudsDrawableResources.Functional.SocialAndEngagement { - override val heartRecommend = R.drawable.ic_orange_functional_social_and_engagement_heart_recommend - } - } -} diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeFontFamily.kt b/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeFontFamily.kt deleted file mode 100644 index 6173a0d123..0000000000 --- a/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeFontFamily.kt +++ /dev/null @@ -1,298 +0,0 @@ -/* - * Software Name: OUDS Android - * SPDX-FileCopyrightText: Copyright (c) Orange SA - * SPDX-License-Identifier: MIT - * - * This software is distributed under the MIT license, - * the text of which is available at https://opensource.org/license/MIT/ - * or see the "LICENSE" file for more details. - * - * Software description: Android library of reusable graphical components - */ - -package com.orange.ouds.theme.orange - -import android.content.Context -import android.content.pm.PackageManager -import android.graphics.Typeface -import android.os.Build -import androidx.annotation.FontRes -import androidx.compose.ui.text.font.AndroidFont -import androidx.compose.ui.text.font.Font -import androidx.compose.ui.text.font.FontFamily -import androidx.compose.ui.text.font.FontLoadingStrategy -import androidx.compose.ui.text.font.FontStyle -import androidx.compose.ui.text.font.FontVariation.Settings -import androidx.compose.ui.text.font.FontWeight -import androidx.core.content.ContextCompat -import androidx.core.provider.FontRequest -import androidx.core.provider.FontsContractCompat -import com.orange.ouds.foundation.InternalOudsApi -import com.orange.ouds.foundation.extensions.orElse -import java.util.Locale - -/** - * The font family to use for the Orange themes. - */ -// The primary constructor should theoretically contain nullable Latin and Arabic parameters but this leads to a platform declaration clash -// That's why we use a private empty primary constructor and set Latin and Arabic properties later on -class OrangeFontFamily private constructor() { - - companion object { - - private var downloadedLatinFontFamily: FontFamily? = null - private var downloadedArabicFontFamily: FontFamily? = null - - /** - * Preloads the downloadable font families for the Orange themes. - * Call this method if either the [OrangeFontFamily.latin] or [OrangeFontFamily.arabic] property of the [OrangeFontFamily] used to create the Orange theme - * instance is an implementation of [OrangeDownloadableFontFamily] ([OrangeHelveticaNeueLatin.Downloadable] or [OrangeHelveticaNeueArabic.Downloadable]). - * - * Please note that downloading font files is not the preferred way of configuring font families for the Orange themes. See documentation of [OrangeTheme] for more information. - * - * @param context The context. - * @param downloadableFontFamilies The downloadable font families to preload. - * @param onComplete A callback that is called when the font families are fully loaded. - */ - fun preloadDownloadableFontFamilies( - context: Context, - downloadableFontFamilies: List, - onComplete: (success: Boolean) -> Unit - ) { - val downloadableFontFamiliesToPreload = downloadableFontFamilies.filter { downloadableFontFamily -> - when (downloadableFontFamily) { - is OrangeHelveticaNeueLatin.Downloadable -> downloadedLatinFontFamily == null - is OrangeHelveticaNeueArabic.Downloadable -> downloadedArabicFontFamily == null - } - } - - if (downloadableFontFamiliesToPreload.isEmpty()) { - onComplete(true) - } else { - var preloadedDownloadableFontFamilyCount = 0 - - // Font requests require the list of sets of hashes for the certificates the provider is signed with. - // As OrangeFontProvider is embedded in the app, it is signed with the app certificate. - // That is why we can retrieve the certificate using methods on package manager. - val certificates = try { - @Suppress("DEPRECATION") - val flags = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) PackageManager.GET_SIGNING_CERTIFICATES else PackageManager.GET_SIGNATURES - val packageInfo = context.packageManager.getPackageInfo(context.packageName, flags) - val signatures = with(packageInfo) { - @Suppress("DEPRECATION") - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) signingInfo?.apkContentsSigners else signatures - } - listOf(signatures.orEmpty().map { it.toByteArray() }) - } catch (_: Exception) { - emptyList() - } - - var success = true - val callbackExecutor = ContextCompat.getMainExecutor(context) - downloadableFontFamiliesToPreload.forEach { downloadableFontFamily -> - val fontWeights = when (downloadableFontFamily) { - is OrangeHelveticaNeueLatin.Downloadable -> listOf(FontWeight.Normal, FontWeight.Medium, FontWeight.Bold) - is OrangeHelveticaNeueArabic.Downloadable -> listOf(FontWeight.Light, FontWeight.Normal, FontWeight.Bold) - } - val script = when (downloadableFontFamily) { - is OrangeHelveticaNeueLatin.Downloadable -> OrangeFontProvider.QUERY_SCRIPT_PARAMETER_VALUE_LATIN - is OrangeHelveticaNeueArabic.Downloadable -> OrangeFontProvider.QUERY_SCRIPT_PARAMETER_VALUE_ARABIC - } - val typefaces = mutableMapOf() - - fontWeights.forEach { fontWeight -> - val query = - "${OrangeFontProvider.QUERY_WEIGHT_PARAMETER_KEY}=${fontWeight.weight}&${OrangeFontProvider.QUERY_SCRIPT_PARAMETER_KEY}=$script" - val fontRequest = FontRequest(OrangeFontProvider.AUTHORITY, context.packageName, query, certificates) - - val callback = object : FontsContractCompat.FontRequestCallback() { - - override fun onTypefaceRetrieved(typeface: Typeface?) { - onTypefaceRequestComplete(fontWeight, typeface) - } - - override fun onTypefaceRequestFailed(reason: Int) { - onTypefaceRequestComplete(fontWeight, null) - } - - private fun onTypefaceRequestComplete(fontWeight: FontWeight, typeface: Typeface?) { - typefaces[fontWeight] = typeface - if (typefaces.size == fontWeights.size) { - if (typefaces.values.any { it == null }) { - success = false - } else { - val fonts = typefaces.mapNotNull { (fontWeight, typeface) -> - typeface?.let { Font(fontWeight, typeface) } - } - val downloadedFontFamily = FontFamily(fonts) - when (downloadableFontFamily) { - is OrangeHelveticaNeueLatin.Downloadable -> downloadedLatinFontFamily = downloadedFontFamily - is OrangeHelveticaNeueArabic.Downloadable -> downloadedArabicFontFamily = downloadedFontFamily - } - } - preloadedDownloadableFontFamilyCount++ - if (downloadableFontFamiliesToPreload.size == preloadedDownloadableFontFamilyCount) { - onComplete(success) - } - } - } - - private fun Font(weight: FontWeight, typeface: Typeface, style: FontStyle = FontStyle.Normal): Font { - val typefaceLoader = object : AndroidFont.TypefaceLoader { - override fun loadBlocking(context: Context, font: AndroidFont): Typeface? = typeface - override suspend fun awaitLoad(context: Context, font: AndroidFont): Typeface? = typeface - } - - return object : AndroidFont(FontLoadingStrategy.Blocking, typefaceLoader, Settings()) { - override val weight: FontWeight = weight - override val style: FontStyle = style - } - } - - } - - val style = if (fontWeight.weight >= FontWeight.Bold.weight) Typeface.BOLD else Typeface.NORMAL - FontsContractCompat.requestFont(context, fontRequest, style, null, callbackExecutor, callback) - } - } - } - } - } - - /** The Helvetica Neue Latin font family. */ - var latin: OrangeHelveticaNeueLatin? = null - private set - - /** The Helvetica Neue Arabic font family. */ - var arabic: OrangeHelveticaNeueArabic? = null - private set - - /** - * Creates an instance of [OrangeFontFamily] with the Helvetica Neue Latin font family. - * - * @param latin The Helvetica Neue Latin font family. - */ - constructor(latin: OrangeHelveticaNeueLatin) : this() { - this.latin = latin - } - - /** - * Creates an instance of [OrangeFontFamily] with the Helvetica Neue Arabic font family. - * - * @param arabic The Helvetica Neue Arabic font family. - */ - constructor(arabic: OrangeHelveticaNeueArabic) : this() { - this.arabic = arabic - } - - /** - * Creates an instance of [OrangeFontFamily] with Helvetica Neue Latin and Arabic font families. - * - * @param latin The Helvetica Neue Latin font family. - * @param arabic The Helvetica Neue Arabic font family. - */ - constructor(latin: OrangeHelveticaNeueLatin, arabic: OrangeHelveticaNeueArabic) : this() { - this.latin = latin - this.arabic = arabic - } - - /** - * @suppress - */ - @InternalOudsApi - fun getFontFamily(locale: Locale): FontFamily { - val localizedFontFamily = if (locale.language == "ar") arabic else latin - return when (localizedFontFamily) { - is OrangeBundledFontFamily -> localizedFontFamily.fontFamily - is OrangeDownloadableFontFamily -> when (localizedFontFamily) { - is OrangeHelveticaNeueLatin.Downloadable -> downloadedLatinFontFamily - is OrangeHelveticaNeueArabic.Downloadable -> downloadedArabicFontFamily - } - else -> null - }.orElse { - FontFamily.Default - } - } -} - -/** - * A bundled font family for the Orange theme. - */ -sealed interface OrangeBundledFontFamily { - - /** The associated Compose font family. */ - val fontFamily: FontFamily -} - -/** - * A downloadable font family for the Orange theme. - */ -sealed interface OrangeDownloadableFontFamily - -/** - * The Helvetica Neue Latin font family for the Orange theme. - */ -sealed class OrangeHelveticaNeueLatin { - - /** - * The bundled Helvetica Neue Latin font family for the Orange theme. - * - * @param regularFontResId The resource identifier of the Helvetica Neue Latin regular font. - * @param mediumFontResId The resource identifier of the Helvetica Neue Latin medium font. - * @param boldFontResId The resource identifier of the Helvetica Neue Latin bold font. - */ - class Bundled( - @FontRes regularFontResId: Int, - @FontRes mediumFontResId: Int, - @FontRes boldFontResId: Int - ) : OrangeHelveticaNeueLatin(), OrangeBundledFontFamily { - - override val fontFamily: FontFamily = FontFamily( - Font(regularFontResId, FontWeight.Normal), - Font(mediumFontResId, FontWeight.Medium), - Font(boldFontResId, FontWeight.Bold) - ) - } - - /** - * The downloadable Helvetica Neue Latin font family for the Orange theme. - */ - object Downloadable : OrangeHelveticaNeueLatin(), OrangeDownloadableFontFamily -} - -/** - * The Helvetica Neue Arabic font family for the Orange theme. - */ -sealed class OrangeHelveticaNeueArabic { - - /** - * The bundled Helvetica Neue Arabic font family for the Orange theme. - * - * @param lightFontResId The resource identifier of the Helvetica Neue Arabic light font. - * @param regularFontResId The resource identifier of the Helvetica Neue Arabic regular font. - * @param boldFontResId The resource identifier of the Helvetica Neue Arabic bold font. - */ - class Bundled( - @FontRes lightFontResId: Int, - @FontRes regularFontResId: Int, - @FontRes boldFontResId: Int - ) : OrangeHelveticaNeueArabic(), OrangeBundledFontFamily { - - override val fontFamily: FontFamily = FontFamily( - Font(lightFontResId, FontWeight.Light), - Font(regularFontResId, FontWeight.Normal), - Font(boldFontResId, FontWeight.Bold) - ) - } - - /** - * The downloadable Helvetica Neue Arabic font family for the Orange theme. - */ - object Downloadable : OrangeHelveticaNeueArabic(), OrangeDownloadableFontFamily -} - -/** - * @suppress - */ -@InternalOudsApi -fun getPreviewOrangeFontFamily() = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable) diff --git a/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeFontProvider.kt b/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeFontProvider.kt deleted file mode 100644 index 405532691d..0000000000 --- a/theme-orange/src/main/java/com/orange/ouds/theme/orange/OrangeFontProvider.kt +++ /dev/null @@ -1,172 +0,0 @@ -/* - * Software Name: OUDS Android - * SPDX-FileCopyrightText: Copyright (c) Orange SA - * SPDX-License-Identifier: MIT - * - * This software is distributed under the MIT license, - * the text of which is available at https://opensource.org/license/MIT/ - * or see the "LICENSE" file for more details. - * - * Software description: Android library of reusable graphical components - */ - -package com.orange.ouds.theme.orange - -import android.content.ContentProvider -import android.content.ContentValues -import android.database.Cursor -import android.database.MatrixCursor -import android.net.Uri -import android.os.CancellationSignal -import android.os.ParcelFileDescriptor -import androidx.compose.ui.text.font.FontWeight -import androidx.core.provider.FontsContractCompat -import java.io.File -import java.io.FileOutputStream -import java.net.URL - -/** - * The font provider for the Orange theme. - */ -class OrangeFontProvider : ContentProvider() { - - companion object { - - /** The Orange font provider authority. */ - const val AUTHORITY = "com.orange.ouds.theme.orange.fontprovider" - - internal const val QUERY_WEIGHT_PARAMETER_KEY = "weight" - internal const val QUERY_SCRIPT_PARAMETER_KEY = "script" - internal const val QUERY_SCRIPT_PARAMETER_VALUE_LATIN = "latin" - internal const val QUERY_SCRIPT_PARAMETER_VALUE_ARABIC = "arabic" - - private const val CDN_BASE_URL = "https://mastermedia.dam-broadcast.com" - } - - private enum class Font(val filename: String, val cdnFilename: String, val fontWeight: FontWeight, val script: String) { - - HelveticaNeueLatinRoman( - "helvetica_neue_latin_roman.ttf", - "pm_12751_491_491559-ngke9h7d3m-HelveticaNeue-Roman.ttf", - FontWeight.Normal, - QUERY_SCRIPT_PARAMETER_VALUE_LATIN - ), - HelveticaNeueLatinMedium( - "helvetica_neue_latin_medium.ttf", - "pm_12751_491_491556-bd333uw5x5-HelveticaNeue-Medium.ttf", - FontWeight.Medium, - QUERY_SCRIPT_PARAMETER_VALUE_LATIN - ), - HelveticaNeueLatinBold( - "helvetica_neue_latin_bold.ttf", - "pm_12751_491_491553-29arstkwm3-HelveticaNeue-Bold.ttf", - FontWeight.Bold, - QUERY_SCRIPT_PARAMETER_VALUE_LATIN - ), - HelveticaNeueArabicLight( - "helvetica_neue_arabic_light.ttf", - "pm_12751_502_502368-657u3r24tf-HelveticaNeueW20-Arabic-45Light.ttf", - FontWeight.Light, - QUERY_SCRIPT_PARAMETER_VALUE_ARABIC - ), - HelveticaNeueArabicRoman( - "helvetica_neue_arabic_roman.ttf", - "pm_12751_502_502371-4jrbp3k3ec-HelveticaNeueW20-Arabic-55Roman.ttf", - FontWeight.Normal, - QUERY_SCRIPT_PARAMETER_VALUE_ARABIC - ), - HelveticaNeueArabicBold( - "helvetica_neue_arabic_bold.ttf", - "pm_12751_502_502374-hak4nhssgj-HelveticaNeueW20-Arabic-75Bold.ttf", - FontWeight.Bold, - QUERY_SCRIPT_PARAMETER_VALUE_ARABIC - ) - } - - override fun onCreate(): Boolean = true - - override fun query( - uri: Uri, - projection: Array?, - selection: String?, - selectionArgs: Array?, - sortOrder: String?, - cancellationSignal: CancellationSignal? - ): Cursor? { - return context?.let { context -> - val arguments = selectionArgs?.firstOrNull() - ?.split("&") - ?.map { it.split("=") } - ?.associate { it[0] to it[1] } - .orEmpty() - val fontWeight = arguments[QUERY_WEIGHT_PARAMETER_KEY]?.toIntOrNull()?.let { FontWeight(it) } - val script = arguments[QUERY_SCRIPT_PARAMETER_KEY] - val font = Font.entries.firstOrNull { it.fontWeight == fontWeight && it.script == script } - var cursor: Cursor? = null - if (font != null) { - val fontFile = File(context.filesDir, font.filename) - if (!fontFile.exists()) { - try { - URL("$CDN_BASE_URL/${font.cdnFilename}").openStream().use { input -> - FileOutputStream(fontFile).use { output -> - input.copyTo(output) - } - } - } catch (_: Exception) { - cursor = MatrixCursor(arrayOf(FontsContractCompat.Columns.RESULT_CODE)) - cursor.addRow(arrayOf(FontsContractCompat.Columns.RESULT_CODE_FONT_UNAVAILABLE)) - } - } - - if (cursor == null) { - cursor = MatrixCursor( - arrayOf( - FontsContractCompat.Columns._ID, - FontsContractCompat.Columns.FILE_ID, - FontsContractCompat.Columns.WEIGHT, - FontsContractCompat.Columns.ITALIC, - FontsContractCompat.Columns.RESULT_CODE - ) - ) - - val id = Font.entries.indexOf(font).toLong() - cursor.addRow( - arrayOf( - id, // _ID - id, // FILE_ID - font.fontWeight.weight, // WEIGHT - 0, // ITALIC - FontsContractCompat.Columns.RESULT_CODE_OK // RESULT_CODE - ) - ) - } - } - - return@let cursor - } - } - - override fun openFile(uri: Uri, mode: String): ParcelFileDescriptor? { - return context?.let { context -> - val font = uri.lastPathSegment?.toIntOrNull()?.let { Font.entries[it] } - font?.filename?.let { filename -> - val file = File(context.filesDir, filename) - if (file.exists()) { - ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY) - } else { - null - } - } - } - } - - override fun query(uri: Uri, projection: Array?, selection: String?, selectionArgs: Array?, sortOrder: String?): Cursor? = null - - override fun getType(uri: Uri): String? = null - - override fun insert(uri: Uri, values: ContentValues?): Uri? = null - - override fun delete(uri: Uri, selection: String?, selectionArgs: Array?): Int = 0 - - override fun update(uri: Uri, values: ContentValues?, selection: String?, selectionArgs: Array?): Int = 0 -} From a4055ee3704d5ad69c9cb44594af4245576d248b Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Fri, 3 Jul 2026 10:58:29 +0200 Subject: [PATCH 12/18] Migrate theme-orange-compact to KMP --- app/build.gradle.kts | 2 +- .../java/com/orange/ouds/app/ui/ThemeState.kt | 18 +- .../ui/utilities/ThemeDrawableResources.kt | 30 ++- .../ui/utilities/composable/CodeSnippet.kt | 5 +- settings.gradle.kts | 2 +- theme-orange-compact/build.gradle.kts | 182 ++++++++++++++---- .../OrangeCompactComponentTestSuite.kt | 0 ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...eTest$Default_takeDarkThemeSnapshot[0].png | Bin ...eTest$Default_takeDarkThemeSnapshot[1].png | Bin ...eTest$Default_takeDarkThemeSnapshot[2].png | Bin ...eTest$Default_takeDarkThemeSnapshot[3].png | Bin ...eTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[0].png | Bin ...Test$WithIcon_takeDarkThemeSnapshot[1].png | Bin ...est$WithIcon_takeLightThemeSnapshot[0].png | Bin ...est$WithIcon_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...heetScaffoldTest_takeDarkThemeSnapshot.png | Bin ...eetScaffoldTest_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[0].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[1].png | Bin ...ListTest$Rtl_takeLightThemeSnapshot[2].png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithIconBadge_takeLightThemeSnapshot[0].png | Bin ...ithIconBadge_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...t_takeDarkThemeHighContrastSnapshot[4].png | Bin ...t_takeDarkThemeHighContrastSnapshot[5].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[0].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[1].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[2].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[3].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[4].png | Bin ...sCheckboxTest_takeDarkThemeSnapshot[5].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[4].png | Bin ..._takeLightThemeHighContrastSnapshot[5].png | Bin ...CheckboxTest_takeLightThemeSnapshot[0].png | Bin ...CheckboxTest_takeLightThemeSnapshot[1].png | Bin ...CheckboxTest_takeLightThemeSnapshot[2].png | Bin ...CheckboxTest_takeLightThemeSnapshot[3].png | Bin ...CheckboxTest_takeLightThemeSnapshot[4].png | Bin ...CheckboxTest_takeLightThemeSnapshot[5].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[0].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[1].png | Bin ...IndicatorTest_takeDarkThemeSnapshot[2].png | Bin ...ndicatorTest_takeLightThemeSnapshot[0].png | Bin ...ndicatorTest_takeLightThemeSnapshot[1].png | Bin ...ndicatorTest_takeLightThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[0].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[10].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[11].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[12].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[13].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[14].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[15].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[16].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[17].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[18].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[19].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[1].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[20].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[21].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[22].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[23].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[24].png | Bin ...loredBoxTest_takeDarkThemeSnapshot[25].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[2].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[3].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[4].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[5].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[6].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[7].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[8].png | Bin ...oloredBoxTest_takeDarkThemeSnapshot[9].png | Bin ...loredBoxTest_takeLightThemeSnapshot[0].png | Bin ...oredBoxTest_takeLightThemeSnapshot[10].png | Bin ...oredBoxTest_takeLightThemeSnapshot[11].png | Bin ...oredBoxTest_takeLightThemeSnapshot[12].png | Bin ...oredBoxTest_takeLightThemeSnapshot[13].png | Bin ...oredBoxTest_takeLightThemeSnapshot[14].png | Bin ...oredBoxTest_takeLightThemeSnapshot[15].png | Bin ...oredBoxTest_takeLightThemeSnapshot[16].png | Bin ...oredBoxTest_takeLightThemeSnapshot[17].png | Bin ...oredBoxTest_takeLightThemeSnapshot[18].png | Bin ...oredBoxTest_takeLightThemeSnapshot[19].png | Bin ...loredBoxTest_takeLightThemeSnapshot[1].png | Bin ...oredBoxTest_takeLightThemeSnapshot[20].png | Bin ...oredBoxTest_takeLightThemeSnapshot[21].png | Bin ...oredBoxTest_takeLightThemeSnapshot[22].png | Bin ...oredBoxTest_takeLightThemeSnapshot[23].png | Bin ...oredBoxTest_takeLightThemeSnapshot[24].png | Bin ...oredBoxTest_takeLightThemeSnapshot[25].png | Bin ...loredBoxTest_takeLightThemeSnapshot[2].png | Bin ...loredBoxTest_takeLightThemeSnapshot[3].png | Bin ...loredBoxTest_takeLightThemeSnapshot[4].png | Bin ...loredBoxTest_takeLightThemeSnapshot[5].png | Bin ...loredBoxTest_takeLightThemeSnapshot[6].png | Bin ...loredBoxTest_takeLightThemeSnapshot[7].png | Bin ...loredBoxTest_takeLightThemeSnapshot[8].png | Bin ...loredBoxTest_takeLightThemeSnapshot[9].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[2].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[3].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[4].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[5].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[6].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[7].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[8].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[2].png | Bin ...t$Horizontal_takeLightThemeSnapshot[3].png | Bin ...t$Horizontal_takeLightThemeSnapshot[4].png | Bin ...t$Horizontal_takeLightThemeSnapshot[5].png | Bin ...t$Horizontal_takeLightThemeSnapshot[6].png | Bin ...t$Horizontal_takeLightThemeSnapshot[7].png | Bin ...t$Horizontal_takeLightThemeSnapshot[8].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[0].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[1].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[2].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[3].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[4].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[5].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[6].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[7].png | Bin ...Test$Vertical_takeDarkThemeSnapshot[8].png | Bin ...est$Vertical_takeLightThemeSnapshot[0].png | Bin ...est$Vertical_takeLightThemeSnapshot[1].png | Bin ...est$Vertical_takeLightThemeSnapshot[2].png | Bin ...est$Vertical_takeLightThemeSnapshot[3].png | Bin ...est$Vertical_takeLightThemeSnapshot[4].png | Bin ...est$Vertical_takeLightThemeSnapshot[5].png | Bin ...est$Vertical_takeLightThemeSnapshot[6].png | Bin ...est$Vertical_takeLightThemeSnapshot[7].png | Bin ...est$Vertical_takeLightThemeSnapshot[8].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...pTest$Default_takeDarkThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[4].png | Bin ...pTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Extended_takeDarkThemeSnapshot[0].png | Bin ...Test$Extended_takeDarkThemeSnapshot[1].png | Bin ...est$Extended_takeLightThemeSnapshot[0].png | Bin ...est$Extended_takeLightThemeSnapshot[1].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Large_takeDarkThemeSnapshot[1].png | Bin ...onTest$Large_takeLightThemeSnapshot[0].png | Bin ...onTest$Large_takeLightThemeSnapshot[1].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[0].png | Bin ...tonTest$Small_takeDarkThemeSnapshot[1].png | Bin ...onTest$Small_takeLightThemeSnapshot[0].png | Bin ...onTest$Small_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...OudsInputTagTest_takeDarkThemeSnapshot.png | Bin ...udsInputTagTest_takeLightThemeSnapshot.png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...hLongHelperText_takeLightThemeSnapshot.png | Bin ...kTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...kTest$Default_takeDarkThemeSnapshot[1].png | Bin ...kTest$Default_takeDarkThemeSnapshot[2].png | Bin ...kTest$Default_takeDarkThemeSnapshot[3].png | Bin ...kTest$Default_takeDarkThemeSnapshot[4].png | Bin ...kTest$Default_takeDarkThemeSnapshot[5].png | Bin ...kTest$Default_takeDarkThemeSnapshot[6].png | Bin ...kTest$Default_takeDarkThemeSnapshot[7].png | Bin ...kTest$Default_takeDarkThemeSnapshot[8].png | Bin ...kTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...lBottomSheetTest_takeDarkThemeSnapshot.png | Bin ...BottomSheetTest_takeLightThemeSnapshot.png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[0].png | Bin ...st$Horizontal_takeDarkThemeSnapshot[1].png | Bin ...t$Horizontal_takeLightThemeSnapshot[0].png | Bin ...t$Horizontal_takeLightThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...rizontalItems_takeDarkThemeSnapshot[0].png | Bin ...rizontalItems_takeDarkThemeSnapshot[1].png | Bin ...izontalItems_takeLightThemeSnapshot[0].png | Bin ...izontalItems_takeLightThemeSnapshot[1].png | Bin ...nTest$Default_takeDarkThemeSnapshot[0].png | Bin ...Test$Default_takeDarkThemeSnapshot[10].png | Bin ...Test$Default_takeDarkThemeSnapshot[11].png | Bin ...Test$Default_takeDarkThemeSnapshot[12].png | Bin ...Test$Default_takeDarkThemeSnapshot[13].png | Bin ...Test$Default_takeDarkThemeSnapshot[14].png | Bin ...Test$Default_takeDarkThemeSnapshot[15].png | Bin ...Test$Default_takeDarkThemeSnapshot[16].png | Bin ...Test$Default_takeDarkThemeSnapshot[17].png | Bin ...Test$Default_takeDarkThemeSnapshot[18].png | Bin ...Test$Default_takeDarkThemeSnapshot[19].png | Bin ...nTest$Default_takeDarkThemeSnapshot[1].png | Bin ...Test$Default_takeDarkThemeSnapshot[20].png | Bin ...Test$Default_takeDarkThemeSnapshot[21].png | Bin ...Test$Default_takeDarkThemeSnapshot[22].png | Bin ...Test$Default_takeDarkThemeSnapshot[23].png | Bin ...Test$Default_takeDarkThemeSnapshot[24].png | Bin ...Test$Default_takeDarkThemeSnapshot[25].png | Bin ...Test$Default_takeDarkThemeSnapshot[26].png | Bin ...Test$Default_takeDarkThemeSnapshot[27].png | Bin ...Test$Default_takeDarkThemeSnapshot[28].png | Bin ...Test$Default_takeDarkThemeSnapshot[29].png | Bin ...nTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeDarkThemeSnapshot[30].png | Bin ...Test$Default_takeDarkThemeSnapshot[31].png | Bin ...nTest$Default_takeDarkThemeSnapshot[3].png | Bin ...nTest$Default_takeDarkThemeSnapshot[4].png | Bin ...nTest$Default_takeDarkThemeSnapshot[5].png | Bin ...nTest$Default_takeDarkThemeSnapshot[6].png | Bin ...nTest$Default_takeDarkThemeSnapshot[7].png | Bin ...nTest$Default_takeDarkThemeSnapshot[8].png | Bin ...nTest$Default_takeDarkThemeSnapshot[9].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...est$Default_takeLightThemeSnapshot[10].png | Bin ...est$Default_takeLightThemeSnapshot[11].png | Bin ...est$Default_takeLightThemeSnapshot[12].png | Bin ...est$Default_takeLightThemeSnapshot[13].png | Bin ...est$Default_takeLightThemeSnapshot[14].png | Bin ...est$Default_takeLightThemeSnapshot[15].png | Bin ...est$Default_takeLightThemeSnapshot[16].png | Bin ...est$Default_takeLightThemeSnapshot[17].png | Bin ...est$Default_takeLightThemeSnapshot[18].png | Bin ...est$Default_takeLightThemeSnapshot[19].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...est$Default_takeLightThemeSnapshot[20].png | Bin ...est$Default_takeLightThemeSnapshot[21].png | Bin ...est$Default_takeLightThemeSnapshot[22].png | Bin ...est$Default_takeLightThemeSnapshot[23].png | Bin ...est$Default_takeLightThemeSnapshot[24].png | Bin ...est$Default_takeLightThemeSnapshot[25].png | Bin ...est$Default_takeLightThemeSnapshot[26].png | Bin ...est$Default_takeLightThemeSnapshot[27].png | Bin ...est$Default_takeLightThemeSnapshot[28].png | Bin ...est$Default_takeLightThemeSnapshot[29].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...est$Default_takeLightThemeSnapshot[30].png | Bin ...est$Default_takeLightThemeSnapshot[31].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[6].png | Bin ...Test$Default_takeLightThemeSnapshot[7].png | Bin ...Test$Default_takeLightThemeSnapshot[8].png | Bin ...Test$Default_takeLightThemeSnapshot[9].png | Bin ...Test$OnTwoLines_takeLightThemeSnapshot.png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...undedCorners_takeLightThemeSnapshot[0].png | Bin ...undedCorners_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...d_takeDarkThemeHighContrastSnapshot[0].png | Bin ...d_takeDarkThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t_takeDarkThemeHighContrastSnapshot[0].png | Bin ...t_takeDarkThemeHighContrastSnapshot[1].png | Bin ...t_takeDarkThemeHighContrastSnapshot[2].png | Bin ...t_takeDarkThemeHighContrastSnapshot[3].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[0].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[1].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[2].png | Bin ...dioButtonTest_takeDarkThemeSnapshot[3].png | Bin ..._takeLightThemeHighContrastSnapshot[0].png | Bin ..._takeLightThemeHighContrastSnapshot[1].png | Bin ..._takeLightThemeHighContrastSnapshot[2].png | Bin ..._takeLightThemeHighContrastSnapshot[3].png | Bin ...ioButtonTest_takeLightThemeSnapshot[0].png | Bin ...ioButtonTest_takeLightThemeSnapshot[1].png | Bin ...ioButtonTest_takeLightThemeSnapshot[2].png | Bin ...ioButtonTest_takeLightThemeSnapshot[3].png | Bin ...pTest$Default_takeDarkThemeSnapshot[0].png | Bin ...pTest$Default_takeDarkThemeSnapshot[1].png | Bin ...pTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[0].png | Bin ...mTest$Default_takeDarkThemeSnapshot[1].png | Bin ...mTest$Default_takeDarkThemeSnapshot[2].png | Bin ...mTest$Default_takeDarkThemeSnapshot[3].png | Bin ...mTest$Default_takeDarkThemeSnapshot[4].png | Bin ...mTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...eToEdgeDisabled_takeLightThemeSnapshot.png | Bin ...LongDescription_takeLightThemeSnapshot.png | Bin ...est$WithRichText_takeDarkThemeSnapshot.png | Bin ...st$WithRichText_takeLightThemeSnapshot.png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[0].png | Bin ...udsSwitchTest_takeDarkThemeSnapshot[1].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[0].png | Bin ...dsSwitchTest_takeLightThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[0].png | Bin ...gTest$Default_takeDarkThemeSnapshot[1].png | Bin ...gTest$Default_takeDarkThemeSnapshot[2].png | Bin ...gTest$Default_takeDarkThemeSnapshot[3].png | Bin ...gTest$Default_takeDarkThemeSnapshot[4].png | Bin ...gTest$Default_takeDarkThemeSnapshot[5].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[5].png | Bin ...ithUntintedIcon_takeLightThemeSnapshot.png | Bin ...t$AutoResize_takeLightThemeSnapshot[0].png | Bin ...t$AutoResize_takeLightThemeSnapshot[1].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[0].png | Bin ...aTest$Default_takeDarkThemeSnapshot[1].png | Bin ...aTest$Default_takeDarkThemeSnapshot[2].png | Bin ...aTest$Default_takeDarkThemeSnapshot[3].png | Bin ...aTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...inedMaxWidth_takeLightThemeSnapshot[0].png | Bin ...inedMaxWidth_takeLightThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin ...tTest$Default_takeDarkThemeSnapshot[4].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[3].png | Bin ...Test$Default_takeLightThemeSnapshot[4].png | Bin ...$WithLongLabels_takeLightThemeSnapshot.png | Bin ...$WithRichText_takeDarkThemeSnapshot[0].png | Bin ...$WithRichText_takeDarkThemeSnapshot[1].png | Bin ...WithRichText_takeLightThemeSnapshot[0].png | Bin ...WithRichText_takeLightThemeSnapshot[1].png | Bin ...hRoundedCorners_takeLightThemeSnapshot.png | Bin ...ntedLeadingIcon_takeLightThemeSnapshot.png | Bin ...CenterAligned_takeDarkThemeSnapshot[0].png | Bin ...CenterAligned_takeDarkThemeSnapshot[1].png | Bin ...CenterAligned_takeDarkThemeSnapshot[2].png | Bin ...enterAligned_takeLightThemeSnapshot[0].png | Bin ...enterAligned_takeLightThemeSnapshot[1].png | Bin ...enterAligned_takeLightThemeSnapshot[2].png | Bin ...rTest$Default_takeDarkThemeSnapshot[0].png | Bin ...rTest$Default_takeDarkThemeSnapshot[1].png | Bin ...rTest$Default_takeDarkThemeSnapshot[2].png | Bin ...Test$Default_takeLightThemeSnapshot[0].png | Bin ...Test$Default_takeLightThemeSnapshot[1].png | Bin ...Test$Default_takeLightThemeSnapshot[2].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[0].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[1].png | Bin ...BarTest$Large_takeDarkThemeSnapshot[2].png | Bin ...arTest$Large_takeLightThemeSnapshot[0].png | Bin ...arTest$Large_takeLightThemeSnapshot[1].png | Bin ...arTest$Large_takeLightThemeSnapshot[2].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[0].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[1].png | Bin ...arTest$Medium_takeDarkThemeSnapshot[2].png | Bin ...rTest$Medium_takeLightThemeSnapshot[0].png | Bin ...rTest$Medium_takeLightThemeSnapshot[1].png | Bin ...rTest$Medium_takeLightThemeSnapshot[2].png | Bin .../{main => androidMain}/AndroidManifest.xml | 0 .../OrangeBusinessToolsTheme.kt | 2 +- .../theme/orangecompact/OrangeCompactTheme.kt | 14 +- .../components/OrangeCompactAlertTokens.kt | 0 .../components/OrangeCompactBadgeTokens.kt | 0 .../components/OrangeCompactBarTokens.kt | 0 .../OrangeCompactBulletListTokens.kt | 0 .../OrangeCompactButtonMonoTokens.kt | 0 .../components/OrangeCompactButtonTokens.kt | 0 .../components/OrangeCompactCheckboxTokens.kt | 0 .../components/OrangeCompactChipTokens.kt | 0 .../OrangeCompactComponentsTokens.kt | 0 .../OrangeCompactControlItemTokens.kt | 0 .../components/OrangeCompactDividerTokens.kt | 0 .../components/OrangeCompactIconTokens.kt | 0 .../components/OrangeCompactInputTagTokens.kt | 0 .../components/OrangeCompactLinkMonoTokens.kt | 0 .../components/OrangeCompactLinkTokens.kt | 0 .../OrangeCompactPinCodeInputTokens.kt | 0 .../OrangeCompactProgressIndicatorTokens.kt | 0 .../OrangeCompactRadioButtonTokens.kt | 0 .../components/OrangeCompactSwitchTokens.kt | 0 .../components/OrangeCompactTagTokens.kt | 0 .../components/OrangeCompactTextAreaTokens.kt | 0 .../OrangeCompactTextInputTokens.kt | 0 .../OrangeCompactMaterialColorTokens.kt | 0 .../OrangeCompactBorderSemanticTokens.kt | 0 .../OrangeCompactColorActionSemanticTokens.kt | 0 .../OrangeCompactColorAlwaysSemanticTokens.kt | 0 .../OrangeCompactColorBgSemanticTokens.kt | 0 .../OrangeCompactColorBorderSemanticTokens.kt | 0 ...OrangeCompactColorContentSemanticTokens.kt | 0 .../OrangeCompactColorModeSemanticTokens.kt | 0 ...OrangeCompactColorOpacitySemanticTokens.kt | 0 ...OrangeCompactColorOverlaySemanticTokens.kt | 0 ...ngeCompactColorRepositorySemanticTokens.kt | 0 .../OrangeCompactColorSemanticTokens.kt | 0 ...OrangeCompactColorSurfaceSemanticTokens.kt | 0 .../OrangeCompactEffectSemanticTokens.kt | 0 .../OrangeCompactElevationSemanticTokens.kt | 0 .../OrangeCompactFontSemanticTokens.kt | 0 .../OrangeCompactGridSemanticTokens.kt | 0 .../OrangeCompactOpacitySemanticTokens.kt | 0 .../OrangeCompactSizeSemanticTokens.kt | 0 .../OrangeCompactSpaceSemanticTokens.kt | 0 628 files changed, 182 insertions(+), 73 deletions(-) rename theme-orange-compact/src/{test/java => androidHostTest/kotlin}/com/orange/ouds/theme/orangecompact/OrangeCompactComponentTestSuite.kt (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png (100%) rename theme-orange-compact/src/{test => androidHostTest}/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png (100%) rename theme-orange-compact/src/{main => androidMain}/AndroidManifest.xml (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt (99%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt (96%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactAlertTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBadgeTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBarTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBulletListTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonMonoTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactCheckboxTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactChipTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactControlItemTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactDividerTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactIconTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactInputTagTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkMonoTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactPinCodeInputTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactRadioButtonTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactSwitchTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTagTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextAreaTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextInputTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/material/OrangeCompactMaterialColorTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactBorderSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorActionSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorAlwaysSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBgSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBorderSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorContentSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorModeSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOpacitySemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOverlaySemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorRepositorySemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSurfaceSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactEffectSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactElevationSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactFontSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactGridSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactOpacitySemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt (100%) rename theme-orange-compact/src/{main/java => commonMain/kotlin}/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSpaceSemanticTokens.kt (100%) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1281aec065..cf1aeaef27 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -120,7 +120,7 @@ dependencies { implementation(project(":core")) implementation(project(":foundation")) implementation(project(":theme-orange")) -// implementation(project(":theme-orange-compact")) + implementation(project(":theme-orange-compact")) implementation(project(":theme-sosh")) implementation(project(":theme-wireframe")) diff --git a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt index e1f80048bb..ae3e7b9b76 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt @@ -26,6 +26,8 @@ import com.orange.ouds.theme.orange.OrangeFontFamily import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin import com.orange.ouds.theme.orange.OrangeTheme +import com.orange.ouds.theme.orangecompact.ORANGE_COMPACT_THEME_NAME +import com.orange.ouds.theme.orangecompact.OrangeCompactTheme import com.orange.ouds.theme.sosh.SOSH_THEME_NAME import com.orange.ouds.theme.sosh.SoshTheme //import com.orange.ouds.theme.orange.ORANGE_THEME_NAME @@ -45,7 +47,7 @@ fun rememberThemeState( settings: OudsThemeSettings = OudsThemeSettings(), themeNames: List = listOf( ORANGE_THEME_NAME, -// ORANGE_COMPACT_THEME_NAME, + ORANGE_COMPACT_THEME_NAME, SOSH_THEME_NAME, WIREFRAME_THEME_NAME ), @@ -130,13 +132,13 @@ class ThemeState( roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } ) -// ORANGE_COMPACT_THEME_NAME -> OrangeCompactTheme( -// orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), -// roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, -// roundedCornerButtons = roundedCornerButtons.orElse { false }, -// roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, -// roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } -// ) + ORANGE_COMPACT_THEME_NAME -> OrangeCompactTheme( + orangeFontFamily = OrangeFontFamily(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable), + roundedCornerAlertMessages = roundedCornerAlertMessages.orElse { false }, + roundedCornerButtons = roundedCornerButtons.orElse { false }, + roundedCornerProgressIndicators = roundedCornerProgressIndicators.orElse { false }, + roundedCornerTextInputs = roundedCornerTextInputs.orElse { false } + ) SOSH_THEME_NAME -> SoshTheme() WIREFRAME_THEME_NAME -> WireframeTheme() else -> null diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt index b0228bfde7..ab00d2349c 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt @@ -17,10 +17,8 @@ import androidx.compose.runtime.staticCompositionLocalOf import com.orange.ouds.app.R import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.orange.OrangeTheme +import com.orange.ouds.theme.orangecompact.OrangeCompactTheme import com.orange.ouds.theme.sosh.SoshTheme -//import com.orange.ouds.theme.orange.OrangeTheme -//import com.orange.ouds.theme.orangecompact.OrangeCompactTheme -//import com.orange.ouds.theme.sosh.SoshTheme import com.orange.ouds.theme.wireframe.WireframeTheme import kotlin.reflect.KProperty1 @@ -31,7 +29,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val avatar: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_avatar + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_avatar is SoshTheme -> R.drawable.ic_sosh_avatar is WireframeTheme -> R.drawable.ic_wireframe_avatar else -> error(ThemeDrawableResources::avatar) @@ -40,7 +38,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val call: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_call + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_call is SoshTheme -> R.drawable.ic_sosh_call is WireframeTheme -> R.drawable.ic_wireframe_call else -> error(ThemeDrawableResources::call) @@ -49,7 +47,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val filters: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_filters + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_filters is SoshTheme -> R.drawable.ic_sosh_filters is WireframeTheme -> R.drawable.ic_wireframe_filters else -> error(ThemeDrawableResources::filters) @@ -58,7 +56,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val formChevronDown: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_form_chevron_down + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_form_chevron_down is SoshTheme -> R.drawable.ic_sosh_form_chevron_down is WireframeTheme -> R.drawable.ic_wireframe_form_chevron_down else -> error(ThemeDrawableResources::formChevronDown) @@ -67,7 +65,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val home: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_home + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_home is SoshTheme -> R.drawable.ic_sosh_home is WireframeTheme -> R.drawable.ic_wireframe_home else -> error(ThemeDrawableResources::home) @@ -76,7 +74,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val info: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_info + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_info is SoshTheme -> R.drawable.ic_sosh_info is WireframeTheme -> R.drawable.ic_wireframe_info else -> error(ThemeDrawableResources::info) @@ -85,7 +83,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val menuGrid: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_menu_grid + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_menu_grid is SoshTheme -> R.drawable.ic_sosh_menu_grid is WireframeTheme -> R.drawable.ic_wireframe_menu_grid else -> error(ThemeDrawableResources::menuGrid) @@ -94,7 +92,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val notificationAlert: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_notification_alert + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_notification_alert is SoshTheme -> R.drawable.ic_sosh_notification_alert is WireframeTheme -> R.drawable.ic_wireframe_notification_alert else -> error(ThemeDrawableResources::notificationAlert) @@ -103,7 +101,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val palette: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_palette + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_palette is SoshTheme -> R.drawable.ic_sosh_palette is WireframeTheme -> R.drawable.ic_wireframe_palette else -> error(ThemeDrawableResources::palette) @@ -112,7 +110,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val settings: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_settings + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_settings is SoshTheme -> R.drawable.ic_sosh_settings is WireframeTheme -> R.drawable.ic_wireframe_settings else -> error(ThemeDrawableResources::settings) @@ -121,7 +119,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val shop: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_shop + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_shop is SoshTheme -> R.drawable.ic_sosh_shop is WireframeTheme -> R.drawable.ic_wireframe_shop else -> error(ThemeDrawableResources::shop) @@ -130,7 +128,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val smsMessage: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_sms_message + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_sms_message is SoshTheme -> R.drawable.ic_sosh_sms_message is WireframeTheme -> R.drawable.ic_wireframe_sms_message else -> error(ThemeDrawableResources::smsMessage) @@ -139,7 +137,7 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { val tipsAndTricks: Int @DrawableRes get() = when (theme) { - is OrangeTheme -> R.drawable.ic_orange_tips_and_tricks + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_tips_and_tricks is SoshTheme -> R.drawable.ic_sosh_tips_and_tricks is WireframeTheme -> R.drawable.ic_wireframe_tips_and_tricks else -> error(ThemeDrawableResources::tipsAndTricks) diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CodeSnippet.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CodeSnippet.kt index 76b9946d65..7f11398c23 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CodeSnippet.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CodeSnippet.kt @@ -45,8 +45,7 @@ import androidx.compose.ui.unit.dp import com.orange.ouds.app.R import com.orange.ouds.app.ui.utilities.Code import com.orange.ouds.core.theme.OudsTheme -import com.orange.ouds.theme.wireframe.WireframeTheme -//import com.orange.ouds.theme.orange.OrangeTheme +import com.orange.ouds.theme.orange.OrangeTheme import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.launch @@ -110,7 +109,7 @@ internal fun PreviewCodeSnippet() = AppPreview { comment("Apply Orange theme") functionCall("OudsTheme") { trailingLambda = true - constructorCallArgument("theme") + constructorCallArgument("theme") functionCallArgument("darkThemeEnabled", "isSystemInDarkTheme") lambdaArgument("content") { comment("Content") diff --git a/settings.gradle.kts b/settings.gradle.kts index b17c02c911..31bf1a9ace 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -40,6 +40,6 @@ include(":core-test") include(":global-raw-tokens") include(":theme-contract") include(":theme-orange") -//include(":theme-orange-compact") +include(":theme-orange-compact") include(":theme-sosh") include(":theme-wireframe") \ No newline at end of file diff --git a/theme-orange-compact/build.gradle.kts b/theme-orange-compact/build.gradle.kts index 9fa125d16a..3f04a885f3 100644 --- a/theme-orange-compact/build.gradle.kts +++ b/theme-orange-compact/build.gradle.kts @@ -1,3 +1,6 @@ +import groovy.json.JsonOutput +import groovy.json.JsonSlurper + /* * Software Name: OUDS Android * SPDX-FileCopyrightText: Copyright (c) Orange SA @@ -12,57 +15,166 @@ plugins { id("dokka") - id("library") +// id("library") id("paparazzi") alias(libs.plugins.compose.compiler) alias(libs.plugins.paparazzi) - id(libs.plugins.kotlin.parcelize.get().pluginId) // https://github.com/gradle/gradle/issues/20084#issuecomment-1060822638 + alias(libs.plugins.compose.multiplatform) + id(libs.plugins.kotlin.multiplatform.get().pluginId) + id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) } // Temporary workaround for https://issuetracker.google.com/issues/476936389 -val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) -dokkaKotlinAdapter.apply(project) +//val dokkaKotlinAdapter = objects.newInstance(org.jetbrains.dokka.gradle.adapters.KotlinAdapter::class) +//dokkaKotlinAdapter.apply(project) -android { - namespace = "com.orange.ouds.theme.orangecompact" +kotlin { + jvmToolchain(17) - buildFeatures { - compose = true + compilerOptions { + freeCompilerArgs.addAll( + "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", + "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", + "-opt-in=com.orange.ouds.foundation.InternalOudsApi" + ) } - kotlin { - compilerOptions { - freeCompilerArgs.addAll( - "-opt-in=com.orange.ouds.foundation.RestrictedOudsApi", - "-opt-in=com.orange.ouds.foundation.ExperimentalOudsApi", - "-opt-in=com.orange.ouds.foundation.InternalOudsApi" - ) + // Target declarations - add or remove as needed below. These define + // which platforms this KMP module supports. + // See: https://kotlinlang.org/docs/multiplatform-discover-project.html#targets + android { + namespace = "com.orange.ouds.theme.orangecompact" + compileSdk = libs.versions.androidCompileSdk.get().toInt() + minSdk = libs.versions.androidMinSdk.get().toInt() + + androidResources.enable = true + + withHostTestBuilder { + }.configure { + isIncludeAndroidResources = true + } + + withDeviceTestBuilder { + sourceSetTreeName = "test" + }.configure { + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + } + + // For iOS targets, this is also where you should + // configure native binary output. For more information, see: + // https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks + + // A step-by-step guide on how to include this library in an XCode + // project can be found here: + // https://developer.android.com/kotlin/multiplatform/migrate + val xcfName = "oudsThemeOrangeCompact" + +// iosX64 { +// binaries.framework { +// baseName = xcfName +// } +// } + + iosArm64 { + binaries.framework { + baseName = xcfName + } + } + + iosSimulatorArm64 { + binaries.framework { + baseName = xcfName } } -} -dependencies { - // TODO Remove the core dependency when https://github.com/cashapp/paparazzi/issues/1060 is fixed - // A few considerations about this fix: - // - The core dependency is needed otherwise core resources are not found during Paparazzi tests - // - We use runtimeOnly instead of implementation otherwise there is a cyclic dependency between core and this module if it is used as the preview theme - // - Moreover, although using runtimeOnly works when launching tests, this leads to a cyclic dependency when launching the linter, - // that's why we only add this dependency when launching Paparazzi tasks - if (gradle.startParameter.taskNames.any { it.contains("paparazzi", ignoreCase = true) }) { - runtimeOnly(project(":core")) + // Source set declarations. + // Declaring a target automatically creates a source set with the same name. By default, the + // Kotlin Gradle Plugin creates additional source sets that depend on each other, since it is + // common to share sources between related targets. + // See: https://kotlinlang.org/docs/multiplatform-hierarchy.html + sourceSets { + commonMain { + dependencies { + implementation(libs.compose.components.resources) + implementation(libs.kotlin.stdlib) + // Add KMP dependencies here + implementation(project(":foundation")) + implementation(project(":global-raw-tokens")) + implementation(project(":theme-contract")) + implementation(project(":theme-orange")) + } + } + + commonTest { + dependencies { + implementation(libs.kotlin.test) + } + } + + androidMain { + dependencies { + // Add Android-specific dependencies here. Note that this source set depends on + // commonMain by default and will correctly pull the Android artifacts of any KMP + // dependencies declared in commonMain. + } + } + + getByName("androidHostTest") { + dependencies { + implementation(project(":core-test")) + } + } + + getByName("androidDeviceTest") { + dependencies { + implementation(libs.androidx.junit) + implementation(libs.androidx.runner) + implementation(libs.core) + } + } + + iosMain { + dependencies { + // Add iOS-specific dependencies here. This a source set created by Kotlin Gradle + // Plugin (KGP) that each specific iOS target (e.g., iosX64) depends on as + // part of KMP’s default source set hierarchy. Note that this source set depends + // on common by default and will correctly pull the iOS artifacts of any + // KMP dependencies declared in commonMain. + } + } } - implementation(project(":foundation")) - implementation(project(":global-raw-tokens")) - implementation(project(":theme-contract")) - implementation(project(":theme-orange")) - implementation(libs.androidx.core) +} - testImplementation(project(":core-test")) +// Configure test tasks to use Java 21 for Paparazzi +tasks.withType().configureEach { + javaLauncher.set(javaToolchains.launcherFor { + languageVersion.set(JavaLanguageVersion.of(21)) + }) } -mavenCentralPublish { - relocation { - oldArtifactId = "ouds-theme-orange-business-tools" - message = "Orange Business Tools theme has been renamed to Orange Compact." +// Fix for Paparazzi not finding Compose Multiplatform resources from transitive dependencies in androidHostTest +// Issue: https://github.com/cashapp/paparazzi/issues/1060 +// This configuration adds the androidHostTest assets directory to Paparazzi's resource configuration +afterEvaluate { + tasks.matching { it.name.startsWith("preparePaparazzi") }.configureEach { + doLast { + val resourcesJsonFile = file("build/intermediates/paparazzi/androidMain/resources.json") + if (resourcesJsonFile.exists()) { + @Suppress("UNCHECKED_CAST") + val json = JsonSlurper().parseText(resourcesJsonFile.readText()) as Map + + @Suppress("UNCHECKED_CAST") + val projectAssetDirs = json["projectAssetDirs"] as MutableList + + // Add the androidHostTest merged assets directory where core module's Compose resources are located + val androidHostTestAssetsDir = "build/intermediates/assets/androidHostTest/mergeAndroidHostTestAssets" + if (!projectAssetDirs.contains(androidHostTestAssetsDir)) { + projectAssetDirs.add(androidHostTestAssetsDir) + resourcesJsonFile.writeText(JsonOutput.prettyPrint(JsonOutput.toJson(json))) + logger.lifecycle("Added androidHostTest assets directory to Paparazzi resources configuration.") + } + } + } } } diff --git a/theme-orange-compact/src/test/java/com/orange/ouds/theme/orangecompact/OrangeCompactComponentTestSuite.kt b/theme-orange-compact/src/androidHostTest/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactComponentTestSuite.kt similarity index 100% rename from theme-orange-compact/src/test/java/com/orange/ouds/theme/orangecompact/OrangeCompactComponentTestSuite.kt rename to theme-orange-compact/src/androidHostTest/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactComponentTestSuite.kt diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsAlertMessageTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithIcon_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBadgeTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeDarkThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBottomSheetScaffoldTest_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithIconBadge_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeHighContrastSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeHighContrastSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCheckboxTest_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsCircularProgressIndicatorTest_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[10].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[11].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[12].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[13].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[14].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[15].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[16].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[17].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[18].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[19].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[20].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[21].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[22].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[23].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[24].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[25].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeDarkThemeSnapshot[9].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[10].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[11].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[12].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[13].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[14].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[15].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[16].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[17].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[18].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[19].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[20].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[21].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[22].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[23].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[24].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[25].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsColoredBoxTest_takeLightThemeSnapshot[9].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeDarkThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Horizontal_takeLightThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeDarkThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsDividerTest$Vertical_takeLightThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFilterChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Extended_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$Small_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsFloatingActionButtonTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInlineAlertTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeDarkThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsInputTagTest_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinearProgressIndicatorTest$WithLongHelperText_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsLinkTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeDarkThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsModalBottomSheetTest_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarItemTest$Horizontal_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationBarTest$WithHorizontalItems_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[10].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[11].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[12].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[13].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[14].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[15].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[16].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[17].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[18].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[19].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[20].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[21].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[22].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[23].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[24].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[25].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[26].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[27].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[28].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[29].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[30].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[31].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeDarkThemeSnapshot[9].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[10].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[11].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[12].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[13].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[14].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[15].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[16].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[17].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[18].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[19].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[20].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[21].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[22].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[23].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[24].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[25].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[26].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[27].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[28].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[29].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[30].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[31].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[6].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[7].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[8].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$Default_takeLightThemeSnapshot[9].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsNavigationButtonTest$OnTwoLines_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPasswordInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$WithRoundedCorners_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$HighContrastModeEnabled_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeHighContrastSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeHighContrastSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsRadioButtonTest_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSuggestionChipTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithEdgeToEdgeDisabled_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithLongDescription_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeDarkThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithRichText_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchItemTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsSwitchTest_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeDarkThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$Default_takeLightThemeSnapshot[5].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTagTest$WithUntintedIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$AutoResize_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextAreaTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$ConstrainedMaxWidth_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeDarkThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[3].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$Default_takeLightThemeSnapshot[4].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithLongLabels_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRichText_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithRoundedCorners_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTextInputTest$WithUntintedLeadingIcon_takeLightThemeSnapshot.png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$CenterAligned_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Default_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Large_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeDarkThemeSnapshot[2].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[0].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[1].png diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png similarity index 100% rename from theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png rename to theme-orange-compact/src/androidHostTest/snapshots/images/com.orange.ouds.core.test_OudsTopAppBarTest$Medium_takeLightThemeSnapshot[2].png diff --git a/theme-orange-compact/src/main/AndroidManifest.xml b/theme-orange-compact/src/androidMain/AndroidManifest.xml similarity index 100% rename from theme-orange-compact/src/main/AndroidManifest.xml rename to theme-orange-compact/src/androidMain/AndroidManifest.xml diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt similarity index 99% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt index 66d51c123b..1d08c067c3 100644 --- a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt +++ b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt @@ -16,7 +16,7 @@ import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.orange.OrangeBundledFontFamily import com.orange.ouds.theme.orange.OrangeDownloadableFontFamily import com.orange.ouds.theme.orange.OrangeFontFamily -import com.orange.ouds.theme.orange.OrangeFontProvider +//import com.orange.ouds.theme.orange.OrangeFontProvider import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin import com.orange.ouds.theme.orangecompact.ORANGE_COMPACT_THEME_NAME diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt similarity index 96% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt index 690db2a620..a1e354d9ff 100644 --- a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt +++ b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt @@ -12,6 +12,8 @@ package com.orange.ouds.theme.orangecompact +//import com.orange.ouds.theme.orange.OrangeFontProvider +import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily import com.orange.ouds.theme.OudsDrawableResources import com.orange.ouds.theme.OudsThemeContract @@ -20,7 +22,6 @@ import com.orange.ouds.theme.orange.OrangeBundledFontFamily import com.orange.ouds.theme.orange.OrangeDownloadableFontFamily import com.orange.ouds.theme.orange.OrangeDrawableResources import com.orange.ouds.theme.orange.OrangeFontFamily -import com.orange.ouds.theme.orange.OrangeFontProvider import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin import com.orange.ouds.theme.orangecompact.tokens.components.OrangeCompactComponentsTokens @@ -45,7 +46,7 @@ import com.orange.ouds.theme.tokens.semantic.OudsGridSemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsOpacitySemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsSizeSemanticTokens import com.orange.ouds.theme.tokens.semantic.OudsSpaceSemanticTokens -import java.util.Locale +import kotlin.jvm.JvmOverloads const val ORANGE_COMPACT_THEME_NAME = "Orange Compact" @@ -140,12 +141,9 @@ open class OrangeCompactTheme @JvmOverloads constructor( override val name: String get() = ORANGE_COMPACT_THEME_NAME - @Suppress("OVERRIDE_DEPRECATION") - override val fontFamily: FontFamily - get() = getFontFamily(Locale.getDefault()) - - override fun getFontFamily(locale: Locale): FontFamily { - return orangeFontFamily.getFontFamily(locale) + @Composable + override fun getFontFamily(language: String): FontFamily { + return orangeFontFamily.getFontFamily(language) } override val settings: OudsThemeSettings diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactAlertTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactAlertTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactAlertTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactAlertTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBadgeTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBadgeTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBadgeTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBadgeTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBarTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBarTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBarTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBarTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBulletListTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBulletListTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBulletListTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactBulletListTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonMonoTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonMonoTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonMonoTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonMonoTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactButtonTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactCheckboxTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactCheckboxTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactCheckboxTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactCheckboxTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactChipTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactChipTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactChipTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactChipTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactComponentsTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactControlItemTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactControlItemTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactControlItemTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactControlItemTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactDividerTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactDividerTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactDividerTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactDividerTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactIconTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactIconTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactIconTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactIconTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactInputTagTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactInputTagTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactInputTagTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactInputTagTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkMonoTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkMonoTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkMonoTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkMonoTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactLinkTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactPinCodeInputTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactPinCodeInputTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactPinCodeInputTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactPinCodeInputTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactProgressIndicatorTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactRadioButtonTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactRadioButtonTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactRadioButtonTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactRadioButtonTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactSwitchTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactSwitchTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactSwitchTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactSwitchTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTagTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTagTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTagTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTagTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextAreaTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextAreaTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextAreaTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextAreaTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextInputTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextInputTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextInputTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/components/OrangeCompactTextInputTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/material/OrangeCompactMaterialColorTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/material/OrangeCompactMaterialColorTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/material/OrangeCompactMaterialColorTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/material/OrangeCompactMaterialColorTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactBorderSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactBorderSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactBorderSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactBorderSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorActionSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorActionSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorActionSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorActionSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorAlwaysSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorAlwaysSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorAlwaysSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorAlwaysSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBgSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBgSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBgSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBgSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBorderSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBorderSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBorderSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorBorderSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorContentSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorContentSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorContentSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorContentSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorModeSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorModeSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorModeSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorModeSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOpacitySemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOpacitySemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOpacitySemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOpacitySemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOverlaySemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOverlaySemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOverlaySemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorOverlaySemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorRepositorySemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorRepositorySemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorRepositorySemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorRepositorySemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSurfaceSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSurfaceSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSurfaceSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactColorSurfaceSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactEffectSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactEffectSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactEffectSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactEffectSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactElevationSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactElevationSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactElevationSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactElevationSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactFontSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactFontSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactFontSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactFontSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactGridSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactGridSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactGridSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactGridSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactOpacitySemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactOpacitySemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactOpacitySemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactOpacitySemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSizeSemanticTokens.kt diff --git a/theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSpaceSemanticTokens.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSpaceSemanticTokens.kt similarity index 100% rename from theme-orange-compact/src/main/java/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSpaceSemanticTokens.kt rename to theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/tokens/semantic/OrangeCompactSpaceSemanticTokens.kt From da8756a96ee72feee521ebbf6260bb01ee23e7dc Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Fri, 3 Jul 2026 11:17:32 +0200 Subject: [PATCH 13/18] Fix build errors --- .../kotlin/com/orange/ouds/core/component/OudsAvatar.kt | 4 ++-- .../kotlin/com/orange/ouds/core/component/OudsBadge.kt | 4 ++-- .../com/orange/ouds/core/component/OudsBasicChip.kt | 4 ++-- .../kotlin/com/orange/ouds/core/component/OudsCheckbox.kt | 5 ++--- .../com/orange/ouds/core/component/OudsCheckboxItem.kt | 4 ++-- .../ouds/core/component/OudsCircularProgressIndicator.kt | 3 +-- .../ouds/core/component/OudsFloatingActionButton.kt | 8 ++++---- .../com/orange/ouds/core/component/OudsInlineAlert.kt | 4 ++-- .../ouds/core/component/OudsLinearProgressIndicator.kt | 4 ++-- .../com/orange/ouds/core/component/OudsRadioButton.kt | 5 ++--- .../com/orange/ouds/core/component/OudsRadioButtonItem.kt | 4 ++-- .../com/orange/ouds/core/component/OudsSwitchItem.kt | 4 ++-- 12 files changed, 25 insertions(+), 28 deletions(-) diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAvatar.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAvatar.kt index caa85e4739..edcc8445f8 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAvatar.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsAvatar.kt @@ -33,7 +33,7 @@ import androidx.compose.ui.graphics.painter.ColorPainter import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector import androidx.compose.ui.layout.ContentScale -import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.clearAndSetSemantics import androidx.compose.ui.semantics.onClick @@ -156,7 +156,7 @@ internal fun OudsAvatar( interactionSource = interactionSource ) - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale val contentModifier = Modifier .clip(CircleShape) .size(AvatarSize * scale) diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadge.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadge.kt index f72e2da064..15d08d4ce3 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadge.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBadge.kt @@ -33,7 +33,7 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.ImageBitmap import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.clearAndSetSemantics import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics @@ -244,7 +244,7 @@ private fun OudsBadge( // This allows to: // - get consistent sizes between count and icon badges // - get a round badge with low count values. Otherwise, a count badge with an increase text size and a value of 1 will look like a vertical ellipse - val scale = if (count != null || withIconStatus?.icon != null) LocalConfiguration.current.fontScale else 1.0f + val scale = if (count != null || withIconStatus?.icon != null) LocalDensity.current.fontScale else 1.0f val sizeDp = size(size) * scale Box( modifier = Modifier diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBasicChip.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBasicChip.kt index 758f29145b..d7488de502 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBasicChip.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsBasicChip.kt @@ -32,7 +32,7 @@ import androidx.compose.runtime.remember import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color -import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics @@ -66,7 +66,7 @@ internal fun OudsBasicChip( @Suppress("NAME_SHADOWING") val interactionSource = interactionSource ?: remember { MutableInteractionSource() } val interactionState by interactionSource.collectInteractionStateAsState() val state = getChipState(enabled = enabled, interactionState = interactionState) - val iconScale = if (icon != null && label == null) LocalConfiguration.current.fontScale else 1.0f + val iconScale = if (icon != null && label == null) LocalDensity.current.fontScale else 1.0f val shape = RoundedCornerShape(chipTokens.borderRadius.value) val contentColor = rememberInteractionColor(interactionState = interactionState) { chipInteractionState -> diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckbox.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckbox.kt index 4c2cf8758e..0079ca5b08 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckbox.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckbox.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.background import androidx.compose.foundation.border import androidx.compose.foundation.interaction.Interaction @@ -35,11 +33,12 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.draw.clip import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.res.painterResource import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.error import androidx.compose.ui.semantics.semantics import androidx.compose.ui.state.ToggleableState +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Dp diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckboxItem.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckboxItem.kt index 3291614274..52f532de0a 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckboxItem.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCheckboxItem.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.interaction.Interaction import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.isSystemInDarkTheme @@ -28,6 +26,8 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.semantics import androidx.compose.ui.state.ToggleableState +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import com.orange.ouds.core.component.common.OudsError diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt index 710b5d1ef3..71af841005 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsCircularProgressIndicator.kt @@ -25,7 +25,6 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.StrokeCap import androidx.compose.ui.layout.onSizeChanged -import androidx.compose.ui.platform.LocalConfiguration import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.platform.LocalInspectionMode import androidx.compose.ui.semantics.hideFromAccessibility @@ -134,7 +133,7 @@ private fun OudsCircularProgressIndicator( track: Boolean, modifier: Modifier = Modifier ) { - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale val density = LocalDensity.current with(OudsTheme.componentsTokens.progressIndicator) { diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFloatingActionButton.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFloatingActionButton.kt index 71b9013e5a..2909e842e4 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFloatingActionButton.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFloatingActionButton.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.Indication import androidx.compose.foundation.indication import androidx.compose.foundation.interaction.Interaction @@ -42,9 +40,11 @@ import androidx.compose.ui.graphics.Shape import androidx.compose.ui.graphics.compositeOver import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.vector.ImageVector -import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import com.orange.ouds.core.component.common.outerBorder @@ -387,7 +387,7 @@ private fun OudsFloatingActionButton( @Composable private fun Icon(icon: OudsFloatingActionButtonIcon, label: String? = null, large: Boolean = false) { val iconSize = if (large) OudsTheme.sizes.icon.withLabel.large.sizeLarge else OudsTheme.componentsTokens.button.sizeIconOnly.value - val iconScale = LocalConfiguration.current.fontScale + val iconScale = LocalDensity.current.fontScale icon.Content( modifier = Modifier .size(iconSize * iconScale) diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInlineAlert.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInlineAlert.kt index a22031f115..3878dbfe67 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInlineAlert.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsInlineAlert.kt @@ -21,7 +21,7 @@ import androidx.compose.material.icons.outlined.FavoriteBorder import androidx.compose.material3.Text import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier -import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.semantics.semantics import androidx.compose.ui.tooling.preview.PreviewParameter import com.orange.ouds.core.extensions.iconSize @@ -72,7 +72,7 @@ fun OudsInlineAlert( status: OudsInlineAlertStatus = OudsInlineAlertDefaults.Status ) { with(OudsTheme.componentsTokens.alert) { - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale Row( modifier = modifier.semantics(mergeDescendants = true) {}, horizontalArrangement = Arrangement.spacedBy(spaceColumnGap.value) diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt index 8806a61fb5..e726db6e65 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsLinearProgressIndicator.kt @@ -29,7 +29,7 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.StrokeCap import androidx.compose.ui.graphics.drawscope.DrawScope -import androidx.compose.ui.platform.LocalConfiguration +import androidx.compose.ui.platform.LocalDensity import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.dp @@ -144,7 +144,7 @@ private fun OudsLinearProgressIndicator( helperText: String?, modifier: Modifier = Modifier ) { - val scale = LocalConfiguration.current.fontScale + val scale = LocalDensity.current.fontScale with(OudsTheme.componentsTokens.progressIndicator) { Column( modifier = modifier, diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButton.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButton.kt index 24d3cda1e0..87e3bd7f71 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButton.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButton.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.background import androidx.compose.foundation.border import androidx.compose.foundation.interaction.Interaction @@ -35,10 +33,11 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.draw.clip import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.res.painterResource import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.error import androidx.compose.ui.semantics.semantics +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import androidx.compose.ui.unit.Dp diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButtonItem.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButtonItem.kt index f7c64cb359..c91a144e92 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButtonItem.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsRadioButtonItem.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.border import androidx.compose.foundation.interaction.Interaction import androidx.compose.foundation.interaction.MutableInteractionSource @@ -29,6 +27,8 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.semantics +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import com.orange.ouds.core.component.common.OudsError diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSwitchItem.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSwitchItem.kt index 0c058263be..8444734629 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSwitchItem.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSwitchItem.kt @@ -12,8 +12,6 @@ package com.orange.ouds.core.component -import android.content.res.Configuration.UI_MODE_NIGHT_YES -import android.content.res.Configuration.UI_MODE_TYPE_NORMAL import androidx.compose.foundation.interaction.Interaction import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.isSystemInDarkTheme @@ -27,6 +25,8 @@ import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import androidx.compose.ui.semantics.Role import androidx.compose.ui.semantics.semantics +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_NIGHT_YES +import androidx.compose.ui.tooling.preview.AndroidUiModes.UI_MODE_TYPE_NORMAL import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.tooling.preview.PreviewParameter import com.orange.ouds.core.component.common.OudsError From ffeceff34b024ddc66901bf3f493f1944d6e823b Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Wed, 22 Jul 2026 12:27:20 +0200 Subject: [PATCH 14/18] Fix reflection in annotated strings --- .../common/text/OudsAnnotatedStringTest.kt | 14 +++- .../InteractionValuesIndicationNodeFactory.kt | 1 + ...udsAnnotatedAlertMessageBulletListLabel.kt | 12 +++- .../OudsAnnotatedAlertMessageDescription.kt | 12 +++- .../text/OudsAnnotatedBulletListLabel.kt | 12 +++- .../common/text/OudsAnnotatedErrorMessage.kt | 12 +++- .../common/text/OudsAnnotatedHelperText.kt | 14 +++- .../common/text/OudsAnnotatedString.kt | 69 ++++++++----------- 8 files changed, 93 insertions(+), 53 deletions(-) diff --git a/core/src/androidHostTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt b/core/src/androidHostTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt index cc5a9a98f5..ba25a0d35e 100644 --- a/core/src/androidHostTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt +++ b/core/src/androidHostTest/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedStringTest.kt @@ -720,7 +720,11 @@ class OudsAnnotatedStringTest { //endregion } -private class TestAnnotatedString(private val annotatedString: AnnotatedString) : OudsAnnotatedString(annotatedString) { +private class TestAnnotatedString(annotatedString: AnnotatedString) : OudsAnnotatedString(annotatedString) { + + override fun transform(transform: (AnnotatedString) -> AnnotatedString): TestAnnotatedString { + return TestAnnotatedString(transform(annotatedString)) + } val spanStyles: List> = annotatedString.spanStyles @@ -730,7 +734,7 @@ private class TestAnnotatedString(private val annotatedString: AnnotatedString) fun getStrongAnnotations(): List> = getStringAnnotations().filter { it.item == StrongAnnotation } - class Builder(capacity: Int = 16) : OudsAnnotatedString.Builder(capacity, TestAnnotatedString::class.java), StrongBuilder, + class Builder(capacity: Int = 16) : OudsAnnotatedString.Builder(capacity), StrongBuilder, LinkBuilder { constructor(text: String) : this() { @@ -741,6 +745,10 @@ private class TestAnnotatedString(private val annotatedString: AnnotatedString) append(text) } + override fun toAnnotatedString(): TestAnnotatedString { + return TestAnnotatedString(builder.toAnnotatedString()) + } + override fun addStrong(start: Int, end: Int) = addStrongImpl(start, end) override fun pushStrong(): Int = pushStrongImpl() @@ -754,5 +762,5 @@ private class TestAnnotatedString(private val annotatedString: AnnotatedString) } private fun buildTestAnnotatedString(builder: (TestAnnotatedString.Builder).() -> Unit): TestAnnotatedString { - return buildOudsAnnotatedString(builder) + return buildOudsAnnotatedString({ TestAnnotatedString.Builder() }, builder) } diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt index 218aee5fb1..c8aa3e6e39 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/InteractionValuesIndicationNodeFactory.kt @@ -33,6 +33,7 @@ import kotlinx.coroutines.async import kotlinx.coroutines.awaitAll import kotlinx.coroutines.flow.collectLatest import kotlinx.coroutines.launch +import kotlin.jvm.JvmName internal fun interactionValuesIndication(vararg interactionValues: InteractionValue<*, *>): IndicationNodeFactory = InteractionValuesIndicationNodeFactory(values = interactionValues.toList()) diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt index 1d3abae18b..36881c59f3 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt @@ -44,6 +44,10 @@ import androidx.compose.ui.text.AnnotatedString class OudsAnnotatedAlertMessageBulletListLabel internal constructor(annotatedString: AnnotatedString) : OudsAnnotatedString(annotatedString) { + override fun transform(transform: (AnnotatedString) -> AnnotatedString): OudsAnnotatedAlertMessageBulletListLabel { + return OudsAnnotatedAlertMessageBulletListLabel(transform(annotatedString)) + } + /** * Builder for creating [OudsAnnotatedAlertMessageBulletListLabel] with strong text and link formatting. * @@ -54,7 +58,7 @@ class OudsAnnotatedAlertMessageBulletListLabel internal constructor(annotatedStr * @param capacity Initial capacity for the underlying string builder. Defaults to 16. */ class Builder(capacity: Int = 16) : - OudsAnnotatedString.Builder(capacity, OudsAnnotatedAlertMessageBulletListLabel::class.java), + OudsAnnotatedString.Builder(capacity), StrongBuilder, LinkBuilder { /** @@ -84,6 +88,10 @@ class OudsAnnotatedAlertMessageBulletListLabel internal constructor(annotatedStr append(text) } + override fun toAnnotatedString(): OudsAnnotatedAlertMessageBulletListLabel { + return OudsAnnotatedAlertMessageBulletListLabel(builder.toAnnotatedString()) + } + override fun addStrong(start: Int, end: Int) = addStrongImpl(start, end) override fun pushStrong(): Int = pushStrongImpl() @@ -111,5 +119,5 @@ class OudsAnnotatedAlertMessageBulletListLabel internal constructor(annotatedStr * @return The constructed annotated alert message bullet list label. */ fun buildOudsAnnotatedAlertMessageBulletListLabel(builder: (OudsAnnotatedAlertMessageBulletListLabel.Builder).() -> Unit): OudsAnnotatedAlertMessageBulletListLabel { - return buildOudsAnnotatedString(builder) + return buildOudsAnnotatedString({ OudsAnnotatedAlertMessageBulletListLabel.Builder() }, builder) } diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt index 32fdfa637f..d9b8068f62 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt @@ -41,6 +41,10 @@ import androidx.compose.ui.text.AnnotatedString class OudsAnnotatedAlertMessageDescription internal constructor(annotatedString: AnnotatedString) : OudsAnnotatedString(annotatedString) { + override fun transform(transform: (AnnotatedString) -> AnnotatedString): OudsAnnotatedAlertMessageDescription { + return OudsAnnotatedAlertMessageDescription(transform(annotatedString)) + } + /** * Builder for creating [OudsAnnotatedAlertMessageDescription] with strong text and link formatting. * @@ -51,7 +55,7 @@ class OudsAnnotatedAlertMessageDescription internal constructor(annotatedString: * @param capacity Initial capacity for the underlying string builder. Defaults to 16. */ class Builder(capacity: Int = 16) : - OudsAnnotatedString.Builder(capacity, OudsAnnotatedAlertMessageDescription::class.java), + OudsAnnotatedString.Builder(capacity), StrongBuilder, LinkBuilder { /** @@ -81,6 +85,10 @@ class OudsAnnotatedAlertMessageDescription internal constructor(annotatedString: append(text) } + override fun toAnnotatedString(): OudsAnnotatedAlertMessageDescription { + return OudsAnnotatedAlertMessageDescription(builder.toAnnotatedString()) + } + override fun addStrong(start: Int, end: Int) = addStrongImpl(start, end) override fun pushStrong(): Int = pushStrongImpl() @@ -112,5 +120,5 @@ class OudsAnnotatedAlertMessageDescription internal constructor(annotatedString: * @return The constructed annotated alert message description. */ fun buildOudsAnnotatedAlertMessageDescription(builder: (OudsAnnotatedAlertMessageDescription.Builder).() -> Unit): OudsAnnotatedAlertMessageDescription { - return buildOudsAnnotatedString(builder) + return buildOudsAnnotatedString({ OudsAnnotatedAlertMessageDescription.Builder() }, builder) } diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt index abe8c4602f..0d69097753 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt @@ -39,6 +39,10 @@ import androidx.compose.ui.text.AnnotatedString class OudsAnnotatedBulletListLabel internal constructor(annotatedString: AnnotatedString) : OudsAnnotatedString(annotatedString) { + override fun transform(transform: (AnnotatedString) -> AnnotatedString): OudsAnnotatedBulletListLabel { + return OudsAnnotatedBulletListLabel(transform(annotatedString)) + } + /** * Builder for creating [OudsAnnotatedBulletListLabel] with strong text and link formatting. * @@ -49,7 +53,7 @@ class OudsAnnotatedBulletListLabel internal constructor(annotatedString: Annotat * @param capacity Initial capacity for the underlying string builder. Defaults to 16. */ class Builder(capacity: Int = 16) : - OudsAnnotatedString.Builder(capacity, OudsAnnotatedBulletListLabel::class.java), + OudsAnnotatedString.Builder(capacity), StrongBuilder, LinkBuilder { /** @@ -79,6 +83,10 @@ class OudsAnnotatedBulletListLabel internal constructor(annotatedString: Annotat append(text) } + override fun toAnnotatedString(): OudsAnnotatedBulletListLabel { + return OudsAnnotatedBulletListLabel(builder.toAnnotatedString()) + } + override fun addStrong(start: Int, end: Int) = addStrongImpl(start, end) override fun pushStrong(): Int = pushStrongImpl() @@ -108,5 +116,5 @@ class OudsAnnotatedBulletListLabel internal constructor(annotatedString: Annotat * @return The constructed annotated bullet list label. */ fun buildOudsAnnotatedBulletListLabel(builder: (OudsAnnotatedBulletListLabel.Builder).() -> Unit): OudsAnnotatedBulletListLabel { - return buildOudsAnnotatedString(builder) + return buildOudsAnnotatedString({ OudsAnnotatedBulletListLabel.Builder() }, builder) } diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt index 69d510f802..7fc2a9ec94 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedErrorMessage.kt @@ -40,6 +40,10 @@ import androidx.compose.ui.text.AnnotatedString */ class OudsAnnotatedErrorMessage internal constructor(annotatedString: AnnotatedString) : OudsAnnotatedString(annotatedString) { + override fun transform(transform: (AnnotatedString) -> AnnotatedString): OudsAnnotatedErrorMessage { + return OudsAnnotatedErrorMessage(transform(annotatedString)) + } + /** * Builder for creating [OudsAnnotatedErrorMessage] with strong text formatting. * @@ -48,7 +52,7 @@ class OudsAnnotatedErrorMessage internal constructor(annotatedString: AnnotatedS * * @param capacity Initial capacity for the underlying string builder. Defaults to 16. */ - class Builder(capacity: Int = 16) : OudsAnnotatedString.Builder(capacity, OudsAnnotatedErrorMessage::class.java), + class Builder(capacity: Int = 16) : OudsAnnotatedString.Builder(capacity), StrongBuilder { /** @@ -78,6 +82,10 @@ class OudsAnnotatedErrorMessage internal constructor(annotatedString: AnnotatedS append(text) } + override fun toAnnotatedString(): OudsAnnotatedErrorMessage { + return OudsAnnotatedErrorMessage(builder.toAnnotatedString()) + } + override fun addStrong(start: Int, end: Int) = addStrongImpl(start, end) override fun pushStrong(): Int = pushStrongImpl() @@ -99,5 +107,5 @@ class OudsAnnotatedErrorMessage internal constructor(annotatedString: AnnotatedS * @return The constructed annotated error message. */ fun buildOudsAnnotatedErrorMessage(builder: (OudsAnnotatedErrorMessage.Builder).() -> Unit): OudsAnnotatedErrorMessage { - return buildOudsAnnotatedString(builder) + return buildOudsAnnotatedString({ OudsAnnotatedErrorMessage.Builder() }, builder) } diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt index 634829eaa3..5eb21f7203 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedHelperText.kt @@ -38,6 +38,10 @@ import androidx.compose.ui.text.AnnotatedString */ class OudsAnnotatedHelperText internal constructor(annotatedString: AnnotatedString) : OudsAnnotatedString(annotatedString) { + override fun transform(transform: (AnnotatedString) -> AnnotatedString): OudsAnnotatedHelperText { + return OudsAnnotatedHelperText(transform(annotatedString)) + } + /** * Builder for creating [OudsAnnotatedHelperText] with strong text formatting. * @@ -46,7 +50,7 @@ class OudsAnnotatedHelperText internal constructor(annotatedString: AnnotatedStr * * @param capacity Initial capacity for the underlying string builder. Defaults to 16. */ - class Builder(capacity: Int = 16) : OudsAnnotatedString.Builder(capacity, OudsAnnotatedHelperText::class.java), StrongBuilder { + class Builder(capacity: Int = 16) : OudsAnnotatedString.Builder(capacity), StrongBuilder { /** * Creates a builder initialized with plain text. @@ -74,7 +78,11 @@ class OudsAnnotatedHelperText internal constructor(annotatedString: AnnotatedStr constructor(text: AnnotatedString) : this() { append(text) } - + + override fun toAnnotatedString(): OudsAnnotatedHelperText { + return OudsAnnotatedHelperText(builder.toAnnotatedString()) + } + override fun addStrong(start: Int, end: Int) = addStrongImpl(start, end) override fun pushStrong(): Int = pushStrongImpl() @@ -97,5 +105,5 @@ class OudsAnnotatedHelperText internal constructor(annotatedString: AnnotatedStr * @return The constructed annotated helper text. */ fun buildOudsAnnotatedHelperText(builder: (OudsAnnotatedHelperText.Builder).() -> Unit): OudsAnnotatedHelperText { - return buildOudsAnnotatedString(builder) + return buildOudsAnnotatedString({ OudsAnnotatedHelperText.Builder() }, builder) } diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt index 188ba9d532..712021510f 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt @@ -40,7 +40,7 @@ import com.orange.ouds.core.theme.OudsTheme * * This class implements [CharSequence], making it compatible with standard string operations. */ -open class OudsAnnotatedString internal constructor(annotatedString: AnnotatedString) : CharSequence by annotatedString +abstract class OudsAnnotatedString internal constructor(annotatedString: AnnotatedString) : CharSequence by annotatedString where T : OudsAnnotatedString { internal companion object { @@ -48,7 +48,7 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate const val StrongAnnotation = "OudsAnnotatedString.StrongAnnotation" } - private val _annotatedString = annotatedString + protected val annotatedString = annotatedString // The link colors depend on the current light / dark mode as well as the current OudsColorMode // Thus this function must be accessed at the call site of the Text composable it is displayed into @@ -59,7 +59,7 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate linkStyle: TextStyle = OudsTheme.typography.label.medium.strong ): AnnotatedString { val linkStyles = getTextLinkStyles(linkStyle) - return _annotatedString.mapAnnotations { range -> + return annotatedString.mapAnnotations { range -> when (val annotation = range.item) { is StringAnnotation if (annotation.value == StrongAnnotation) -> { with(range) { AnnotatedString.Range(strongStyle.toSpanStyle(), start, end) } @@ -93,19 +93,19 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate * @see AnnotatedString.plus */ operator fun plus(other: T): T { - return createInstance(_annotatedString.plus(other._annotatedString)) + return transform { it.plus(other.annotatedString) } } override fun equals(other: Any?): Boolean { if (this === other) return true if (other !is OudsAnnotatedString) return false - if (other._annotatedString != _annotatedString) return false + if (other.annotatedString != annotatedString) return false return true } - override fun hashCode(): Int = _annotatedString.hashCode() + override fun hashCode(): Int = annotatedString.hashCode() - override fun toString(): String = _annotatedString.toString() + override fun toString(): String = annotatedString.toString() /** * Create upper case transformed [OudsAnnotatedString]. @@ -121,7 +121,7 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate * If empty locale list is passed, use the current locale instead. * @return An uppercase transformed string. */ - fun toUpperCase(localeList: LocaleList = LocaleList.current): T = createInstance(_annotatedString.toUpperCase(localeList)) + fun toUpperCase(localeList: LocaleList = LocaleList.current): T = transform { it.toUpperCase(localeList) } /** * Create lower case transformed [OudsAnnotatedString]. @@ -137,7 +137,7 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate * If empty locale list is passed, use the current locale instead. * @return A lowercase transformed string. */ - fun toLowerCase(localeList: LocaleList = LocaleList.current): T = createInstance(_annotatedString.toLowerCase(localeList)) + fun toLowerCase(localeList: LocaleList = LocaleList.current): T = transform { it.toLowerCase(localeList) } /** * Create capitalized [OudsAnnotatedString]. @@ -154,7 +154,7 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate * currently ignored since underlying Kotlin method is experimental. * @return A capitalized string. */ - fun capitalize(localeList: LocaleList = LocaleList.current): T = createInstance(_annotatedString.capitalize(localeList)) + fun capitalize(localeList: LocaleList = LocaleList.current): T = transform { it.capitalize(localeList) } /** * Create decapitalized [OudsAnnotatedString]. @@ -171,12 +171,16 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate * locale is currently ignored since underlying Kotlin method is experimental. * @return A decapitalized string. */ - fun decapitalize(localeList: LocaleList = LocaleList.current): T = createInstance(_annotatedString.decapitalize(localeList)) + fun decapitalize(localeList: LocaleList = LocaleList.current): T = transform { it.decapitalize(localeList) } - private fun createInstance(annotatedString: AnnotatedString): T { - @Suppress("UNCHECKED_CAST") - return createOudsAnnotatedString(annotatedString, this::class.java as Class) - } + /** + * Transforms the content of this annotated string by applying the given transformation function. + * Subclasses must implement this to support transformations like toUpperCase(), toLowerCase(), etc. + * + * @param transform A function that transforms the underlying [AnnotatedString]. + * @return A new instance of the same type with the transformed content. + */ + protected abstract fun transform(transform: (AnnotatedString) -> AnnotatedString): T @Composable private fun getTextLinkStyles(linkStyle: TextStyle): TextLinkStyles { @@ -202,9 +206,9 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate * * @param capacity Initial capacity for the internal char buffer. */ - open class Builder internal constructor(capacity: Int, private val clazz: Class) : Appendable where T : OudsAnnotatedString { + abstract class Builder internal constructor(capacity: Int) : Appendable where T : OudsAnnotatedString { - private val builder = AnnotatedString.Builder(capacity) + protected val builder = AnnotatedString.Builder(capacity) /** * Appends the given [String] to this [Builder]. @@ -229,7 +233,7 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate override fun append(text: CharSequence?): Builder = apply { when (text) { // The append method of AnnotatedString.Builder preserves annotations if the CharSequence is an AnnotatedString - is OudsAnnotatedString<*> -> builder.append(text._annotatedString.filterSupportedAnnotations()) + is OudsAnnotatedString<*> -> builder.append(text.annotatedString.filterSupportedAnnotations()) is AnnotatedString -> builder.append(text.filterSupportedAnnotations()) else -> builder.append(text) } @@ -253,7 +257,7 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate override fun append(text: CharSequence?, start: Int, end: Int): Builder = apply { when (text) { // The append method of AnnotatedString.Builder preserves annotations if the CharSequence is an AnnotatedString - is OudsAnnotatedString<*> -> builder.append(text._annotatedString.filterSupportedAnnotations(), start, end) + is OudsAnnotatedString<*> -> builder.append(text.annotatedString.filterSupportedAnnotations(), start, end) is AnnotatedString -> builder.append(text.filterSupportedAnnotations(), start, end) else -> builder.append(text, start, end) } @@ -268,12 +272,11 @@ open class OudsAnnotatedString internal constructor(annotatedString: Annotate /** * Constructs an [OudsAnnotatedString] based on the configurations applied to the [Builder]. + * Subclasses must implement this to provide the correct instance type. * * @return The constructed annotated string. */ - open fun toAnnotatedString(): T { - return createOudsAnnotatedString(builder.toAnnotatedString(), clazz) - } + abstract fun toAnnotatedString(): T protected fun addStrongImpl(start: Int, end: Int) { builder.addStrongAnnotation(start, end) @@ -499,21 +502,9 @@ inline fun OudsAnnotatedString.LinkBuilder.withLink(link: OudsLinkAnno } } -internal inline fun buildOudsAnnotatedString(noinline builder: (U).() -> Unit): T where U : OudsAnnotatedString.Builder, T : OudsAnnotatedString { - return buildOudsAnnotatedString(U::class.java, builder) -} - -@PublishedApi -internal fun buildOudsAnnotatedString( - builderClass: Class, - builder: (T).() -> Unit -): U where T : OudsAnnotatedString.Builder, U : OudsAnnotatedString { - return builderClass.getConstructor() - .newInstance() - .apply(builder) - .toAnnotatedString() -} - -private fun createOudsAnnotatedString(annotatedString: AnnotatedString, clazz: Class): T where T : OudsAnnotatedString { - return clazz.getConstructor(AnnotatedString::class.java).newInstance(annotatedString) +internal inline fun buildOudsAnnotatedString( + builderFactory: () -> U, + builder: (U).() -> Unit +): T where U : OudsAnnotatedString.Builder, T : OudsAnnotatedString { + return builderFactory().apply(builder).toAnnotatedString() } From 480824b408857f7c3cc2b0473d4d7a12c48e8da6 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Wed, 22 Jul 2026 14:38:43 +0200 Subject: [PATCH 15/18] Various fixes --- app/src/main/AndroidManifest.xml | 8 +- .../com/orange/ouds/app/OudsApplication.kt | 12 +- .../java/com/orange/ouds/app/ui/MainScreen.kt | 8 +- .../java/com/orange/ouds/app/ui/ThemeState.kt | 13 +- .../ui/utilities/ThemeDrawableResources.kt | 9 + .../app/ui/utilities/composable/AppPreview.kt | 3 - .../composable/CustomizationElements.kt | 3 +- app/src/main/res/drawable/ic_orange_close.xml | 9 + app/src/main/res/drawable/ic_sosh_close.xml | 10 + .../main/res/drawable/ic_wireframe_close.xml | 9 + .../component/OudsPinCodeInput.android.kt | 81 +++++++++ .../ouds/core/component/OudsPinCodeInput.kt | 65 +------ .../orange/ouds/core/utilities/OudsPreview.kt | 7 - .../core/component/OudsPinCodeInput.ios.kt | 29 +++ .../ouds/core/utilities/HighContrast.ios.kt | 1 + .../orange/ouds/theme/OudsThemeSettings.kt | 10 +- .../OrangeBusinessToolsTheme.kt | 2 +- theme-orange/build.gradle.kts | 1 + .../theme/orange/OrangeFontFamily.android.kt | 142 +++++++++++++++ .../ouds/theme/orange/OrangeFontProvider.kt | 172 ++++++++++++++++++ .../ouds/theme/orange/OrangeFontFamily.kt | 139 +++----------- .../ouds/theme/orange/OrangeFontProvider.kt | 172 ------------------ .../ouds/theme/orange/OrangeFontFamily.ios.kt | 31 ++++ 23 files changed, 546 insertions(+), 390 deletions(-) create mode 100644 app/src/main/res/drawable/ic_orange_close.xml create mode 100644 app/src/main/res/drawable/ic_sosh_close.xml create mode 100644 app/src/main/res/drawable/ic_wireframe_close.xml create mode 100644 core/src/androidMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.android.kt create mode 100644 core/src/iosMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.ios.kt create mode 100644 theme-orange/src/androidMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.android.kt create mode 100644 theme-orange/src/androidMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt delete mode 100644 theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt create mode 100644 theme-orange/src/iosMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.ios.kt diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 7da1a3f3ad..7173917c5d 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -22,10 +22,10 @@ android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.MaterialComponents.NoActionBar"> - - - - + diff --git a/app/src/main/java/com/orange/ouds/app/OudsApplication.kt b/app/src/main/java/com/orange/ouds/app/OudsApplication.kt index 2838e9248c..d3a8c6a75b 100644 --- a/app/src/main/java/com/orange/ouds/app/OudsApplication.kt +++ b/app/src/main/java/com/orange/ouds/app/OudsApplication.kt @@ -18,9 +18,9 @@ import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.setValue import com.google.firebase.Firebase import com.google.firebase.crashlytics.crashlytics -//import com.orange.ouds.theme.orange.OrangeFontFamily -//import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic -//import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin +import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic +import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin +import com.orange.ouds.theme.orange.preloadDownloadableFontFamilies import dagger.hilt.android.HiltAndroidApp @HiltAndroidApp @@ -39,9 +39,9 @@ class OudsApplication : Application() { // Thus we use the Android Downloadable Fonts feature to retrieve the files on a remote server. // However the preferred way of using the Helvetica Neue font in the Orange themes is configuring // bundled font files with `OrangeHelveticaNeueLatin.Bundled` and/or `OrangeHelveticaNeueArabic.Bundled`. -// OrangeFontFamily.preloadDownloadableFontFamilies(this, listOf(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable)) { -// areDownloadableOrangeFontFamiliesPreloaded = true -// } + preloadDownloadableFontFamilies(this, listOf(OrangeHelveticaNeueLatin.Downloadable, OrangeHelveticaNeueArabic.Downloadable)) { + areDownloadableOrangeFontFamiliesPreloaded = true + } } private fun initializeCrashlytics() { diff --git a/app/src/main/java/com/orange/ouds/app/ui/MainScreen.kt b/app/src/main/java/com/orange/ouds/app/ui/MainScreen.kt index 9c82481502..501cb74439 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/MainScreen.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/MainScreen.kt @@ -57,8 +57,7 @@ import com.orange.ouds.core.theme.OudsTheme import com.orange.ouds.foundation.RestrictedOudsApi import com.orange.ouds.foundation.extensions.orElse import com.orange.ouds.theme.OudsThemeSettings -import com.orange.ouds.theme.wireframe.WIREFRAME_THEME_NAME -//import com.orange.ouds.theme.orange.ORANGE_THEME_NAME +import com.orange.ouds.theme.orange.ORANGE_THEME_NAME import dev.chrisbanes.haze.HazeStyle import dev.chrisbanes.haze.hazeEffect import dev.chrisbanes.haze.hazeSource @@ -68,8 +67,7 @@ import dev.chrisbanes.haze.rememberHazeState fun MainScreen(mainViewModel: MainViewModel = hiltViewModel()) { MainScreen( themeSettings = mainViewModel.getUserThemeSettings().orElse { OudsThemeSettings() }, - //currentThemeName = mainViewModel.getUserThemeName().orElse { ORANGE_THEME_NAME }, - currentThemeName = mainViewModel.getUserThemeName().orElse { WIREFRAME_THEME_NAME }, + currentThemeName = mainViewModel.getUserThemeName().orElse { ORANGE_THEME_NAME }, onThemeChange = { themeName -> mainViewModel.storeUserThemeName(themeName) }, @@ -206,7 +204,7 @@ private fun PreviewMainScreen() = AppPreview { // See https://issuetracker.google.com/issues/240601093 MainScreen( themeSettings = OudsThemeSettings(), - currentThemeName = WIREFRAME_THEME_NAME,//ORANGE_THEME_NAME, + currentThemeName = ORANGE_THEME_NAME, onThemeChange = {}, onThemeSettingsChange = {} ) diff --git a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt index ae3e7b9b76..9d7caef3a9 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/ThemeState.kt @@ -30,15 +30,6 @@ import com.orange.ouds.theme.orangecompact.ORANGE_COMPACT_THEME_NAME import com.orange.ouds.theme.orangecompact.OrangeCompactTheme import com.orange.ouds.theme.sosh.SOSH_THEME_NAME import com.orange.ouds.theme.sosh.SoshTheme -//import com.orange.ouds.theme.orange.ORANGE_THEME_NAME -//import com.orange.ouds.theme.orange.OrangeFontFamily -//import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic -//import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin -//import com.orange.ouds.theme.orange.OrangeTheme -//import com.orange.ouds.theme.orangecompact.ORANGE_COMPACT_THEME_NAME -//import com.orange.ouds.theme.orangecompact.OrangeCompactTheme -//import com.orange.ouds.theme.sosh.SOSH_THEME_NAME -//import com.orange.ouds.theme.sosh.SoshTheme import com.orange.ouds.theme.wireframe.WIREFRAME_THEME_NAME import com.orange.ouds.theme.wireframe.WireframeTheme @@ -51,7 +42,7 @@ fun rememberThemeState( SOSH_THEME_NAME, WIREFRAME_THEME_NAME ), - currentThemeName: String = WIREFRAME_THEME_NAME,//ORANGE_THEME_NAME, + currentThemeName: String = ORANGE_THEME_NAME, areDownloadableOrangeFontFamiliesPreloaded: Boolean = false ) = rememberSaveable(settings, themeNames, currentThemeName, areDownloadableOrangeFontFamiliesPreloaded, saver = ThemeState.Saver) { ThemeState(settings, themeNames, currentThemeName, areDownloadableOrangeFontFamiliesPreloaded) @@ -117,7 +108,7 @@ class ThemeState( private fun getCurrentTheme(name: String): OudsThemeContract { return themes.firstOrNull { it.name == name } - .orElse { themes.firstOrNull { it.name == WIREFRAME_THEME_NAME } } + .orElse { themes.firstOrNull { it.name == ORANGE_THEME_NAME } } .orElse { themes.first() } } diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt index ab00d2349c..b48f664ff7 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/ThemeDrawableResources.kt @@ -44,6 +44,15 @@ class ThemeDrawableResources(val theme: OudsThemeContract) { else -> error(ThemeDrawableResources::call) } + val close: Int + @DrawableRes + get() = when (theme) { + is OrangeTheme, is OrangeCompactTheme -> R.drawable.ic_orange_close + is SoshTheme -> R.drawable.ic_sosh_close + is WireframeTheme -> R.drawable.ic_wireframe_close + else -> error(ThemeDrawableResources::close) + } + val filters: Int @DrawableRes get() = when (theme) { diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt index 52a9c1d856..73da5d0c2b 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/AppPreview.kt @@ -25,9 +25,6 @@ import com.orange.ouds.foundation.InternalOudsApi import com.orange.ouds.theme.orange.OrangeTheme import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily -//import com.orange.ouds.theme.orange.OrangeTheme -//import com.orange.ouds.theme.orange.getPreviewOrangeFontFamily - @OptIn(InternalOudsApi::class) @Composable fun AppPreview( diff --git a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt index 885a918507..424147b8d5 100644 --- a/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt +++ b/app/src/main/java/com/orange/ouds/app/ui/utilities/composable/CustomizationElements.kt @@ -48,6 +48,7 @@ import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.input.TextFieldValue import androidx.compose.ui.unit.Dp import com.orange.ouds.app.R +import com.orange.ouds.app.ui.utilities.LocalThemeDrawableResources import com.orange.ouds.core.component.OudsFilterChip import com.orange.ouds.core.component.OudsSwitchItem import com.orange.ouds.core.component.OudsTextInput @@ -202,7 +203,7 @@ fun CustomizationTextInput( keyboardOptions = keyboardOptions, trailingIconButton = if (value.text.isNotEmpty()) { OudsTextInputTrailingIconButton( - painter = painterResource(R.drawable.ic_copy), + painter = painterResource(id = LocalThemeDrawableResources.current.close), contentDescription = stringResource(R.string.app_components_common_textInputClearIcon_a11y), onClick = { onValueChange(value.copy(text = resetValue)) diff --git a/app/src/main/res/drawable/ic_orange_close.xml b/app/src/main/res/drawable/ic_orange_close.xml new file mode 100644 index 0000000000..372317208c --- /dev/null +++ b/app/src/main/res/drawable/ic_orange_close.xml @@ -0,0 +1,9 @@ + + + diff --git a/app/src/main/res/drawable/ic_sosh_close.xml b/app/src/main/res/drawable/ic_sosh_close.xml new file mode 100644 index 0000000000..2ea0f3f319 --- /dev/null +++ b/app/src/main/res/drawable/ic_sosh_close.xml @@ -0,0 +1,10 @@ + + + diff --git a/app/src/main/res/drawable/ic_wireframe_close.xml b/app/src/main/res/drawable/ic_wireframe_close.xml new file mode 100644 index 0000000000..6a9699df66 --- /dev/null +++ b/app/src/main/res/drawable/ic_wireframe_close.xml @@ -0,0 +1,9 @@ + + + diff --git a/core/src/androidMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.android.kt b/core/src/androidMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.android.kt new file mode 100644 index 0000000000..735ee328e1 --- /dev/null +++ b/core/src/androidMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.android.kt @@ -0,0 +1,81 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.core.component + +import androidx.compose.foundation.text.input.TextFieldState +import androidx.compose.foundation.text.input.insert +import androidx.compose.material3.ExperimentalMaterial3Api +import androidx.compose.material3.LocalRippleConfiguration +import androidx.compose.material3.RichTooltip +import androidx.compose.material3.Text +import androidx.compose.material3.TextButton +import androidx.compose.material3.TooltipAnchorPosition +import androidx.compose.material3.TooltipBox +import androidx.compose.material3.TooltipDefaults +import androidx.compose.material3.rememberTooltipState +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider +import androidx.compose.runtime.rememberCoroutineScope +import androidx.compose.ui.platform.LocalClipboard +import com.orange.ouds.core.theme.OudsTheme +import kotlinx.coroutines.launch +import org.jetbrains.compose.resources.stringResource +import ouds_android.core.generated.resources.Res +import ouds_android.core.generated.resources.core_pinCodeInput_paste_label + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +internal actual fun OudsPinCodeInputTooltipBox( + textFieldState: TextFieldState, + length: OudsPinCodeInputLength, + content: @Composable () -> Unit +) { + val tooltipState = rememberTooltipState(isPersistent = true) + // TODO: Replace with OUDS tooltip when available + TooltipBox( + positionProvider = TooltipDefaults.rememberTooltipPositionProvider( + positioning = TooltipAnchorPosition.Above, + spacingBetweenTooltipAndAnchor = OudsTheme.spaces.fixed.extraSmall + ), + tooltip = { + val clipboard = LocalClipboard.current + val scope = rememberCoroutineScope() + RichTooltip { + CompositionLocalProvider(LocalRippleConfiguration provides null) { + TextButton( + onClick = { + scope.launch { + clipboard.getClipEntry()?.clipData?.let { clipData -> + if (clipData.itemCount > 0) { + val text = clipData.getItemAt(0).text.toString() + textFieldState.edit { + insert(selection.min, text) + with(inputTransformation(length)) { + transformInput() + } + } + } + } + tooltipState.dismiss() + } + } + ) { + Text(text = stringResource(Res.string.core_pinCodeInput_paste_label)) + } + } + } + }, + state = tooltipState, + content = content + ) +} diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt index fd4f19ae9a..6188064db4 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt @@ -28,27 +28,16 @@ import androidx.compose.foundation.text.input.delete import androidx.compose.foundation.text.input.forEachChangeReversed import androidx.compose.foundation.text.input.insert import androidx.compose.foundation.text.input.rememberTextFieldState -import androidx.compose.material3.ExperimentalMaterial3Api -import androidx.compose.material3.LocalRippleConfiguration -import androidx.compose.material3.RichTooltip -import androidx.compose.material3.Text -import androidx.compose.material3.TextButton -import androidx.compose.material3.TooltipAnchorPosition -import androidx.compose.material3.TooltipBox -import androidx.compose.material3.TooltipDefaults -import androidx.compose.material3.rememberTooltipState + import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.runtime.LaunchedEffect import androidx.compose.runtime.getValue import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberCoroutineScope import androidx.compose.runtime.snapshotFlow import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.focus.FocusRequester import androidx.compose.ui.focus.focusRequester -import androidx.compose.ui.platform.LocalClipboard import androidx.compose.ui.platform.LocalSoftwareKeyboardController import androidx.compose.ui.text.TextRange import androidx.compose.ui.text.input.KeyboardType @@ -71,10 +60,6 @@ import com.orange.ouds.core.utilities.mapSettings import com.orange.ouds.foundation.utilities.BasicPreviewParameterProvider import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.OudsThemeSettings -import kotlinx.coroutines.launch -import org.jetbrains.compose.resources.stringResource -import ouds_android.core.generated.resources.Res -import ouds_android.core.generated.resources.core_pinCodeInput_paste_label /** * PIN code input is a UI element that allows to capture short, fixed-length numeric codes, typically for authentication or confirmation purposes, such as a @@ -272,48 +257,12 @@ private fun OudsPinCodeInput( } } -@OptIn(ExperimentalMaterial3Api::class, ExperimentalFoundationApi::class) @Composable -private fun OudsPinCodeInputTooltipBox(textFieldState: TextFieldState, length: OudsPinCodeInputLength, content: @Composable () -> Unit) { - val tooltipState = rememberTooltipState(isPersistent = true) - // TODO: Replace with OUDS tooltip when available - TooltipBox( - positionProvider = TooltipDefaults.rememberTooltipPositionProvider( - positioning = TooltipAnchorPosition.Above, - spacingBetweenTooltipAndAnchor = OudsTheme.spaces.fixed.extraSmall - ), - tooltip = { - val clipboard = LocalClipboard.current - val scope = rememberCoroutineScope() - RichTooltip { - CompositionLocalProvider(LocalRippleConfiguration provides null) { - TextButton( - onClick = { - scope.launch { -// clipboard.getClipEntry()?.clipData?.let { clipData -> -// if (clipData.itemCount > 0) { -// val text = clipData.getItemAt(0).text.toString() -// textFieldState.edit { -// insert(selection.min, text) -// with(inputTransformation(length)) { -// transformInput() -// } -// } -// } -// } - tooltipState.dismiss() - } - } - ) { - Text(text = stringResource(Res.string.core_pinCodeInput_paste_label)) - } - } - } - }, - state = tooltipState, - content = content - ) -} +internal expect fun OudsPinCodeInputTooltipBox( + textFieldState: TextFieldState, + length: OudsPinCodeInputLength, + content: @Composable () -> Unit +) @Composable private fun OudsPinCodeInputDecorator( @@ -392,7 +341,7 @@ private fun smallDeviceSpecificRules(length: OudsPinCodeInputLength): Boolean { } @OptIn(ExperimentalFoundationApi::class) -private fun inputTransformation(length: OudsPinCodeInputLength): InputTransformation { +internal fun inputTransformation(length: OudsPinCodeInputLength): InputTransformation { return InputTransformation { changes.forEachChangeReversed { range, originalRange -> // Text is inserted with either keyboard inputs or pasting from the clipboard diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt index cb14691372..8e8d9c02da 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/utilities/OudsPreview.kt @@ -94,12 +94,6 @@ fun OudsPreview( highContrastModeEnabled: Boolean = false, content: @Composable () -> Unit ) { - // Updating the configuration is only needed for UI tests - // It is not needed for Android Studio previews because the uiMode parameter of the @Preview annotation already configures the UI mode properly -// val configuration = LocalConfiguration.current.apply { -// isNightModeEnabled = darkThemeEnabled -// } - //CompositionLocalProvider(value = LocalConfiguration provides configuration) { OudsTheme( theme = theme, darkThemeEnabled = darkThemeEnabled @@ -117,7 +111,6 @@ fun OudsPreview( } } } - //} } internal fun OudsThemeContract.mapSettings(transform: (OudsThemeSettings) -> (OudsThemeSettings)): OudsThemeContract { diff --git a/core/src/iosMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.ios.kt b/core/src/iosMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.ios.kt new file mode 100644 index 0000000000..0893507498 --- /dev/null +++ b/core/src/iosMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.ios.kt @@ -0,0 +1,29 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.core.component + +import androidx.compose.foundation.ExperimentalFoundationApi +import androidx.compose.foundation.text.input.TextFieldState +import androidx.compose.runtime.Composable + +@OptIn(ExperimentalFoundationApi::class) +@Composable +internal actual fun OudsPinCodeInputTooltipBox( + textFieldState: TextFieldState, + length: OudsPinCodeInputLength, + content: @Composable () -> Unit +) { + // iOS implementation without paste functionality + // Simply render the content without tooltip + content() +} diff --git a/core/src/iosMain/kotlin/com/orange/ouds/core/utilities/HighContrast.ios.kt b/core/src/iosMain/kotlin/com/orange/ouds/core/utilities/HighContrast.ios.kt index fea6459671..e77ccad470 100644 --- a/core/src/iosMain/kotlin/com/orange/ouds/core/utilities/HighContrast.ios.kt +++ b/core/src/iosMain/kotlin/com/orange/ouds/core/utilities/HighContrast.ios.kt @@ -16,5 +16,6 @@ import androidx.compose.runtime.Composable @Composable actual fun isHighContrastModeEnabled(): Boolean { + // TODO: implement high contrast mode on iOS return false } \ No newline at end of file diff --git a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeSettings.kt b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeSettings.kt index 17d10ce386..ca7384aca7 100644 --- a/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeSettings.kt +++ b/theme-contract/src/commonMain/kotlin/com/orange/ouds/theme/OudsThemeSettings.kt @@ -68,12 +68,12 @@ data class OudsThemeSettings @JvmOverloads constructor( ) } }, - restore = { list -> + restore = { list: List -> OudsThemeSettings( - roundedCornerButtons = list[0] as Boolean, - roundedCornerTextInputs = list[1] as Boolean, - roundedCornerAlertMessages = list[2] as Boolean, - roundedCornerProgressIndicators = list[3] as Boolean + roundedCornerButtons = list[0] as Boolean?, + roundedCornerTextInputs = list[1] as Boolean?, + roundedCornerAlertMessages = list[2] as Boolean?, + roundedCornerProgressIndicators = list[3] as Boolean? ) } ) diff --git a/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt index 1d08c067c3..66d51c123b 100644 --- a/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt +++ b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt @@ -16,7 +16,7 @@ import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.orange.OrangeBundledFontFamily import com.orange.ouds.theme.orange.OrangeDownloadableFontFamily import com.orange.ouds.theme.orange.OrangeFontFamily -//import com.orange.ouds.theme.orange.OrangeFontProvider +import com.orange.ouds.theme.orange.OrangeFontProvider import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin import com.orange.ouds.theme.orangecompact.ORANGE_COMPACT_THEME_NAME diff --git a/theme-orange/build.gradle.kts b/theme-orange/build.gradle.kts index 093f46821c..7e1ef78e45 100644 --- a/theme-orange/build.gradle.kts +++ b/theme-orange/build.gradle.kts @@ -116,6 +116,7 @@ kotlin { // Add Android-specific dependencies here. Note that this source set depends on // commonMain by default and will correctly pull the Android artifacts of any KMP // dependencies declared in commonMain. + implementation(libs.androidx.core) } } diff --git a/theme-orange/src/androidMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.android.kt b/theme-orange/src/androidMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.android.kt new file mode 100644 index 0000000000..739dba2055 --- /dev/null +++ b/theme-orange/src/androidMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.android.kt @@ -0,0 +1,142 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.theme.orange + +import android.content.Context +import android.content.pm.PackageManager +import android.graphics.Typeface +import android.os.Build +import androidx.compose.ui.text.font.AndroidFont +import androidx.compose.ui.text.font.Font +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontLoadingStrategy +import androidx.compose.ui.text.font.FontStyle +import androidx.compose.ui.text.font.FontVariation.Settings +import androidx.compose.ui.text.font.FontWeight +import androidx.core.content.ContextCompat +import androidx.core.provider.FontRequest +import androidx.core.provider.FontsContractCompat + +/** + * Preloads the downloadable font families for the Orange themes on Android. + * Downloads fonts using Android Downloadable Fonts feature. + * + * @param context The Android context. + * @param downloadableFontFamilies The downloadable font families to preload. + * @param onComplete A callback that is called when the font families are fully loaded. + */ +actual fun preloadDownloadableFontFamilies( + context: Any, + downloadableFontFamilies: List, + onComplete: (success: Boolean) -> Unit +) { + val androidContext = context as Context + + val downloadableFontFamiliesToPreload = downloadableFontFamilies.filter { downloadableFontFamily -> + when (downloadableFontFamily) { + is OrangeHelveticaNeueLatin.Downloadable -> OrangeFontFamily.downloadedLatinFontFamily == null + is OrangeHelveticaNeueArabic.Downloadable -> OrangeFontFamily.downloadedArabicFontFamily == null + } + } + + if (downloadableFontFamiliesToPreload.isEmpty()) { + onComplete(true) + } else { + var preloadedDownloadableFontFamilyCount = 0 + + // Font requests require the list of sets of hashes for the certificates the provider is signed with. + // As OrangeFontProvider is embedded in the app, it is signed with the app certificate. + // That is why we can retrieve the certificate using methods on package manager. + val certificates = try { + @Suppress("DEPRECATION") + val flags = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) PackageManager.GET_SIGNING_CERTIFICATES else PackageManager.GET_SIGNATURES + val packageInfo = androidContext.packageManager.getPackageInfo(androidContext.packageName, flags) + val signatures = with(packageInfo) { + @Suppress("DEPRECATION") + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) signingInfo?.apkContentsSigners else signatures + } + listOf(signatures.orEmpty().map { it.toByteArray() }) + } catch (_: Exception) { + emptyList() + } + + var success = true + val callbackExecutor = ContextCompat.getMainExecutor(androidContext) + downloadableFontFamiliesToPreload.forEach { downloadableFontFamily -> + val fontWeights = when (downloadableFontFamily) { + is OrangeHelveticaNeueLatin.Downloadable -> listOf(FontWeight.Normal, FontWeight.Medium, FontWeight.Bold) + is OrangeHelveticaNeueArabic.Downloadable -> listOf(FontWeight.Light, FontWeight.Normal, FontWeight.Bold) + } + val script = when (downloadableFontFamily) { + is OrangeHelveticaNeueLatin.Downloadable -> OrangeFontProvider.QUERY_SCRIPT_PARAMETER_VALUE_LATIN + is OrangeHelveticaNeueArabic.Downloadable -> OrangeFontProvider.QUERY_SCRIPT_PARAMETER_VALUE_ARABIC + } + val typefaces = mutableMapOf() + + fontWeights.forEach { fontWeight -> + val query = + "${OrangeFontProvider.QUERY_WEIGHT_PARAMETER_KEY}=${fontWeight.weight}&${OrangeFontProvider.QUERY_SCRIPT_PARAMETER_KEY}=$script" + val fontRequest = FontRequest(OrangeFontProvider.AUTHORITY, androidContext.packageName, query, certificates) + + val callback = object : FontsContractCompat.FontRequestCallback() { + + override fun onTypefaceRetrieved(typeface: Typeface?) { + onTypefaceRequestComplete(fontWeight, typeface) + } + + override fun onTypefaceRequestFailed(reason: Int) { + onTypefaceRequestComplete(fontWeight, null) + } + + private fun onTypefaceRequestComplete(fontWeight: FontWeight, typeface: Typeface?) { + typefaces[fontWeight] = typeface + if (typefaces.size == fontWeights.size) { + if (typefaces.values.any { it == null }) { + success = false + } else { + val fonts = typefaces.mapNotNull { (fontWeight, typeface) -> + typeface?.let { Font(fontWeight, typeface) } + } + val downloadedFontFamily = FontFamily(fonts) + when (downloadableFontFamily) { + is OrangeHelveticaNeueLatin.Downloadable -> OrangeFontFamily.downloadedLatinFontFamily = downloadedFontFamily + is OrangeHelveticaNeueArabic.Downloadable -> OrangeFontFamily.downloadedArabicFontFamily = downloadedFontFamily + } + } + preloadedDownloadableFontFamilyCount++ + if (downloadableFontFamiliesToPreload.size == preloadedDownloadableFontFamilyCount) { + onComplete(success) + } + } + } + + private fun Font(weight: FontWeight, typeface: Typeface, style: FontStyle = FontStyle.Normal): Font { + val typefaceLoader = object : AndroidFont.TypefaceLoader { + override fun loadBlocking(context: Context, font: AndroidFont): Typeface? = typeface + override suspend fun awaitLoad(context: Context, font: AndroidFont): Typeface? = typeface + } + + return object : AndroidFont(FontLoadingStrategy.Blocking, typefaceLoader, Settings()) { + override val weight: FontWeight = weight + override val style: FontStyle = style + } + } + + } + + val style = if (fontWeight.weight >= FontWeight.Bold.weight) Typeface.BOLD else Typeface.NORMAL + FontsContractCompat.requestFont(androidContext, fontRequest, style, null, callbackExecutor, callback) + } + } + } +} diff --git a/theme-orange/src/androidMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt b/theme-orange/src/androidMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt new file mode 100644 index 0000000000..405532691d --- /dev/null +++ b/theme-orange/src/androidMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt @@ -0,0 +1,172 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.theme.orange + +import android.content.ContentProvider +import android.content.ContentValues +import android.database.Cursor +import android.database.MatrixCursor +import android.net.Uri +import android.os.CancellationSignal +import android.os.ParcelFileDescriptor +import androidx.compose.ui.text.font.FontWeight +import androidx.core.provider.FontsContractCompat +import java.io.File +import java.io.FileOutputStream +import java.net.URL + +/** + * The font provider for the Orange theme. + */ +class OrangeFontProvider : ContentProvider() { + + companion object { + + /** The Orange font provider authority. */ + const val AUTHORITY = "com.orange.ouds.theme.orange.fontprovider" + + internal const val QUERY_WEIGHT_PARAMETER_KEY = "weight" + internal const val QUERY_SCRIPT_PARAMETER_KEY = "script" + internal const val QUERY_SCRIPT_PARAMETER_VALUE_LATIN = "latin" + internal const val QUERY_SCRIPT_PARAMETER_VALUE_ARABIC = "arabic" + + private const val CDN_BASE_URL = "https://mastermedia.dam-broadcast.com" + } + + private enum class Font(val filename: String, val cdnFilename: String, val fontWeight: FontWeight, val script: String) { + + HelveticaNeueLatinRoman( + "helvetica_neue_latin_roman.ttf", + "pm_12751_491_491559-ngke9h7d3m-HelveticaNeue-Roman.ttf", + FontWeight.Normal, + QUERY_SCRIPT_PARAMETER_VALUE_LATIN + ), + HelveticaNeueLatinMedium( + "helvetica_neue_latin_medium.ttf", + "pm_12751_491_491556-bd333uw5x5-HelveticaNeue-Medium.ttf", + FontWeight.Medium, + QUERY_SCRIPT_PARAMETER_VALUE_LATIN + ), + HelveticaNeueLatinBold( + "helvetica_neue_latin_bold.ttf", + "pm_12751_491_491553-29arstkwm3-HelveticaNeue-Bold.ttf", + FontWeight.Bold, + QUERY_SCRIPT_PARAMETER_VALUE_LATIN + ), + HelveticaNeueArabicLight( + "helvetica_neue_arabic_light.ttf", + "pm_12751_502_502368-657u3r24tf-HelveticaNeueW20-Arabic-45Light.ttf", + FontWeight.Light, + QUERY_SCRIPT_PARAMETER_VALUE_ARABIC + ), + HelveticaNeueArabicRoman( + "helvetica_neue_arabic_roman.ttf", + "pm_12751_502_502371-4jrbp3k3ec-HelveticaNeueW20-Arabic-55Roman.ttf", + FontWeight.Normal, + QUERY_SCRIPT_PARAMETER_VALUE_ARABIC + ), + HelveticaNeueArabicBold( + "helvetica_neue_arabic_bold.ttf", + "pm_12751_502_502374-hak4nhssgj-HelveticaNeueW20-Arabic-75Bold.ttf", + FontWeight.Bold, + QUERY_SCRIPT_PARAMETER_VALUE_ARABIC + ) + } + + override fun onCreate(): Boolean = true + + override fun query( + uri: Uri, + projection: Array?, + selection: String?, + selectionArgs: Array?, + sortOrder: String?, + cancellationSignal: CancellationSignal? + ): Cursor? { + return context?.let { context -> + val arguments = selectionArgs?.firstOrNull() + ?.split("&") + ?.map { it.split("=") } + ?.associate { it[0] to it[1] } + .orEmpty() + val fontWeight = arguments[QUERY_WEIGHT_PARAMETER_KEY]?.toIntOrNull()?.let { FontWeight(it) } + val script = arguments[QUERY_SCRIPT_PARAMETER_KEY] + val font = Font.entries.firstOrNull { it.fontWeight == fontWeight && it.script == script } + var cursor: Cursor? = null + if (font != null) { + val fontFile = File(context.filesDir, font.filename) + if (!fontFile.exists()) { + try { + URL("$CDN_BASE_URL/${font.cdnFilename}").openStream().use { input -> + FileOutputStream(fontFile).use { output -> + input.copyTo(output) + } + } + } catch (_: Exception) { + cursor = MatrixCursor(arrayOf(FontsContractCompat.Columns.RESULT_CODE)) + cursor.addRow(arrayOf(FontsContractCompat.Columns.RESULT_CODE_FONT_UNAVAILABLE)) + } + } + + if (cursor == null) { + cursor = MatrixCursor( + arrayOf( + FontsContractCompat.Columns._ID, + FontsContractCompat.Columns.FILE_ID, + FontsContractCompat.Columns.WEIGHT, + FontsContractCompat.Columns.ITALIC, + FontsContractCompat.Columns.RESULT_CODE + ) + ) + + val id = Font.entries.indexOf(font).toLong() + cursor.addRow( + arrayOf( + id, // _ID + id, // FILE_ID + font.fontWeight.weight, // WEIGHT + 0, // ITALIC + FontsContractCompat.Columns.RESULT_CODE_OK // RESULT_CODE + ) + ) + } + } + + return@let cursor + } + } + + override fun openFile(uri: Uri, mode: String): ParcelFileDescriptor? { + return context?.let { context -> + val font = uri.lastPathSegment?.toIntOrNull()?.let { Font.entries[it] } + font?.filename?.let { filename -> + val file = File(context.filesDir, filename) + if (file.exists()) { + ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY) + } else { + null + } + } + } + } + + override fun query(uri: Uri, projection: Array?, selection: String?, selectionArgs: Array?, sortOrder: String?): Cursor? = null + + override fun getType(uri: Uri): String? = null + + override fun insert(uri: Uri, values: ContentValues?): Uri? = null + + override fun delete(uri: Uri, selection: String?, selectionArgs: Array?): Int = 0 + + override fun update(uri: Uri, values: ContentValues?, selection: String?, selectionArgs: Array?): Int = 0 +} diff --git a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.kt index 9b9ab0a2d9..d7aeb565ef 100644 --- a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.kt +++ b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.kt @@ -20,6 +20,26 @@ import com.orange.ouds.foundation.extensions.orElse import org.jetbrains.compose.resources.Font import org.jetbrains.compose.resources.FontResource +/** + * Preloads the downloadable font families for the Orange themes. + * Call this method if either the [OrangeFontFamily.latin] or [OrangeFontFamily.arabic] property of the [OrangeFontFamily] used to create the Orange theme + * instance is an implementation of [OrangeDownloadableFontFamily] ([OrangeHelveticaNeueLatin.Downloadable] or [OrangeHelveticaNeueArabic.Downloadable]). + * + * Please note that downloading font files is not the preferred way of configuring font families for the Orange themes. See documentation of [OrangeTheme] for more information. + * + * **Android**: Downloads fonts using Android Downloadable Fonts feature. + * **iOS**: No-op since iOS embeds Helvetica Neue by default. + * + * @param context The context (Android only, can be Any on other platforms). + * @param downloadableFontFamilies The downloadable font families to preload. + * @param onComplete A callback that is called when the font families are fully loaded. + */ +expect fun preloadDownloadableFontFamilies( + context: Any, + downloadableFontFamilies: List, + onComplete: (success: Boolean) -> Unit +) + /** * The font family to use for the Orange themes. */ @@ -29,123 +49,8 @@ class OrangeFontFamily private constructor() { companion object { - private var downloadedLatinFontFamily: FontFamily? = null - private var downloadedArabicFontFamily: FontFamily? = null - - /** - * Preloads the downloadable font families for the Orange themes. - * Call this method if either the [latin] or [arabic] property of the [OrangeFontFamily] used to create the Orange theme - * instance is an implementation of [OrangeDownloadableFontFamily] ([OrangeHelveticaNeueLatin.Downloadable] or [OrangeHelveticaNeueArabic.Downloadable]). - * - * Please note that downloading font files is not the preferred way of configuring font families for the Orange themes. See documentation of [OrangeTheme] for more information. - * - * @param context The context. - * @param downloadableFontFamilies The downloadable font families to preload. - * @param onComplete A callback that is called when the font families are fully loaded. - */ -// fun preloadDownloadableFontFamilies( -// context: Context, -// downloadableFontFamilies: List, -// onComplete: (success: Boolean) -> Unit -// ) { -// val downloadableFontFamiliesToPreload = downloadableFontFamilies.filter { downloadableFontFamily -> -// when (downloadableFontFamily) { -// is OrangeHelveticaNeueLatin.Downloadable -> downloadedLatinFontFamily == null -// is OrangeHelveticaNeueArabic.Downloadable -> downloadedArabicFontFamily == null -// } -// } -// -// if (downloadableFontFamiliesToPreload.isEmpty()) { -// onComplete(true) -// } else { -// var preloadedDownloadableFontFamilyCount = 0 -// -// // Font requests require the list of sets of hashes for the certificates the provider is signed with. -// // As OrangeFontProvider is embedded in the app, it is signed with the app certificate. -// // That is why we can retrieve the certificate using methods on package manager. -// val certificates = try { -// @Suppress("DEPRECATION") -// val flags = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) PackageManager.GET_SIGNING_CERTIFICATES else PackageManager.GET_SIGNATURES -// val packageInfo = context.packageManager.getPackageInfo(context.packageName, flags) -// val signatures = with(packageInfo) { -// @Suppress("DEPRECATION") -// if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) signingInfo?.apkContentsSigners else signatures -// } -// listOf(signatures.orEmpty().map { it.toByteArray() }) -// } catch (_: Exception) { -// emptyList() -// } -// -// var success = true -// val callbackExecutor = ContextCompat.getMainExecutor(context) -// downloadableFontFamiliesToPreload.forEach { downloadableFontFamily -> -// val fontWeights = when (downloadableFontFamily) { -// is OrangeHelveticaNeueLatin.Downloadable -> listOf(FontWeight.Normal, FontWeight.Medium, FontWeight.Bold) -// is OrangeHelveticaNeueArabic.Downloadable -> listOf(FontWeight.Light, FontWeight.Normal, FontWeight.Bold) -// } -// val script = when (downloadableFontFamily) { -// is OrangeHelveticaNeueLatin.Downloadable -> OrangeFontProvider.QUERY_SCRIPT_PARAMETER_VALUE_LATIN -// is OrangeHelveticaNeueArabic.Downloadable -> OrangeFontProvider.QUERY_SCRIPT_PARAMETER_VALUE_ARABIC -// } -// val typefaces = mutableMapOf() -// -// fontWeights.forEach { fontWeight -> -// val query = -// "${OrangeFontProvider.QUERY_WEIGHT_PARAMETER_KEY}=${fontWeight.weight}&${OrangeFontProvider.QUERY_SCRIPT_PARAMETER_KEY}=$script" -// val fontRequest = FontRequest(OrangeFontProvider.AUTHORITY, context.packageName, query, certificates) -// -// val callback = object : FontsContractCompat.FontRequestCallback() { -// -// override fun onTypefaceRetrieved(typeface: Typeface?) { -// onTypefaceRequestComplete(fontWeight, typeface) -// } -// -// override fun onTypefaceRequestFailed(reason: Int) { -// onTypefaceRequestComplete(fontWeight, null) -// } -// -// private fun onTypefaceRequestComplete(fontWeight: FontWeight, typeface: Typeface?) { -// typefaces[fontWeight] = typeface -// if (typefaces.size == fontWeights.size) { -// if (typefaces.values.any { it == null }) { -// success = false -// } else { -// val fonts = typefaces.mapNotNull { (fontWeight, typeface) -> -// typeface?.let { Font(fontWeight, typeface) } -// } -// val downloadedFontFamily = FontFamily(fonts) -// when (downloadableFontFamily) { -// is OrangeHelveticaNeueLatin.Downloadable -> downloadedLatinFontFamily = downloadedFontFamily -// is OrangeHelveticaNeueArabic.Downloadable -> downloadedArabicFontFamily = downloadedFontFamily -// } -// } -// preloadedDownloadableFontFamilyCount++ -// if (downloadableFontFamiliesToPreload.size == preloadedDownloadableFontFamilyCount) { -// onComplete(success) -// } -// } -// } -// -// private fun Font(weight: FontWeight, typeface: Typeface, style: FontStyle = FontStyle.Normal): Font { -// val typefaceLoader = object : AndroidFont.TypefaceLoader { -// override fun loadBlocking(context: Context, font: AndroidFont): Typeface? = typeface -// override suspend fun awaitLoad(context: Context, font: AndroidFont): Typeface? = typeface -// } -// -// return object : AndroidFont(FontLoadingStrategy.Blocking, typefaceLoader, Settings()) { -// override val weight: FontWeight = weight -// override val style: FontStyle = style -// } -// } -// -// } -// -// val style = if (fontWeight.weight >= FontWeight.Bold.weight) Typeface.BOLD else Typeface.NORMAL -// FontsContractCompat.requestFont(context, fontRequest, style, null, callbackExecutor, callback) -// } -// } -// } -// } + internal var downloadedLatinFontFamily: FontFamily? = null + internal var downloadedArabicFontFamily: FontFamily? = null } /** The Helvetica Neue Latin font family. */ diff --git a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt deleted file mode 100644 index 8dac0a45a5..0000000000 --- a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeFontProvider.kt +++ /dev/null @@ -1,172 +0,0 @@ -///* -// * Software Name: OUDS Android -// * SPDX-FileCopyrightText: Copyright (c) Orange SA -// * SPDX-License-Identifier: MIT -// * -// * This software is distributed under the MIT license, -// * the text of which is available at https://opensource.org/license/MIT/ -// * or see the "LICENSE" file for more details. -// * -// * Software description: Android library of reusable graphical components -// */ -// -//package com.orange.ouds.theme.orange -// -//import android.content.ContentProvider -//import android.content.ContentValues -//import android.database.Cursor -//import android.database.MatrixCursor -//import android.net.Uri -//import android.os.CancellationSignal -//import android.os.ParcelFileDescriptor -//import androidx.compose.ui.text.font.FontWeight -//import androidx.core.provider.FontsContractCompat -//import java.io.File -//import java.io.FileOutputStream -//import java.net.URL -// -///** -// * The font provider for the Orange theme. -// */ -//class OrangeFontProvider : ContentProvider() { -// -// companion object { -// -// /** The Orange font provider authority. */ -// const val AUTHORITY = "com.orange.ouds.theme.orange.fontprovider" -// -// internal const val QUERY_WEIGHT_PARAMETER_KEY = "weight" -// internal const val QUERY_SCRIPT_PARAMETER_KEY = "script" -// internal const val QUERY_SCRIPT_PARAMETER_VALUE_LATIN = "latin" -// internal const val QUERY_SCRIPT_PARAMETER_VALUE_ARABIC = "arabic" -// -// private const val CDN_BASE_URL = "https://mastermedia.dam-broadcast.com" -// } -// -// private enum class Font(val filename: String, val cdnFilename: String, val fontWeight: FontWeight, val script: String) { -// -// HelveticaNeueLatinRoman( -// "helvetica_neue_latin_roman.ttf", -// "pm_12751_491_491559-ngke9h7d3m-HelveticaNeue-Roman.ttf", -// FontWeight.Normal, -// QUERY_SCRIPT_PARAMETER_VALUE_LATIN -// ), -// HelveticaNeueLatinMedium( -// "helvetica_neue_latin_medium.ttf", -// "pm_12751_491_491556-bd333uw5x5-HelveticaNeue-Medium.ttf", -// FontWeight.Medium, -// QUERY_SCRIPT_PARAMETER_VALUE_LATIN -// ), -// HelveticaNeueLatinBold( -// "helvetica_neue_latin_bold.ttf", -// "pm_12751_491_491553-29arstkwm3-HelveticaNeue-Bold.ttf", -// FontWeight.Bold, -// QUERY_SCRIPT_PARAMETER_VALUE_LATIN -// ), -// HelveticaNeueArabicLight( -// "helvetica_neue_arabic_light.ttf", -// "pm_12751_502_502368-657u3r24tf-HelveticaNeueW20-Arabic-45Light.ttf", -// FontWeight.Light, -// QUERY_SCRIPT_PARAMETER_VALUE_ARABIC -// ), -// HelveticaNeueArabicRoman( -// "helvetica_neue_arabic_roman.ttf", -// "pm_12751_502_502371-4jrbp3k3ec-HelveticaNeueW20-Arabic-55Roman.ttf", -// FontWeight.Normal, -// QUERY_SCRIPT_PARAMETER_VALUE_ARABIC -// ), -// HelveticaNeueArabicBold( -// "helvetica_neue_arabic_bold.ttf", -// "pm_12751_502_502374-hak4nhssgj-HelveticaNeueW20-Arabic-75Bold.ttf", -// FontWeight.Bold, -// QUERY_SCRIPT_PARAMETER_VALUE_ARABIC -// ) -// } -// -// override fun onCreate(): Boolean = true -// -// override fun query( -// uri: Uri, -// projection: Array?, -// selection: String?, -// selectionArgs: Array?, -// sortOrder: String?, -// cancellationSignal: CancellationSignal? -// ): Cursor? { -// return context?.let { context -> -// val arguments = selectionArgs?.firstOrNull() -// ?.split("&") -// ?.map { it.split("=") } -// ?.associate { it[0] to it[1] } -// .orEmpty() -// val fontWeight = arguments[QUERY_WEIGHT_PARAMETER_KEY]?.toIntOrNull()?.let { FontWeight(it) } -// val script = arguments[QUERY_SCRIPT_PARAMETER_KEY] -// val font = Font.entries.firstOrNull { it.fontWeight == fontWeight && it.script == script } -// var cursor: Cursor? = null -// if (font != null) { -// val fontFile = File(context.filesDir, font.filename) -// if (!fontFile.exists()) { -// try { -// URL("$CDN_BASE_URL/${font.cdnFilename}").openStream().use { input -> -// FileOutputStream(fontFile).use { output -> -// input.copyTo(output) -// } -// } -// } catch (_: Exception) { -// cursor = MatrixCursor(arrayOf(FontsContractCompat.Columns.RESULT_CODE)) -// cursor.addRow(arrayOf(FontsContractCompat.Columns.RESULT_CODE_FONT_UNAVAILABLE)) -// } -// } -// -// if (cursor == null) { -// cursor = MatrixCursor( -// arrayOf( -// FontsContractCompat.Columns._ID, -// FontsContractCompat.Columns.FILE_ID, -// FontsContractCompat.Columns.WEIGHT, -// FontsContractCompat.Columns.ITALIC, -// FontsContractCompat.Columns.RESULT_CODE -// ) -// ) -// -// val id = Font.entries.indexOf(font).toLong() -// cursor.addRow( -// arrayOf( -// id, // _ID -// id, // FILE_ID -// font.fontWeight.weight, // WEIGHT -// 0, // ITALIC -// FontsContractCompat.Columns.RESULT_CODE_OK // RESULT_CODE -// ) -// ) -// } -// } -// -// return@let cursor -// } -// } -// -// override fun openFile(uri: Uri, mode: String): ParcelFileDescriptor? { -// return context?.let { context -> -// val font = uri.lastPathSegment?.toIntOrNull()?.let { Font.entries[it] } -// font?.filename?.let { filename -> -// val file = File(context.filesDir, filename) -// if (file.exists()) { -// ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY) -// } else { -// null -// } -// } -// } -// } -// -// override fun query(uri: Uri, projection: Array?, selection: String?, selectionArgs: Array?, sortOrder: String?): Cursor? = null -// -// override fun getType(uri: Uri): String? = null -// -// override fun insert(uri: Uri, values: ContentValues?): Uri? = null -// -// override fun delete(uri: Uri, selection: String?, selectionArgs: Array?): Int = 0 -// -// override fun update(uri: Uri, values: ContentValues?, selection: String?, selectionArgs: Array?): Int = 0 -//} diff --git a/theme-orange/src/iosMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.ios.kt b/theme-orange/src/iosMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.ios.kt new file mode 100644 index 0000000000..3686e9edea --- /dev/null +++ b/theme-orange/src/iosMain/kotlin/com/orange/ouds/theme/orange/OrangeFontFamily.ios.kt @@ -0,0 +1,31 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +package com.orange.ouds.theme.orange + +/** + * Preloads the downloadable font families for the Orange themes on iOS. + * This is a no-op implementation since iOS already embeds Helvetica Neue by default. + * + * @param context Unused on iOS. + * @param downloadableFontFamilies The downloadable font families to preload (ignored on iOS). + * @param onComplete A callback that is called immediately with success=true. + */ +actual fun preloadDownloadableFontFamilies( + context: Any, + downloadableFontFamilies: List, + onComplete: (success: Boolean) -> Unit +) { + // iOS embeds Helvetica Neue by default, no need to download fonts + // Simply call the callback with success + onComplete(true) +} From fe1d4a242acfd15a678744d7497ea366debc4b5f Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Tue, 28 Jul 2026 10:31:49 +0200 Subject: [PATCH 16/18] Replace ConstraintLayout with Column in OudsPinCodeInput --- .../ouds/core/component/OudsPinCodeInput.kt | 106 +++++++++--------- ...ListTest$Rtl_takeLightThemeSnapshot[0].png | Bin 0 -> 101652 bytes ...ListTest$Rtl_takeLightThemeSnapshot[1].png | Bin 0 -> 98100 bytes ...ListTest$Rtl_takeLightThemeSnapshot[2].png | Bin 0 -> 106517 bytes ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin 0 -> 9856 bytes ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin 0 -> 10671 bytes ...tTest$Default_takeDarkThemeSnapshot[2].png | Bin 0 -> 9886 bytes ...tTest$Default_takeDarkThemeSnapshot[3].png | Bin 0 -> 10361 bytes ...Test$Default_takeLightThemeSnapshot[0].png | Bin 0 -> 10363 bytes ...Test$Default_takeLightThemeSnapshot[1].png | Bin 0 -> 10859 bytes ...Test$Default_takeLightThemeSnapshot[2].png | Bin 0 -> 10287 bytes ...Test$Default_takeLightThemeSnapshot[3].png | Bin 0 -> 10510 bytes ...ListTest$Rtl_takeLightThemeSnapshot[0].png | Bin 0 -> 122392 bytes ...ListTest$Rtl_takeLightThemeSnapshot[1].png | Bin 0 -> 106411 bytes ...ListTest$Rtl_takeLightThemeSnapshot[2].png | Bin 0 -> 127482 bytes ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin 0 -> 9167 bytes ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin 0 -> 9277 bytes ...Test$Default_takeLightThemeSnapshot[0].png | Bin 0 -> 9672 bytes ...Test$Default_takeLightThemeSnapshot[1].png | Bin 0 -> 9433 bytes ...tTest$Default_takeDarkThemeSnapshot[0].png | Bin 0 -> 14351 bytes ...tTest$Default_takeDarkThemeSnapshot[1].png | Bin 0 -> 14787 bytes ...Test$Default_takeLightThemeSnapshot[0].png | Bin 0 -> 14278 bytes ...Test$Default_takeLightThemeSnapshot[1].png | Bin 0 -> 14467 bytes 23 files changed, 55 insertions(+), 51 deletions(-) create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[2].png create mode 100644 theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[3].png create mode 100644 theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png create mode 100644 theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png create mode 100644 theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png create mode 100644 theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png create mode 100644 theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png create mode 100644 theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png create mode 100644 theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png create mode 100644 theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png create mode 100644 theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png create mode 100644 theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png create mode 100644 theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt index 6188064db4..1385340711 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsPinCodeInput.kt @@ -16,9 +16,13 @@ import androidx.compose.foundation.ExperimentalFoundationApi import androidx.compose.foundation.interaction.Interaction import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.BoxWithConstraints +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.heightIn import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.width import androidx.compose.foundation.text.BasicSecureTextField import androidx.compose.foundation.text.KeyboardOptions import androidx.compose.foundation.text.input.InputTransformation @@ -28,24 +32,32 @@ import androidx.compose.foundation.text.input.delete import androidx.compose.foundation.text.input.forEachChangeReversed import androidx.compose.foundation.text.input.insert import androidx.compose.foundation.text.input.rememberTextFieldState - import androidx.compose.runtime.Composable import androidx.compose.runtime.LaunchedEffect import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue import androidx.compose.runtime.snapshotFlow import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.focus.FocusRequester import androidx.compose.ui.focus.focusRequester +import androidx.compose.ui.layout.onSizeChanged +import androidx.compose.ui.platform.LocalDensity +import androidx.compose.ui.platform.LocalInspectionMode import androidx.compose.ui.platform.LocalSoftwareKeyboardController +import androidx.compose.ui.semantics.hideFromAccessibility +import androidx.compose.ui.semantics.semantics import androidx.compose.ui.text.TextRange import androidx.compose.ui.text.input.KeyboardType import androidx.compose.ui.text.substring import androidx.compose.ui.tooling.preview.PreviewParameter +import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp import com.orange.ouds.core.component.common.OudsError import com.orange.ouds.core.component.common.text.OudsAnnotatedHelperText +import com.orange.ouds.core.extensions.InteractionState import com.orange.ouds.core.extensions.collectInteractionStateAsState import com.orange.ouds.core.theme.LocalWindowWidth import com.orange.ouds.core.theme.OudsTheme @@ -282,56 +294,48 @@ private fun OudsPinCodeInputDecorator( val horizontalSpace = if (smallDeviceSpecificRules) 6.dp else pinCodeInputTokens.spaceColumnGapDigitInput.value val totalHorizontalSpace = horizontalSpace * (length.value - 1) val digitWidth = (maxWidth - totalHorizontalSpace) / length.value -// ConstraintLayout { -// val (row, helperTextErrorMessage) = createRefs() -// Row( -// modifier = Modifier -// .constrainAs(row) { -// top.linkTo(parent.top) -// start.linkTo(parent.start) -// end.linkTo(parent.end) -// }, -// horizontalArrangement = Arrangement.spacedBy(horizontalSpace) -// ) { -// val isNonErrorPreview = LocalInspectionMode.current && error == null -// val focusedDigitIndex = (textFieldState.selection.end - 1).coerceIn(0, length.value - 1) -// repeat(length.value) { index -> -// val digitInputState = when { -// (isNonErrorPreview || interactionState == InteractionState.Focused) && index == focusedDigitIndex -> OudsDigitInputState.Focused -// interactionState == InteractionState.Hovered -> OudsDigitInputState.Hovered -// else -> OudsDigitInputState.Enabled -// } -// OudsDigitInput( -// modifier = Modifier -// .width(digitWidth) -// .semantics { hideFromAccessibility() }, -// digit = textFieldState.text.getOrNull(index), -// onClick = { -// onDigitClick(index) -// textFieldState.edit { placeCursorAfterCharAt(index) } -// }, -// state = digitInputState, -// outlined = outlined, -// error = error != null, -// placeholder = error == null, -// smallDeviceSpecificRules = smallDeviceSpecificRules -// ) -// } -// } -// OudsTextInputHelperTextErrorMessage( -// modifier = Modifier.constrainAs(helperTextErrorMessage) { -// top.linkTo(row.bottom) -// bottom.linkTo(parent.bottom) -// start.linkTo(row.start) -// end.linkTo(row.end) -// width = Dimension.fillToConstraints -// }, -// enabled = true, -// error = error, -// helperText = helperText, -// annotatedHelperText = annotatedHelperText -// ) -// } + Column(horizontalAlignment = Alignment.CenterHorizontally) { + var rowWidth by remember { mutableStateOf(Dp.Unspecified) } + val density = LocalDensity.current + Row( + modifier = Modifier.onSizeChanged { + rowWidth = with(density) { it.width.toDp() } + }, + horizontalArrangement = Arrangement.spacedBy(horizontalSpace) + ) { + val isNonErrorPreview = LocalInspectionMode.current && error == null + val focusedDigitIndex = (textFieldState.selection.end - 1).coerceIn(0, length.value - 1) + repeat(length.value) { index -> + val digitInputState = when { + (isNonErrorPreview || interactionState == InteractionState.Focused) && index == focusedDigitIndex -> OudsDigitInputState.Focused + interactionState == InteractionState.Hovered -> OudsDigitInputState.Hovered + else -> OudsDigitInputState.Enabled + } + OudsDigitInput( + modifier = Modifier + .width(digitWidth) + .semantics { hideFromAccessibility() }, + digit = textFieldState.text.getOrNull(index), + onClick = { + onDigitClick(index) + textFieldState.edit { placeCursorAfterCharAt(index) } + }, + state = digitInputState, + outlined = outlined, + error = error != null, + placeholder = error == null, + smallDeviceSpecificRules = smallDeviceSpecificRules + ) + } + } + OudsTextInputHelperTextErrorMessage( + modifier = Modifier.width(rowWidth), + enabled = true, + error = error, + helperText = helperText, + annotatedHelperText = annotatedHelperText + ) + } } } diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000000000000000000000000000000000..86ebf036c7e1a80972631da0fe6a406816235418 GIT binary patch literal 101652 zcmeEuXH=8h7A+k?!3szSSg=q8L|W(|0wP_SbQS3>h_p}@6&oNbp!6mkBE3kc0t(Wr z1VWG|1PB751<2bUo_o(7_uV(%dq3YB_l)zyb1>oi*4}%qx#pZ}KiAVyXJLjhQ&CZ| zXk5Q`lZuKCK}E&z{Qv{_KcrU|a;T_ZVKuHP8~Tncj4>??7&dNrtZKc#tOE~IzIrme z$3gt^vBd17Vonxn7H0+2PH^;BKKl76qMmQ^+0PKc!fbqHQDw*@uCv0~m8avG`OXSd zKIDt1VLrPa7#x_~j>Y=xxcj?fgS&Qv6*X4ncq?`*X4lJScTlKKb{_BqR8%38tA42w!$j6tc14jO2WBT zjLm2#$_$v-1<6057w4seL-9=bd2S#tRtkw%a^GB@2#S34 zLChZIJXHAch}iOEq#{b4+siQjHg9FALr)`lYc`o*=_UO^_LH>fbA4F`2qY^tBlxl- z%e|T+=iRP_arIwJeDFrf9Vf>ucD`=rK?5jt6BR)h0r^#eZ`m zEKy6*b<<{7kI%zsFmne?nC2G+s&nukdToM0~=!eeS4q`|Q0Kr)nd2 z@KnI^!y>IN8A86D#||A_Dd4XV$y2vVjR)8)Hva}OYS|{wv#m_WT5r=z&JR2c<3WA( zU#gnjDLOxxZ+e`JP#`ae5yyPSh0Oc=&izV{R9Inr)qgwNAXDpknY-s~C#lu7dzc+Y z_(>YF-l*N%CK%Syx}rv^O_PgU@@;e9zh3*ueRVR1}+GP-Uk&v-8)u zBe-P;t=;!_wv4h02Hv0jxLdii(jMNb=ra7Ncz59BxiY=OAC`-pO^feo2$SCpN|WZY zl8xb^wI!D^!t39~x;AYlK?-V!m+{I~^nTgV7A?5j^-B&eeLq9Wl ziBs;-vXXkc>ti!X93ocms-cA*R9~|DaabT94&@pN5`q@1W|M-_MNeMoZyQue8A)q#_!c3% zPgduaT zYui%heD^oTeEh*i^h#?$8BzUPipDZxG4=Xw|`x4_;aKJ>8U61F>4<@jPO%}LTd z4|)7`Gh$a5x1Q^st%t}d|n=?V?%S!u@oD_8!1=pva8PHmrYaQevgMVgjJlPU17UTwAWYxY~{}vMGH@k(F7%u08ucqtMMqKLRH?NOsZOjwc zKM5fQ)L|`_2M*uO4*9u9CT>`3e+oaJg5xT;VlOX(6;}RyQS7xgMUHbW6b)Jj52XFE zhiAbyEu~(P{W=kc!GJ^57c8$fY2YyPDwI{`>!zth65->0Nmp{(OW_w5BJCl(qr9yT zc0djeRrGc29w~Fi^y$cURCd$`k}oj(_r?{SbF0@UD%b|!+L(4mxq--^|OLqU(|v*vm-2s+JoMRw0k=$7_iWUUunXazL@7Z}zvREL^V$ z*>_x+ul2K7$&(~losP^jQ9Sf)uwAl1q zI*~~Y*S0aLWJekb3UebA@f;uRxoIqy<`G%H_R__5;{ms@2+b%Y%QQ!o)mPK~0C$cL8cPMkpby-4}> z%Z2Gy=OkqpOW%5M|Jf!i9LUFv)B|sSl@7x^8h&%-N{q0byrzHanEmaJPmX<=oI~*- z9hXq6mlYqQKb<-B)_cs$B-n+O)SsgcDxF_~LHT$KNbd#M3T;}hh1BDNRi5^fGN@?! zKl!nV0se7`ps)M5ssHp~e~g%Y=NjXYK>R~SNyX_Q#Ochs-=J80aVu4q?_tMkU3OA> z+IpHvc-{{Lu9m#yDT&WEHa@>g-lzzokQXbGeTFQ3w!%r-j)7d#_^*=*x##hpNY7p{ zBg7@c923Puwf?--2L^b#so{z1-;))`gU!ZMRTv4I%=)@3BzNY^;0v~F<(S`WqD^#IC;byf=At-Fu(hRC>#6_biOvw->+%vV2GzAIZGtUc z;tUPcjBq`ZP?3%h6=lu1aQ%+G-e1&Vza-9JHxHGo8hkZ&J}GteU%%pXbBId+)<18^&j<(UE!QKE#o=TIr?L3gw7C)!E5DB(-B-L_g8Bdits(ZRdqHxfKB1aw`kM(tq^+6d%p63(BvMH@b1x7eMQbSfN% zobu2)iu?ltu1n*6mm3(v3CW(F(zeMZ;hHH7_PuHraUey|70J6+(2LN)f6IeB-BRZT z?FE;A3zZFNegJ3Xzi4Yg0b5;&ypWya9-&lE2;rZNWPu~_&#=+MUvh}7vr11LAqXCTy*=|) z@?=iIotz^!go29B^LXEx5B9GJr~GtmRHu?dH#y9cS^~zWfs; zvr>nnKdwt+a?={@w4viaT9K*}CTUu)-wvgpe}v%~C(^<05H=-D-$u|ufB9&TjG|+2 z##e^%mT<1!t{jtRE$$9u)n#5}Q2DjXdiL5y>Nahj4(}zQ__C>Yz>9BDe~EXmontw9 zx!!#^R-t6T*nG=IR~%KJY9n5N#rSW$P(yb^c)Tf4tU}#b?_l7b|2PK>SHFUk)LhEJsQmCp(fA>wXgRt?Lv94{>?K0K}Lz;=mCe zf14nB%;$$qr2IUOO~VsWM5hAT#hDWxv^imvwKY(DyMbo1Tybx6@|LZ<+i2w|O@!G7 zfBWBi=qYs=%ChEn3)f(st$$qdgC6f*x6+qZdHPBQ?Fx?beWoRL1G|BhN02+4laWEM z^$8nN0HSamJ>J8j zA>426_w6j6&yO@r$q_S_RDMDK8x_}^QRK25Fn9lya&)^=0a;SC&E7MP~y7WSEo$C`}r`EF= z5<$M4QP%%W5i&3T4iHtGwa&Hz@iS3@5**f)ea^VRY`Shn)Ty6OQK@@9u6n0$_+lr2 z#>0IiPDO=?{O=$B8w7wX{?CJOWo^*h-4AR?^euKFvuhLeOb`f6YT}Y~NkP8O;jr>; z@LdwJt{wegbE^`WDs}hEvlq7Dyp7r@jfEDgG5~mcS_RbT#ENEibHhs_n6;Z@SY!IF zf9-NXhao_Z`#$Bt3I|8N#nZPVP9lK%Yd>fLoaHtYwtw;3M@)RMPZH&6O7y{*Zu%d} z_75pOk5_sdFYjMIl&&6mOA~E{sd-4txScZz_2wN3(tYNiy@j3}Kp=T7KHYve1X_|8 zi#o{)iC5h(tjGY=tyHgEPd(3*;=+XJKDRb`W%t)lVIi~9WgVHhbMCkrzY`bq@LYGs zYXifv^3(4O_}1*sqCG)1ql44IQvy4Vl4#3z-wsNEmGy{Iec=JWl% z=%AMyhGaY`1N(Y-Ndv{&zrA}LRL{^5+J1SZAIFd>XJ}Z3h;0~PST)>#XnJp@P`f>* zgLiOIgOGrrjM2UmqGp6i;tv3nj|GL#c}RFA=Q7oPx%~6$%0C{3(1PSuyEVh*EE3^f zw<|d~Zi0R-Qn%B4s#M1^>lEtO86sG_)vOflo1A+KC0#W><*<|(2gthtFsOy84=&=Drms- z=MoMiO98UMQB``5D8IYbw|7!ZhKD<>lVa9B-61u;#^b*rN{mwH`3+jIf?`kkJg$is zY=Qz2M(uCTYqlv=ASW6-DBfGsv0NLr!=LWhVmCpjd|!5UZTE3xL%(m2Pv+A{wI!hH zZjS!|Z)!ibwBIYsZU0KgeU0M9JU@PMyDtm8VWby@z0}p<2f^ag7WgmTx~$XD$&Ta+ z=W7X`r^AVgI`ygd2T01(po}7jm<`-2D6wG{g?Wx+J}&|i9UnW}8dHaL{_d4GBInxZ zo3c&U8oJl_7;d~jXQ(J<`BKt#2SYT6Sj(r#I%SAS^%6_l=p+2@YwX@oVzU2eD z;0?-R9=djgRdHvzI2a>%$ITBl%7$ankina9q5d8N0yju2+1jo-l zqaNx%X2lmhdp&#}=uCTcet=#6)AQ%*Sp<>>tgz*-HeKr(pO!(?D}t=#dy@j!e^d*u zX1eB`y|)6YwPAt}21P1%tMeh^*swUz;|g?kAZC?des!n*958X^@u0y%*_NrT!Y)~UuVq3O<6M5VP1tXcC&rqE7K*-l9%u^;-A^LjijH6yk9_Yf7!Pg(??z_p%1ueAqdgFj5G zL6X%r(dKCCeQSwTy%cc9u+h9dsLXv_p_uGzQLQo0q*5>~hQ!x@<FTcdxz;7QEy(+?zcS)KF43Y*PBGzY?B{J#l547+%vZ?}788^Sd_;&S%F=w+W)f z-K<&e_Vtlwjv()Ob$;v#$??jWHDV*do@23#fQ69=G7b%TiUHkVOV|8Bd>TDm13c$V z^d+J!i4N|#zu`?YLR4PD3bc&|0V{fT%;p6TSmRndKjD4@bO)j4>%4;Xlnf^C&-UIS zl3gaKgADa+D0}2x6FwJWan8omMaNiIEhewUgN5l+q4vvM2ExBWe| z(9~ml}$uk6$G?-qyz&q#YEg`82aqv8%H-qV~E?bvA6S1VuzF00QHs z#GabatkOtHw!_v?-QF|?^hJ9iX|OfjIzbHk?d|;PvqOUIWE~i_I&A2JTBY&KQ6&8S z*E4%5#R7~N4zx@-4{TV$-N|=G|F7s-D(FrY zP|HqvkY9RMZKjvj*c?QZXDjDi{%U;ZK0p5JNY zIKs*xC)yPrv3%<|Y(joshAYWWwbd1dy%6qsdNHI)vhZm&EjGx6^a`0w3e3WV@D}_z zVXTO?aW94U!ziseiSkT7!Z~X7s3lQhutSs3rpX6M{rhLEri-IWhdBS|j4`nr?X1yV z!#;<3nCZ?+_$&MNlv+rZ7xrdShq!R4ggffH$_!xEM+AR=KO!~u;H^iZ6LE1Q`;q$y zjzwzpwxv3+LRfpB;hFZ8O_v6({%3>bqO{@%ES_g3inAQZHpGdaw|HLt=Az?Q5C(nT zIf&_K@#^PeHLDG%`t4cWqsn68K$!k{6JlvO>|tL&$*&JLRYoM?hZjowbXvUTQ+ZBj zCebOw?kLX3<;`j3MU#H@q#p#u+A%ZS^+-ALaO}C_T4FyJGUHD|owG{25>axkL+Q?E zh4)rJ1d1>%hH+lJ#Nr4pDBLIQk2h`=9(+-YOhV-n`g~-%gm(eG-hH}Jb$>D>!n2p5&=pd{jIGhUh z4?bmU)rBupp9-VNLc^nyMr|&W z?kD8&UrT7-4+dTYthSq{4sAqbYpjWBD+}UJ2mu6W$ zTT+ZPtTYkNObrde66%r!E_bL}qRw&-Oe#?_U)(F`dy&bB1RBnnfsol4bGMwW&w5Rc zvxz7 z6WRe42#@G>J~@%&Op+a{IvG@LQO)4gJzF`3i}$aOY7WdgK&=kS-^(M&VJqED03JO> z2$j_8Jxih;;QUWoWS3dRxB5kq0&BCqP_e;(z^JHpes<|TPL|K-dxq{QBK{*Df`Unz= z^#MRbhFmF-@>v=kZI=O}L8-r%Co^K@KX0YG3~+r%J72t9PiZ&|gY!P~0|>r5{JVzV zhVBwNUfb2DGONUKsIZ(f6v0fQU#1Gl6&r18wZ@Tt4|u*spU1zKa5nCU4&yh-oHApo zp3lvDmE70w5e`S*3+$}oLB6k+B%pGX35`U%*dX<|B}qA4)Bue;R zWrPb`3aaWVkz|Y$RMBdg+{jIFB=5>6-=T{W=1uqG5%i9dT-i8b%~TH;cO3-m&5B^HbLVlR6x0jVXoyu zUe(r2ya92~k=e31pYDf%XgN+h{McX5AF%$zo((HE^;$)ML8Ol=46sxyLrjq!sV2r+ zp*gDIbv}ryF zeJVf4+wajhLqj#tH69*j;6Lr+ zLT6p9Y`LZId?WIi()2*?I9T=v&((Hul<5#x{;D-J5saq-x+`lL7MP1M92^5jI(hNk zEX^_NYVu63PC#+Y_ozE8w_I-#sjDlfg@rH(?~p%ejU>Cw^vsfi_qIAHg`gfRI(>i0 zH&417_ek6Go%?8|=+KSVnH*w)g`kA8a6=K7xLSW_o^>4X8^sjv9r4uT@Y{42l*ly?->zyp3>MMkTha(aGML=$C9v);}+f$PIj7;Gb6g zcxG&Qa~v`@>OL-6Z%}1`$mm;;dhBj`a zE*gXByq=^Q}kK=61q~S!o_;3y_^Z_p?&2aJw$ha zjbTSr#U)r*p8o-FAK_%&-Wo)oaFLi#-$>SvRSA#M7c6kz#*TgVK|AQ>xVU--=G_N@ znS1`y6+2%DvXfTuXJXB&j;a*7H;pK3vDNR9hs`V~mVx{PpUwJ@h2b zz#`HZl0K-476j5FP*3;7^I??4-d&!cGPG4mci4 zul4~Tg0j^WJU>$2a$f_*`@H1Wb6rDT$w)WQvz!lKtpy4dX616QJg*!Ms#xrH`AA3LTAAA3L@gdGD8JR6MFx$j)pyKk_Fe5-VPOh%K=tZg^ z*@c7a9|N~9~+NeBpGAx%C=-4LKK7N2M7;5|4#+$HJL#D{Z(k84zp5yX7Jl&#FdcA zVIkwa@C(9jo9^30Q;S2IImCYvh0@j8o&&P@!Zvwvq-^!Gha~AY|G=OD`nFV^6D_}S zyjk8g7QVjvjB?evZLngu-aifNRFP-NE+5ZLAXtuqyfhzWv?%3#5K)Yng`LNDD?P|u zBy1#$BS!#pbeF`FHx198CW}B=KQPN-9~G4xK=f-{ghwM-jJXqUBpo zARUZfpmM^Z?UJ7vcvnBgT1h+4L$;AK;V4%tugFs3s&N0@OFcB8L~b%8`ZZOE`ME1- zJ(a#dwQ#sg-mtT!!N#>+DN76ELW{ZaXIjxWz2*)co_agj{Amh6BhrQnQGWzCjRF22 z8+nO><{H1%olmFdf9Bj)As)%gfAJuoI@N(n6iZ%Umei456sL^sW=url-bM->m-p*? zJE$Em$yPX#dhtnwpS!PvWL_^f#~=H*^KlaG?>*h+YLK5=Z(7cIdi2)RfG2 zN7zu+ue6s}XFh|CmTqqR{JHVvmNKi4pBl; z)ADNLMUMWCJ*6A-Rd$3j4M8ZMG0q50x{|v8WpN~4@{Un(q$dr(N zJ-rP%lEO)afJzE05Y5^TRwP%Saq2!zlI&i42JBIyotDYbw(T)np{{epyaaKo)IFbq z=*5}{U5+4@OSx*%EkK)lf_jn@qjcfA)IoYB;5>UIb${wQu}A$BsVf~w>uoun*0ir3 zMZ?Rj3`b17$o+;sPKSQU2hb+8**xF9Cfa1=%mCHy~`E*~+b3npmPs?5Cc*0?Iy@ASs?~iaF z+UE;^y0(O+1eN%)Kc0n$uEU=iu#Q=YZ8WSM4m4EZ|Mbd>6QaQ}L zU`JlM^{L+ZN3m`5Y?f|vXDq$ozx-@%5j(WGWuPPdMC73H{_;?De`gcI|LV(%{JlC> z?bVKPNeWoeK&wacu(bmtCBlRGpHBrCI7lK23IY;QRcuE=1E z#+|08(TiAJ#oaGVy8A9Cs&Ggz#4%k=xb1Q>HU>!8TYX88t1k*W0+fbu0tJxvgIw|1kg72T)XqH`GF%z9eMbpS8j=ihj%Bg226E7P_oO*LWj zuYjLCA!8BnyZJd+E2JHisjC?#savkvLU90VU<5eH!U3DDr@lb%2NmSk{cx4OwZa#LXc=R5Ad#cVvmcR!icV1s!(M zP@$!)Gq35SYb6Zn(BsSI_irC!5OMg6eRNXGw6YfrQ;3uS(E)n1f*xUjO zSgJ=IwnyIgtik;kihw`KS;LB2J!V=55qqMKGo64wf}8XX+%rYS3&&O;!!3*Btjob`LPA;o4a%BP2qS;pRs{cyp4kg&qib> zT^Lkr?N3vE`NB(lQ1#z_(M`(UZo%Zu1wby~z=x*6_USM$vC~$egWn&%6UI5zm&XhI zM5Zx+M^qD-6ca1J4rq<@P_a?SF4}A6utsnr6Cg^Bq(IqO1s;?9wnRuAg`O);NL#8J zSpUw)Ss5C9$cNaOXc z-!^maOpvYu1?KOSttSW5-ge52$}6lEFeW|%ZeE;u(cLEo)apQNenkLcG2aHD{O@0c zq+RHr$2;KM0T&cz_OP!XD|@i}&DtFBmp0qS3*fV}{$(BJfZ0)%wi5JOQG^6! zBNH3J1-RCN(4i^Eb>(`7>#cy~?S%y=Q4=_rfRQObScPI|HrsEY+aUz4XdXRe;DTRN z_-hZx2%>9>)2K(&R1Xq?3R_-igR;FF#_gTGISK@%J1)03=K5MI$G{q5oq_*dfLa}# zzM7AkvBm*GAb(i_!+1DBZmnCT3P>n1{@+CkmWZ<`?mcIDqkDbN7+`zz5>b5Oc>b1f8zo-EZt|me}L@eTW9_p@z^?)D{H1dDQY-#z?x>~$WN2zt07`5S z-JcYKSLkp`WAG}Ns0a8rAIo$3wo;nwT=dHt+6c(FE>ofz1D!Fe`@re;&qT7CI;YRb z3V)yda13Mw3h50WVF%RB{8GM&hQ`|BKwhow`wl&0wy8&xG>NsEz zo9XJm>(BjBza4WAY?8hD!gRIp6%`g&PjIwwz~UzTBmU%{4M&CK`R^b88w4l|{-5sz zrO;a?cHvN=>S)&#!CXt#OL|8iVz*xeQk20|i4>0A+@;75>N@yNwDsi_-vYA`6~4dk z>L{GM0>}pvq^GGM~09ceKYP`LmUn%~Tzst^oJyLP6 zatI{EU@|n906A>#A3NI%xr=~L!fw^?2Y?>TA3yNo!Ap2aJOHw^ai6zZB#&izBKSSY zjUSbD{3QE|hbukOhss^C#dV?}yXjoLH3kZV?X0Hb2RXkhPx@X#^CcnGFc~^H_`SMq zX;yVRD=&w@w_T%d{qp>Hdkek(^+z)kkaYW$%M6&4*_pFB|M5!?ARJyBB)wCGy{S!0 zGr>M0uK`!&{a#60fGf%+M!OrSDj{nR6;*a#s!F|bXu?Xyr8pXD_0>KAIldw%Gv4Z? zy^fQHa zHgPEi)ocI{)V2YGPNGcNPfv}xF$(x$zyEZ!NsXvYi*Kad$}=h3wiE6E#62%Rj-!AU z%xSf5PGfRyu5Z`XIpoXM>a58a4t)KRE}9IoyZ`YETFZ7Fanl9B!Aergj<6Iv3e}{& z@t&Z0CMN^9Cx&eBcqQMiFH?Je5(84XgMK*lAZP&gRbF@~Hc)vu=5skmD`fi_EQxk5 zE7qI5S%(2L8U5C4l#8xN;ai_lT&x>ykWk9Ar369VszWzmI~(U7s$*u~cgEw#_W*|} z*rq;C94@lit@{o5C={T)A~wL7i+M%PLlZAnhs#Cr=vdV=LT=k-c>QN91A;5-DComa`Ne3FGoHZ)|Ze7Xq2$CChBWiojD% z?v*+Xv?c4`24*`iiLV3iVPLRlsK`d0P;?5kI=F=&C7#kVrR!NaZDLFAbJmn?6V)m@ zj*d&cpM8kA51+tlJ=!IIfvFrmbKUTzbJSs1!+`6jp_&2{Qx0E4L;%jK*vpHR?g?$U z)62GVk)Bp-yYCC_1-i0#2e&ejlJFR4S^>u@yKvhg3lw1-z<3Lc55l#Sdy@Covc3{G zE9!O&PHE9V#kamH#0D5(aNj?O6|hm3SAftXyS@iG3UJ^FPJaHKk)ooT@K$_%;5|2x z?Im6_^&NNNR!P|X0XE+5#hNnludzbrGu(btQALrK;Xm^uq!)J`U#z^E441+!1A_WE z`DDfDea$*`{U{pNC$uAICvxEjeNeMZvH`^NyaY%7S_K0so(qeDR3}L1et^crrl5p0 zXigq#ItwYh6!ShG?+L*l8!VCNdFxKPZ&z$ffK zWF3s5WEipSA?Y{4WEZ+x1jRfClEe!y5Zt9P-^uVGk;lkM&6kg2vWJWt$?n@+6G^Pf zGQtMwnb3qGz@kee&{fKA;zJ9tuli0?KtF~7@Vd+eljuG2E%}9huuXjkH4Zo@42u?T zy2q79f;ay5S#DC#XM4FS_mfK9`6tRl7M|fg0H~TgX54;Ny})q>uh;eF_GVfVY{Y%n zO8o7UoE_k%Gc*DA^4?0WkLTgnL7V!`ma+$)dG>y1JWT}NnQi`Ks^om zM@V|<4hbDh!hux&qKhEE(U~Y48)zIJ!w2K|=^jir{~-f4N#h5Yfw!w`=k)na(_MKi zf~kCWNboY`Fr=&*P10rCD{m$SdJztzr5w6XQwEs&g1ABF_MB^Kga}&qcLkmR`x}X0 zDhmeVFYm`C6gEu_4#%J(q+jlSE0LS*^?rmkx_sLyBR8NCbI67K+NWOMY!48%+i346 zjtkKMUl%QuaLYV+2IojOt3PVoemdPW(PjcXJfEQ$rZZE|2=mwlos!+E>3isyC~3!U zZ)^6TXK;7XQaRSGW%8zPw#VDFU!R}#`F}J)TaCWjZ^%Z$yh+|!r`rnh+=msmj3Xnn zAHql@nn*I>E>er`9CbPUgv%IqSG4u#Ft$2~wt3|=KOBz?qL+N^c$MI?h}#1*Ih?BXux@9)#}o^i5i?d%eRD|Dtu z(AIUgCZ3i@JqS3z53^4QMx7^ZTQ>ZRXOkFC!Q7FN2zFj;*I&b$|o}4oa z;^(2qc~@9;lygH0Albf7m8q-vE|>Z_LJ05+f!tw%n)_H(&drLx5gKlsepwQM_t4J{ z>pcZ1{aocIR@TSp+tlG6*Yc4nsl_N`YUnrsyKh7#igh z4cXtMan|)m-SjYER<@X0a$65MDkFdW*qI9T$S>wX#BGlu+D-S5Ijk5l4{_WdX6=g;5vk8Uap;gw?z zvt$1z3-lp4FFreC2;Ix)PWno_PjyhMU#m|Y(tng(g@1JL*eR9Dhip7Mg)zHB-;Zbd z4D`9YCdhAT!%;$>hdqKgbwnVi~rMGzx982H_E zNtb8Z^svNF35RLG-8PFV9Ee@k{h^EVABoeNoxIeftS`;EBHf;pn%iYjIq<> zpYEvqm<1l(q>(NCc2WB(MZb6UaVHF4!KHg;XA?Yko;p|dWZmwD!gqZZAZO3Rh+>7- z1BeCjPi|#NHzrh5pEVxc|HbzNc7(~mS*_pay~Yz%_Cco@Ok@K+Z*=Dakb=*9NYmLj zU1l-6Mc9M9;_*ZJlX5Q^{E#92z=@ir0j5czUGx1BiW3^cvn8i^cCJ<5h@y@7_V!|I z0mMYk0@q<+#8Kom^BUixiVjKa7iOswPx($z?;|H+2)Y(C&jBsqxcekv5Jj*p0LQ)a zulLxV%Zd#Y{&t9cBC8jm#~>#%T6npEqyU`Z{ajP1vg{asu@YuP@knw_o0#VO?<1p; zppvKk6nn`oBtZUdWMXObejkq55+E*08yFw_z;hT%LDTy_b!5wXm8nOr-8rz|Xx#S% zfHubHh6Kj;7)pl2!djkR-1sVvI&58bQ@Vg-2neVaWj)4(J!gh+JPJCi^DHY6M;d4x zT*42G66+uguL!TiI+wX-%*5NT!NH)YFg7yYtvbi43bHBmg`|T*QdEw9eHOv(Y54m6 zemYdEKiUNd?b+Qf%1)%{sNQDk5xRYvs)|{vQk?xsX6-A%(d?VIUfbD7yVa)#vU-~j zosLx8T{9S1Bn&(RaI}1Z#NJ2#S+-OM3uz#MUH3V+#Nj{BP~Urg5|1bQe!37l06QOZ1k*YgmSTqL=Xx8D6zl*S#py zfcz3N-vCy-m+%J=*~b=o)0pf(uY6=@2N=LC$|lfHEdZ+}d6@mfV12IXqHfYOXBf(w zuEGzPN{lVDfHlOHPy>ekK=#9bubjoSIevY8hOMp{Se*EW`!~2rV|>>R6sA)f_Aw)b zK^IrtMIcHHNUPOHeFrG>mZXxWp)cM3D|~l!YRC6=_kP_#F>e4V(C{&hnBDhf;i{=O zFVuP=ihq|2aH7n%k8}shvPE5-F3mkJ%j9GUT2BdOEtY&oa9nUsc!s1UKjV#9ZkHdf zziFzt@|D+CmpHj6j}bVL6lWMJk{iY5_9YNF*KlCid9;psOZswa$y+7~JM#n{7{ znfu9SDlJ(moneQsiUm6;b>i(M-WTkBe%{8rGjFoFxkky8Ynt^CqE^r0_yTUK_!+5T zuq``J|Iy=W<3vjkd69$j(FGR7TCV=`YMfJrS>*eCuw1PBryrriqKv)m0q#=xJpK%# z@!RbznWSjaP@2Fy@)c@$7OM$`Y~(Bk6UUmzfIiFoIWAEiQm~iJE>Rj(-n$P+JUWwjzm2~rQd!IsBIMrg9!3Ed!Yd3@Vy0<4V>=q6QYXri&$Yy6BdAGQ&c5JS zeO%EYrlL)(erIKhlOA`cHONWSHiJ>-8qngmjJPFHtACsN z_I5XGw)|-)7)@FLXUF-&QeBQm&eBFELlMj>ZU8jR5^OBV=Yn<7Y`?soWw#VriFQ*x z)VJZz@cQn!sA~{y4@X%}=42(Uv_2@Jr=Q=t3|N?4vBz|dTF;lY)EiVof8s!x_lU+1 zb%m(+g&>L#rtpscn5w**c#C$0YQrCW0U)C*nbmYU(~4IHmp#AJTMBQXByzuU%{fpG6>NxRVs`CGWrTf34^#1?+%P<_c zqoih{Da_r<3N?40`AKnxTnNP(2qg(kc-VD6$@XGjFic)^lvmBgib|XT%<0vD3xHZ6 z@mW%Y!}7t=Cs$2njCi0SICc@M?@Ys5wp+Ww0Q2l*Hpo9*afz|*0f)P|t^qUb3SFR3 zOWE^h21JSDt^YNvX?T*a-Oh^VKd_o-C3#JQ!H6P0Ny+aR((o{%l7k}_^|KUWIX8wO zmh(vnt)um0Fx~iX3}>T~spRC!zcHL&?9N6KlS61nkMrr$MEnW~_4n}D=RC*%;yhKL zOBCGRq+EJw%=1sOGddSc$;DtQ@?UU{zH8k8((n?~yNlH755Ne08A5P$l2QjWs@{`s z4nXKKuS@|Wjv=A(=lI&s#;EtY6`?RfmAYUCo%dp4Q}Ny&6QUl(=^P$8%f`0!o6-e5 zP_8UerI+!d(41qX#-n1F*DEP2eKlY*-=79ho*Ac*m8fv{YZFAFnuG_v8Wvj6glL2I zv3KX8Pi$(3LVpdYr}|nTRfSdnR!;3H7q~xRMbc%szWFgU7dm=Q+4LCnSmWZA7xj{$ zxt`{d2Xi-xBEegl_bQ8kph*@p2g}6D00)SrWCPrNgZaQ?zpk5GlIoyqxhb zq-fFqM2Zf?XGB=?UQyg9MY|OQG~9A+bZnC2axYB|mpZ=P02G`rnCC3F7B*W`m-?vhI=iT%j3hwF8kM=3S86wQFqF# zU!RROm7XH6VVjNf)SA^<2IS3R1>1Bw(RX3EXm8vXc+xOFIKPYcdHh+{Ggp;p3mg-{ zRDX|oCGyS>KQoa;n}%IzZuD*e$BuAXMCv`jCfNq7&syTfgF)-@lB{t|MjhyUlkx!g z?QIm)p;s^KY)O&=OZb}vKr^Nq2Lp{bxYNR9ZKPgF93X+ue*c0I!fKtqw8o{5%rb2(DeZ7CRRZ1 z?qFk($WV)b&v`8j_n;OaW22P+`od_0bVp!Y$)&eDF?)dfGJ2%4`f#&J z%Iyckm`5wOEg`2TF@q+P`5WYtkY_N;HLQ9*38uA#%uQyM^eT%DT=hRpdEp4MS1kJs zlk~|2o;u;*k+<&mX-oM*gJ>T6Lz5uHMdKmYRl-=gCEfj#1J|Fk%{bI)5?-AYO`Dei z?E8ZsqBYPBIKhe8G(&akPYLU7h5-eEHEO zG@uilhJNO^$t?QUIG-5VnbQq^AvXia@QR>Y2Y|_5uU-_W!H_mP_#)VMYom_B?HmkU z;N=b?@hVW?=)4w_PcQR(H!78+;)J%@om=HDrUPwW$Q~Bi zcAL(-$twcwmC&s_Xy7L(iga%ms#r_*W-kCSDqb%b*>e_O_n2&96M&G$K}PuY4(PMs z{$!_=XGxh$b(FoL!5=_g-zD6^G}ayTiYyomVG7yf` zX3szTdT$t^L6kKelY0C0Cl8@s^Pa-&Rp9p?) z1AFT7?GT@CWkw^HinVK(U+zbbuf4Lr;Br7x?){YUHv+l;B!UfH);PT^FWsQm(zSWS z#%`2UO5E;nFmyNI1UDt+6yAsiF_?;pL59vvz10;aZ-8f(saREjBk4ZBpU?T&SpwbL zMi{TF^ZAt;25VPG7nA~9xJ&X40+`(Q3rZKMiHJzYnHcwrovzd-l|SP$e#cH?eU`?c zT}DDf$`0^tA4vLK`xE*s40Q`1B+0K;NC zBxMl6e#qaf!D$%Mi*A~ZRl2Tq&O^JkxGULv#4+gnX)R)A-j$PuuhcLm4%lEL=<*>q zN=_W^O#j=+Wm)pP_em@F?iA&q=HXIzV3fF(#vHo-8Tc`5lj{IOBj9##q@tC_|2vWW z)K325oSA%U!hnLUWsHV{Y{OzM&26WYT$e`OA8G4nh|ISfw`LV7bBfPd`#w(qrs3`n zdy>Gle%TU@&&`8Zs7#G#Zz1q}Lb+@4D8cL=4wtnsYvrEf(tZA2nOU~5l2o4D$MlgU zz}r69HBX}Nd%Kx^@mcN;y&{-Q+^f*2rQ{PYYCKjsD?#I8SrNvE8SV0v+GSHC9+;t~;D0TBP2Y><*A8kzP>>SR{M4Pbn6c>E|N z9q?N6r02P#{Q9h!&8Yjfd8cy-Zb&R(tM5$RzA>V+`6#cU=8d5^xE=4(q_(0~E2o7n z@w~cz#mX`{QeWyd#E>nN3{>|&8BeX7dZT$$aVCGApHTctllB#Tm$v-3NSSfNA|^%G z5|&GYC)h5_Yd=R>ThsoWBR#>(Y)8aj!GE2Hi_yaes#%=54LI(xY@f6R_Z!(J56Lc) zZl;S3-zwIpZ8O~J&13gy*PGDM2WIMVHz%dx+VpI)#v6jtC-r8CoAUb3w3`%4E@+T` z3%8Hk=r~tg)5^ZJ7dKFr`D|lo2DyKW-5 zAj|~=m`_<_TLYGK1RI0VgHX#~Mui^LRgB61gT42RifZfD1_c2X1QQs@sDKhxKr#pj z2%_XD6bF%0W~@%t-`6HbA-0YoXMDnNF9rMcjfyt z%>`qG|0{@2EnuoPOkSG^P>Ajo>l0IvNDeGA`LI~v-DXn!TV(Khg6exF@Aq{zjGrr& zyx&(nX{*mAFXAI|lZ+4bEz~mx%71WQ2~p{e5F+^4!**tfvJ3I>cMw?np;V0lU(o}@ z6z9w1)v)~YsOWh*-y>T1)rTU^+}9y6hnZGPnEVm*#D^W>1;bb>(#x%zd}_o@`2+v>lkqQbnHD6;3Z59Y66L~g~a z{MKcr4KaucxbS^TWkBZxt!#zhrn9AQ1V4U9q}}dL_hRw)Y1ZMxu;>ql3loF{K*;@d z2^2CVwi;>rAvZaQ5QTSwcSNJ>oBS=nrAXlIaucEQ( zgh>B+2988v%xX`Ig6L^x=b{~cl6mA1t+2t$)VEF6d$0?}VB^zAO%vMp&tn^q8xB~3 z_UximS*$~Mek$W5;SQ_4-@&pE!P}QHaRd>eZBg#MdyC3j52Z4u3HM0UL02BULx`Q( z&3|cyezt6cVH+N!al{~CepRtROTXii4YOoVDTLdY$cJWSVBw~Qf}pmrDKhD1#vPr)!m+s z=6y2heMAt%TqI&EnDE16SAR`0j_zqCX%$?iRPp zKBk%j-0TOM+8=B6$Y?O!1w?De!L+ovYA*gq=V#6kp-8eXBCxx@W%k#fN%UApR6`ey2p5Kc;zR` z2wob&SiLs;c-8kY<{h>vr2_5VJbT{UMrFD;S=t{TVx8T)K6&)G!7u9AtY=5necyT> z6eTP-f|Dqa;e#9pX)|Q&Iw^_Ihs=9b!h`xP$wr z`(U`#VhJ1smcE6Tdv+?sNB@1M>iRbK2Pk~(UE?yLI(qho`KkTJ=7`v2=n|{dUVrOh zb@N!uK)GI*ce;aD@6Z|oZLq&_HR#xAc)Ep||C69>@-j;=e^utuYu-_vlO|EcJxAcj6FPIn4fJ`P~X*%PS6r?NUD= zQyb0+S=zIPsvq>b4)V)K5&V-oA_TiTui@RE`}=MKwS^ZFIK)i7V@q2UN%8CenR3WS z(Kaz{#`tH4gv!E-l64jDoS8Jrayu#kxRYoxxaV$9^%>i^rRgegeWzA<_+H|>X-bw+ zxOls7TPa^}mTDi8;{x*2YLEL^{G^9PU5 zc2~;P*^cgw+f(I9Wtx~Bru$h5DpO%Eph%JW!?62Q7ovZ(XLIWqto1xyL!LFK@RVTN z^f}9V+|ui(sA?0^=!GoHMOXAZq~64Aj+p_K{B_1%*dddmW$di5^>MP6y`FW>4-0dm zvE{GvAA$cKGk@vr|9#0wyL`*ewWj4d6vs%g+GZ#LQVa1Uhsr@Nz3Q|ppWRF;4~x0b zKU&JP0F%axDre9hyme6MJvL*aDGBsTyG-PR&p7mbN|;)+S?;aI+q)#ruuX?{7d#KnQ@QcCdZ{ ziI^$i4qBLVdjDn=(kS;Zlr3Yi5IO}{qBV7?S~^fQ>@1K;|Mi#vgUg!%D@Km-R}fO? zh1nVL)qFcn4XS48rN`(r@6Gq;Jov^7+0RcO>Ia#4Ox1l(Xtc8_&;##CIwtd(` zBD;M>N?JO*_7Jme>4I^J#ACi0cs-ganVt8Vvq)ty{7m!Po$PhjeZwF*cG)j0 zkAis#tTcvuYyNwp`yPP<0G`%KYq>1_&N$awV_xykjQ{!~(EC1eMnSiICgX{xE zY+;rM#PN38coWus8s`oZ7ZZy?3;ftS*+V~OTSlGWNjHJb(Y#;>JlNyPJJKFoq&Tfb z&v5gENrCn&@uE)2CZ>S8(KNcIq?w5(4ZpV8C3@idF8d^zZAx`rgCt=7IV!d2L3VW( z=u9KajA!Qj=oySh{}IRObG|>>VxUVSmN;=U>$3B!0jdu6&tAs4@@zLpwq*Gk_WX7> zrwi1Ro(COCQiIKKH|!39XqSkMFW+g@dpq_c@Anp?d(#Qrj#@5uz1+nVBXapKgO&O0 zXIKNUNXy>0j-7O|zI1s_r4dSlkkK4krt5rGji8YB@i-lyM)NR&RoW%y9I{Oe3s(K~ zw(BT`o>1@y8F(@YOA;AhNY?v9D|*sRh}O{fIR%e*ImYK$drki4QL zn)9@p(g=xVPv%C(0>44xYDYNi z^eLQ^eZ0TvRP8|KpS6nG?dJI1{d=$m_W<+9h6I(fXm;-}`819jO`05x)NLEW?7auy z_uTSyy*K*ax?0kT+bzxpWL^vn9J-gL)Y3%ef`6*^ZNUl3=UbV-6EwALg^0_4FE|Wzav&Cfz?~q5Yn{=ErDz(af@Z_9l zxE-=AQr%8X**6!fuq=8v94qu(>^F>cMY)$}`>$mzp&^iEH+<76I(y4NV48|=`63#0 zb*qxgah=`TMh*7}jT^O-A-vR7X=c3Dw$uxWrk{Eld_w54SM{RF>HgHBA^=IT9?W|* z(mrsjA2GVwFNv$y}!Z24vNjXeZ5&7wOZ$~0RXZ+!R6I%M$u3ayY6fb^<=vvrzRE9ulBRxSU2KE3Q}TOg6=F3lBSfW>+{X?K1B_di0e^T^DMUKkVZ_2j~35ms(^qd14O?! zPE198I>sz^e0WvzdxB`^vQ4m0&#Q*K2bUR+EqiThx`lga*!M)JrY(g|N-8(pQHi$D z04TN1=Z&6qj|asLhyI{=Rb5wR0)?l>xfLokT&%?IGUM3Kd?^wI51zURP}Y_;*M1ki zT=RlFO6J97vDsJSwUu=#vtJm{&qnub^457ru)VG9Ey+g8_-)O19JktI%VA^OX^w{t zfmFc-Pr83Xbl}$*wpvN^1#FCo|9ZxONLpP<@b@Ke)eIGuu({D;sB;X0kFg1Ca7ivQ ziO{;|ln)Z`=UIM6qU`2}iKMCQ1hZnc6Qhr;A0)urFs=LOiC=QORNlrvX>5)n{yNGk z&J8$L+;vXF7`fcbxyf$`zOI;rv(nMsTWe-MbXcGM#qRLLNQngqL@oDS#0Ql}F}ym#@(IWl2rtjOW$l#h273v{BV;yjVJ$Z%Y;|#@i?Nlv-CcX-qk(?aMjz zv%x)^f^`DNG^ew;`8PYhplEpm9XElowIp5`O`HqjSFx2Tn3Bh`B-PQpmRsf7nBsrNDBxl1FA9$1~=KQf17@tBU zl0Mm+gjY;Ea2evmkw27yGt&kNvetNEn>Q5@pPcWrwn$I?N(&MG9XK#P1rFbmpkr)z zH!+&{J^Ng+qFU0T_tV(T}PB zb&dSez)KDOGYN|B_i$^8Z?Gbk-(u%$`9tE)T zF_!eLu^54_nI`W;9edI+9@vI&JM z$5C>AS0F4NyzS1^*Q7=&yt}+~w45~Te#lQ|zlP6r`qlb+&;}F_^wdC3vWxVoSi=)9 zoA?Ax@mup7SUyl}>a>GcXJ21X z4jo)I_1oagK8c2a$TEe?>KSeF4CAn-(7$yxVc5u5Rt0y$Kt(vKG^2HmRk9aXoiQZe z7J~1C!6XY7=b!~VuA37Fk06hVof4Glmb5GqeYPMDy~`;eRN*)}wD`gF!=Y#m9#WK| zl*Ls@WS!UcB-Nz87SgD2TO1MhIf`^Mzg-X)hle<=Ak)f27uGU(X@n#XJU@phEEqBe z&Veb>_-^E!d@mRP9g(;K4{i^g*4#er)7|3Elh1Ske@^UN$LAM|9nL>q@!WNB3{qDq zP#%+?Ukpz7QC~dlZi(MUc=h+E0%DN|s=EW%A5T$Xn zqqfmKy@@>^SRS{3n!?-FF0j_jyX$W4wBRA4b!Y%}7U4rUFU zwV48CTWpyz*!;9feX(#6hDmL}UGf3o<=|n8pp$7aCJo;19)lntq(m*kUvCvxnr%A$ z{0wq~kGRSz>YPHzMJgjbehD}8MPo$BpM6sGU2h^uVXbpD_0EN4=M8M`iWa?Jm0q9T-#h zeqFDmHxhfST)!`^o$Ym=+P3%1zY-m|N`(E`%D)-j(84`X$qzt6(L~){_xe2Z8!Yy= zaWI9+;9iyEcX6dVX;USMc0?fBV@y_&IMwlKH?_=)FD(0l(YBr%S6pJkD5Um8m$T{$ zClWM+pQA?9`AOcPIi*?o$Td)?)C(MGq}vxiomQkraunkX_RXpumPv1czbRS z3)i^DY$}#^yAp|UdaT@zPDzoVN*sBtRH9<>=JQpe?qfC~%g`MnPpABF;nV_fdS7X7 zBN~@{%?zdF_MA`V6#*JItf&L^QP{v#WINgXak`?*)vu_HVgKD}?xl6Hd`5K#w8VG6 zO5+J%-}{)z@oeRNLzJ}1(J{#0MqI8p+UE@!JJb5xzX z0xryZhI{+)XeP^9>pX{cm})niaT*8zNCmQZ(Km*5?T6iq)Do`q>yjz=wZuw}cWvW& z&(CfODWv3az6eUAD-A_OAZG3pSX0lgD-T*<{btC9n2a^A3D56j$a4tL)H#9vIScQ8 zl0_jA+;`s$Q?REzJS{M&2JgmbhGOpc#S;gvMaL&g`xq71FNO4jP$nP9=tja(Esiz3 z7zxh9%68?HKd=SgD}>=K_twA_O-{*dhH>p1j&$>)N_)+m$Rc2?^}`u5uZPXLAZMTu z0!Re}rMjfRwP3aRW)( zT=palzk)}^014Y&?Ag&l;U%DuGy-vW)lj7a!BEEAK~W)2qUv(l2>7SXk#5lGobRzy zC__zNR-6Yx>GM_i!Vy!F&@745EnB{X zab+HkeBed(jwFW7r%ur4)SaGkv>30VRXM~QHwPFI%n&RGQV7 zntbDE-glAR)!|n?n8REqu{%RKRa4)wb}lP%n(7#< zG1@Qe_|#&1nn9rP1!^%IGSP{qL)LBp?lm%%;?}>fAuXIYiC<_%7}J%nMSX0fkhWfe zSOC_6)2Hz4{Sgw04Pd$^kGTK(X447m)fomfy$`=~`@@FGDXfiiGiWqjX7p38+En@P z?It?-fwo7!cna<^opeY@U8JU`Kli@C^GXjW1sLbFJK%Ts6?+>=*2MAqhytSyw>K{hw&8J)D99aE_U1NH^(~Dl&&1&N6Vb+~pYA1TlV#04a zwU5Y*UA?HAESJmhxa?^+oa{zW>k0ZaL^E<#M!8xbVsU`@q?+O77~%iW*P?X1BV4sV z?=uAea-DO`A_Zz1r?c2-Jp+C%t{vLn=agJ9=}Ta-h^c6Vosq#|)7aL+v{*w-S?e&5 z8fV|eIVk67w$ItJn&zBm`QjPw;`4^5^NR43XFg|jE1t*7_|_6z*|@;zWV>j*if9#X zA-6%#w&^OA#BYqwib;OZm1X5Z2Y-{>oOZ4SBjUm|g2X*M7bc_KR&xvyVF&2AdVV`o z?p2!t4Z^Pirw>mkUsE!7r0Gh!%^vp(H1=ih%hPT56zjVZS$AH)%`@E9=gpquBAMU{> zZ#S=koQdDY^k644I$)iH0_g;D7)LTVawwI=h0CoJN$8CRopL@_yT!G@TcTI;ZASLKuc1}`vIj;5`S`kGK`l(I~NQ3vsb7tE?^4u z&R@eRGGwj`Zx^z8o}*lFx;T}xx1HUPxY>XBqc6V}ugt!yQ0EA|v@hJO6{Tt2iaH7X zPqcWp7)L+Vg#MI_sFg1=Q_9Gj-&a`u`wIl~{K1zmfzr7YCN)Zp5#Pzs2%mrUf-Jc1 z{xHUW@AJWMv4|2pBRc0xkgE>k9pF~%#~1WohF%fA=@g5l>Bqiw9i|Qx{QKgDplDj9 zZ2I~jZ|e>AT{f|U$p=HXoc>Tzk>N=W?=NVPI^&30363EJiMKa8oE_CqPM_nXWPpgf zDo~XbB~DdnSXJ5_6B|i#lK}_ti$l!LZ07wUc$O-r~n42dtOndE_n-Ww7^V2h( zDQwn$B)chQM#jH|s;Xt|hx?y&Pft10_JD2V*1_^k?5tU97&&3f>enkMj#KrO3Ve zu8TiZXo*Bg$k%F0d1qb=!Ro6T?O$>ZYU8XG&6H4o57HBT;z`RhM#PA>@<|t|YE%R( zN{hLEcT9t5b*q*47g%9^RTM0n8PK0Aq*bD=68k1U)Ud#y3%{RIfJk@7;Sj}zEjgWM za6JPb2Re`=HWf>k3^hmt=7FXqnY9*?_+n|5AeSo0LOe<{lvG zo;mLGU`VxMu}v?;nx+@b+fjsRJ&C;%-31>nZH4l+mH9dU2n8Q z!V!;^r0|Gki3iBJ=gVBOpmD&g< zd>Xp-vFLvQysueKPV!jsX zXg#mc>~9u4D$!h4(>Ee{RH5JFuO5NEav_{8sU7z0uSFM?SkSF-8S!QIQ2H-$sPDiy zI)P&Cw)-jBrztu%5Ei0*vN&V}+?_ECd_ALl4T(hNmeq@f$#OZQK-VPLB`muwt|jqW zWKMC}}x29j83K0y)7r_xp@+Ui3Bk`uO;t84_K*d#V4itqz$oG@-6DSe!2Y z?1k~e%4tu_GG<`(l2YkUNNyO~$*1>DqWSxe^r{PwZ!VW^^=H;V!Now(?~M=gcK^ zhYy%@r+sC2s@k;q-_{4+Kqe{}$sJ{t`oVgcb6Gs^LEim2Iz(VdJ%+7OJp$I5*RFoF z7554h)r?!tk|{sz@VnL_yZ49ywT(rw>v+@SL3gO_quC_)9}!+oeKskB=UH5NVvJx` zVq0T%!kVOMNj2;h^C59%UwwfInWr|0?Y!6c$g9KpV4RA2L4V6*o{vc8(pH^}{_q(R zQa8U5=w$CB|75o%=`kO>kfKm5U!!n3&>rOG0tQ~#>vh;dj%)o-6f=y)g1_-|k82QU ztqd)KZZ`tW3h#sMbfNy^)J@c-i}p<=z=G9xf>8#K7-e8+%1O!Q!(yt-kj7wzfreI^ z+*8MBetW=6Bgg&3{;{0LEd8Qid;7{n&?XAA^mzH40zWI;cb3dF1a&nD2Dr^-}1H4KvC6)sK<8p z+EIG5q-#tY6rZ(j?UeUrxk*aO7)n-+w(4q2ik~BVtuWO{jX8EfIh;>I{(0nPRF~&( z-YRHe@4@n|JV-$)^NxZUQh(Zlp7|Bm<$P&{T%l5nbC74;_8z6{3{Dxo@#mYc^e-i$ zXk1bLH0~qwiY@wtLJJ&)r_c$Op zu9CNzQKnoYh3cJ_#R72Y6CyX!&sYJa~03g+JkxFM1rQ31eI zpS}Kng1pVS$*%sTYyK%8^WPh_g~_fgj@E$9Yw=VPz~emVkY`wyMFI~=N!efA3ZBsb z*w`2JPR6mDfth;%yenE|a8!N!>Ua+dqyj{g-Ww46chO%NfJnY5+T)AWQ*;C9S&BfH&%{`OYLMt3t^;ps;zANk9Fsip{9h4UQ&J#p8hoD$1C5mIm*EDL4I5+p zd>{|BGRVrknj^*O&8}mIfi$K6~sz4%+}+Xwv8+K!_zmj}QMv#jmu1^DdtD z2tX~CeU%Z6B0Sj)!9i~*kJBQ4{8tJ|D`Cvy*ChFkt6#~dNnNJNY=-M}L@+3(lZbvG zXJHKE?|+vN2?0wb+K-YU^rrFiw2aQg|L4zuCX9K^&L96-}kf0Patua?B}5hDhr}xu@!-l z=GiCT#=#(U2U<3n5jvTieQa{_@=M^dEmOkB0IdVP`QCRqgD?MqPq()cQ>Xg81h%0j znKxkHkDiHADHMX?RyB!Sy@6Sl6!^=fzfVTcGBm#`}q6WUaPk1HgS*UAuh} z1QvR5E%KDi$U2%kbCcsp4>T`^;#+GVU=mraO9Tb|Aki5ZpEB3SV5$IgI~|sgA?QZF z*(D*fDh-f=2MPuY7FoX$zsYKdzN*9ed-6uWnUh^qe1PXyRQ6Yk6RQjiVNDYwS>=@l zANSS(r_zht>4#f7za|Eer(Q|>giPwS|9SX1cewFNOD7D!dF49aeN{k123Z}d<9;DI zS{vY!q~kF5gp#HJQaSm4 zZ!d-`0jSV&m#Xb1!ff0EQl^8TZVq;!w1Gc>i_h>CCwS2E-`@XOulWGNo<}GhQ|aGL z2XhB2fzz-sm6Jk`-$=Ds!KW{8)dLJL{~%QjS^dv4!w)BkzJnAP0~JCIoQSRiLJ$(x zxdE08K|5e81_6HdYuml!`-l(b8zNj?g9#M*e490lSssu|HBjw5Re+H6y!u7urZq2W zPi`V1Ps_N@s^)O8w}e+N!|w4oCTvskZJo5urOx{hb!Fk{o&Q_SA_F0JR_!$9Odo4a z|1?}QGChuWYOYB%tvSt0qkFX9|2r&)1(iLP^3vE6sE!gHoY(A9v8{>z7^uRQBskr7 zrPanY7q4bbHE#?q>Y4G-EQ}#0*WJ*;GOK%#KeSf>cDPTTN%)7lEddhR{nut2f+R~ zF-Ox6!kr^^D4D4bm79F2G{Lojhf<3HebYCz<{;g7B%|pN3PXNF^Y%$v1(pZr8d$5q zYj&Xsvv}hlh!TJWd(W|kv(AM2)KhedlOOile*gGco`DQUI|o?1;lO55{Zd;Z$xGVI zQ-77vpO3p|_{TeaZZTI@J9lodESm&CwE@I_mO&9aRoB7J;8Gl}jbIdYk5BK5XV5C*vS{;W$--8qBT!Ab|E)@$EjLPk*g{ETZS>`a&eK&0jk{SX3@cf89}3&RvQS5Vf`7KZ_|kGMZ_ikuRkX#l?sOcgBe z>AHFy%wPF{a_YhUERDE=tXnm4*DYe|!0b~1%+4?V45HabUS8WTQzMQn+-9@=$*`w> zDRt)f-P#CccuyB9=w^!gOf^OBt9<`p08%Ba;^1hT*8Pi0fA#qMHm+}8s_oz1s*Q99 ziRbL^Jjj0yeefm^ei461=5C7Pj&Gawfpu4=gL((tqjdFQpIRXa6G$rvPQ$S9) zA362Zjd8*8wbml>$bQ8luXzd$&l`;BrU0fgD7b5!%`6>*?fHgi7tE#7?r;HKOF#^x z^xS!ETBAU|D0wew83T$!N?Z!UUT#C2??0Ji;^7M_rBY8dTB1AJqLOFMcofByXiWR{rXIZ z?ka4U%sD43A>b`>+RdEpfiSIZ=o7tG5$~sE=Ngi^4%y%rA8i(9tt}F@@u1K{V9?YN zb-$OC{OPLIuIIv5wdMj8inXjMV&1nbArWy*v!C}-KzO49W#ukyy9#9A$T=H`>W~S5 zP~5lB>TTX|@#_T8C)fy8>}JDLF_w8BX2@pDS2ExUT%V-X>|e=P9@wuy&XHV*^&Cl} zPAEfyYt>=Il+hiaaDk2D4+PCl^JSYUJUuLg4_}PhBW}==boEq}5xGUoFof>#4QHLUtg!7bl{JUGQxT`1!u|!NNwLpFmHeOJ*yRWQ z-^Q^+)%-c}&qV3G`&Ief>0Kyn`lsl!Ms|*n?bH5xi~2e;P*j!`kg31u?P&* zxLee6fw|8lWHUe`{a9Av`xK3CX2yDlrXxZ+1S!2jAIr!)eWEv8eT`+~)2{#p^{S+H z7#^GOADB9DxY}B`4_I+m<6AyaEWQ%Ig^^lBtD1E{c+Z7lE|X$6Db&M>z_d-O?wsrI zjJ5whyd$11kK_`vw_r}+t&YvpdXRkzQS(0_+bhq07|OY* z=gsCv2aM%2XMupvPfWPrd1gJ_GSn-J zgM*H*?80R9)0!cPDxu1WChYSsH>d@z-gY1Ui}&7&@)4$}Xu1>}w92Pb~i=U1i;U-pTaR`)zR2I;=&eADCY5l&!k= zkk7cfiC<*2)tafx{!3Ia`d`1CRfbHc=AcFI@l`uWb>%TqhDB`ZTg}Hm^Fn;NSa>1wkB4wIf?y++?3F<(J{jc#n z@c$c-yu2>)5G~^aplLC`G^WyD3Y13pG)U-Dlip4-yZpt=8PZToPmk&whSrJP>P(it zKr7~UaPiTYR5wUG*p8-^YGkJjVR$m2 z#~b1gTA_Yvq`Ck{c>ys$Tr(+yeQx_N8LK$Uh4peRTx+?V=2`o6B=fD&p#G_cI2Y() ze19=4!3u56Bz$emU)CuZWKOtm8Gc84PNJ(Ne<7M6UJzvh zk+ODIiQ#>&#l7SBPZ!G;hJv}eD}IVgIn_M=dlIQ;g;OOZeVapu;8e#I|iTWvqUjr@_EvV#4J*|ZrdqFiR3qpRbbzOr=#BGCgv{i-$ zBP1QkjsS(E>r`p4&I?gkrR~}xr;b$fS+48VK-A7W!fBZ@sKk>qlLj^Ih1vIyl#4U} zE5Y-WvXsa7%hjMLxlJv$vf>SWrlRbpQ4Vvs)JHg4CiEpfmkxi>Vui4nQ!r2DJPK); z)DP#p9b*9hSfnKd@++}NxSS9J_CV^6uufLOPnoV8{8+6n3E8W^nLhW- z$W#mq+mX|0lPvK0ink-vCR}CQ6Xz1u8Lr9laFa~O7Xz+ZH>KqQys^3~Q0_F6q>*>9 zKZiWL(RXX+TXAQ8-&KeN3;#%FrTiWGl~DUp#{QdTrogQ)$jGLnS7tTqOe5rrU+i!7 zspnT3tLx7Axie>{nUj90t9$Ei^zQ*4+PB!*v|*$=a|Bh=$lR7YZ#TL~?E!HD^WjU0 z415h98G08xve)EfiBM~{GR5nN{>gh#!|O~Pz@--ZO8asyoDitxC6~s3NdVGPZxpg6 z5_Gjai+9=k?%!f@k-#|&6vR2bybvAi`m?Mi z<+x5w3k`-Fp4HA@81&a0J9Jf>()7a;m+f*!@AKb>TIR6WN7q#=XHbybLqya*(AX@N zNBH0l>(~B#Yqt-r=S^wtFS5*#>= zP=7GIzmie~14I%v$*x5v8{|hE)O|*}*tg^9TU05CCo+>(FPZ?^K^cTy1r^}cVcB3* zpi3|x^&p}Dz3%zz*}PEMbKr>X*@%H zgb7_>iuvh!Si_ww@3;*JEngt3@0}N52W3bd$og24hm_&k+Ay{fqA#9^rA;yoG~)mJ z;O?(n)KmZS=@}Eg>>rRgJ{~Z2v@o6do`4&SZ<01af1vc>ge0m@e#tz^-cK0IkLq}> z`0Q|m5Sgb}b<(At8kAdWqHaHtkF5Mu{Bco05_kPfJUvBDh3aLp7J!fzx-~`$?{Bwh z@k@ok*SrOD%^t}j$=G-25tKU2Xhm$T&ZwJm?rn2~l8EN3w}vU3#yl+$vQbvJ=5`d^ zPmkH|?o$~nJ*Pf_e1A~=H;pd3)@|;7r+!Xnm>ADiT-&?&F(2LM?!ASoA3(se#3N%S z^EZ}CKH9wDekzA74axm@zh}6u4-ZiGyq>mM#oSmwxyME_kWyGWdzj-cUR!?bL-7cs zsG~g+4MlgHem&|W`dhpRFVo4*hQ;)dng45`o!QN|79|UyibbJvi-ToC-%{?6KNNpy zb{v4eic|Zf9-~K2^wV&0-QPOhy8h&HJR5#}*&jfCI6nm;ReBdT8>bto#?R!< z8h6WRt*70%sNyZH-0}rM9MmC&ALND(IiIEt1$hrqH0|qr{{2E1agZ0*ncwPL;NBpjGWox4+c~C}9CUS=DxLIYYha zgnrWpkdRj`l0=M9h(IP0e!#wbz%R?@*uIR1Ye z)Ll>S2BBdmY0RaaUsnR+ZPt|P-wf?-&z?emWT zP%hvMyK98}+)IMv=)1OqkC#Blb||^fsuAGM5R~vrQ3iGs(p)w{7xrxD=etGOOl_^L z6gFQ-Kp+nnHmQrOmWf$9mzCo0{MK&BZ!dp~R2sEow%PEN$*F$g-dc`HU8S$u>{dBw zhS}2SO+Blzk6)7oX8~p%EUg&?JGpmEzC=;}uVWChxGas8b)NkEKl@QHp3oF8V8B!{ z=lUs?K({7w<@$J6xyORhsuBZ@*aKK7dT#|xN|THbeiH%rP2L?0e?OKGkbzgZ|L=SL zI?GO!EVyPmK5NXs=@Ygl2O%$}=OOF)&z%#f#i$sfEc-Z9Jud6@(JwM#XgZR?{ z8J*@0i|^6F@L*Q&=M9>a5FqhVX#Cc27?+s8T+<1z@tnI1&g9{Fdv%{krQR$Tz-IA# zWYvFrif!J2obEU}3KGT;q~3KFF8nVO&pdGW^0b1krVl^yU%c>fnjFP7}04~8js)C{- zsL^^GA%6hgleJs=^>qMweL?+TaOfE8(ef}vFNfN&1%yTa{MHn-6;&YEb+v1Yx;&7n z5?LVFxPBg22OcCfR@QPZ8h-R^R7^f<|btb0XOY)s}jo7jUs(@UEzrE zYy>CU#GQE^=r`w3siakJ4$`p*#SyPU9IubB+}MRdtWAq4dC+O<~uNK@%|AawGw7?*KMZ#>iQZq%|cQsY{- zY-z_=Zng#v&R}8 zKeKuLI??HQR>TB?$~+!wJa?3@k70pvcLiGtQw?Jl|;?4-}%?+rjNq z2wWZR+i@5|_Fl#;KhL5H+f*UpLQt0$-3#SZJ*-<~_D z!GITARAi9H*KPEB34>Fq%NsHV4$6*;{Q3E<+|Gd$@0LSO7W_sH^YjbRCd#i|c%&CB z4=3;xbA7qmAGjG&XRi7NC5H>ctQMk^#Mk=DJF@j=mA7So$t8>F@QiCL`2g=gX_Rd` zeKikc=(}Bk)m;%PmbDO@wvb$&4;djXS7%8V@)Fu1`Qbxj&Y_J^u&B`U9V=FeuF=Y6 zrWdQmZa~nOcSrHmh;%W`tM^IIG;fyP15vhi$qw7v#y!=I7Uv{7g|tsFq5gQSJ%jfq zC4cl$v2qi+N(?M{N>eLDt6MvAhfXYAW-nc;7$llH&ECIZ=2HHR;k>aA@5z*zvF+81 zH0?FYs@KM!Pe~ZV(ete#r|}cSrJlBBD)+01zr+cLM?>6Y?2zifoCYNXByo*b%!^=+ zr|Lpae$`U8>OMQ>Hy4jp!O74j1<>7vK+nc`oM$(BzT?($bMEJ<4-*m## zKWET@{=#M~J-jtXH+8F_jy;VR>SGr9wr%7u{;7&IKPaSeoGVZGp~KU7@4C6mkFoW( zrLhn)m$xihP+in3HQ+fA{?em|<>r zdiB=}!9Uc&Ih}PzWw$rf=u)a=xaDs5Pbx)oVI0sHD+ln`tB4N#$K^%gO#6__Q@-2_ zJ`SLOHBAMl{_~|Vl83WT7sxQS4eoh!rfclcas5n)Ll+jhCDC0zCI+hW?qe&lSIy^V zZ2gGWa!EmBy^@%mug{j`q9{%MGz%igK7xQTZd4^gLZs(Kv1J!(IqxfqlbjB>t8ruI?Q?K#Ew7g3 zP`{91)$-bCD1NKcbmGhI%jL6tD;K?9}HrbZQ{!eMpE_ThHY_WqTxTy3Z?m ztoIcF^KXq;ZL^5jsBV?%bn{Pks0LHQb(qX{W5?-Y4YJ*TdcG{d5{3O!s7H&x(lG~O zI6Y7uN>`-;_K^$8{{?9hkviJGB$muE9o^&GGi$Zt;X>oj^GDjHWhZxO?@VsLT&@qP zGtM|FwxUBqL{Bhn;#l2e#*!4MXnj-gdba*w{%#+ackodzp`U%F59cLn>ZtNtks_zC zdx1rNyfxB^g?2R`$uYq$c!eS)Qfkf81~ZVAdpDS#ius+INu5W9AT_G5B+69VxcJ6R zb(@BGp*(YyVx7V+#R7n$*WCHhcQ>Nn9)y0-RX|3Mm7JvH7CiGPhy{f96zva zkXTzx@=AK@{jN(eXPMyE-{(^%Y--o5m;LkuS+F0PM4?K!+(#fmxj)b9KN=ZCwLFET zZ_7V;7V|RpCmY{&w|<~*m}|vxFt-bs+A*KrXlk*jD_egEvAsLbq}l>9e(e6h_+xM` zwd?fwdJUp?JToAaN2$(L_ACH${o7dSMO8{!r_8WxoXhOxr`S{K+$1B^EaN+~GcTh_ zAoEXX+uuxbs*8K&W`mmTe4!*sCtkzvj5K^lP2Au-NLQ?%dTkqJ+8Qc_*fFeX5*X1p z-FLtEqQId}&&V+g$KH~$5<|JFvEWoA>?+A3F9I&SAjp9-Sbn;|>`sFOxnBMO%)|%9 z;#Yx3*wh+DZxbr6JGe`nWd>OF1CQ`^R|7w83|7(?c9ONNhjN06i{U{dAlT*YoL&(Y zzeA>+rg7u@hx!=JbQb+4O?&_K(b=tr2$U`7MfkIkmeet?%s=0D)@eoba@=nK1S$3Q zvYUcNXtSK)>djjUjWtg4+wrZN($PzGX*q69C;B&-vaew0*xh>PNYt6h;d2f47`@|i zI^MAcvYU5N#fG^mE?R)fPdnN+X?|T6{N`n$+BD&K2loq0mXESh@%HC*HZ{OYYr$Va zo-`FaX+wpNK{kdH_2E7Z*9!Fu>sb#ZJaUQ|uyYuKgY!I@a@L@B+Qn|dlT@zfj0-pB zaG*>{y5qOwsDuI3x9LoYylC{K=*dt4sYRJviIK_m5Bam#w(dY~$Vjy^*k6X(PI2E| zF}}+%n#Ty5@}n_J7w~H<@4F&$9Iw~MT;^WsyM7vP-A5oU&b;vUeqB@Zd-KFH!T-Vn znX+-qqeSdnDl%kfi^&y0KLhCT;u{1%(WxX11YA&iccnu{Y?5a!?=1SJ^RA*hN;eSx zuUB&e=1sLAA8G%L`1jMC#~vGjtlgJ>$(tjGhnCuY`IMETkmamEeUJ`A6YTe@zfbQ- z5%z3P9CtxrkIBv**>QYfb<}arwg8wjdG0lp6mYOyIUR7fv2$1Y=*NhoW*8NPGp8kf_AsNj38s5X z#*QE_cmatP(UN4!^*9DHqEl*v%`_IVsri(%8gCk_h4C0=e zwB+IP>La5pWFbKkTE!E7hk8J}VRh_Xmg-9`%rCLF00q%N&E%u_`8NR>D?5L{>o)8v zPWx3?7ex6Ha=rdH8{%K$H`BwLMu>HmjyHreKOJ>yPogWWA0qv$%1((QSH#|2y_Qr2!|=H&)4eDk3aW7R=u?k6ie2{cE6XE_B1gowy_4M|+)}eOP|NNML;Y1xU~^03xcDiQ#8L$q#d?^j zwBtxM4-@jX#qVC=L8%LkO54>b55e3~m5#9n?>WTRz|*+b3&opnQuvcfgn;%qAOwT^md)Tl?Rmb)Oi-;T=EiO zvaRGwgn%iG{iUyABHJ8qaYJY_(nY~Gw;zniY7Kz$iSEFKwh2HE4Vq`s_3CbtY$W;4ejs>V43P8H( zC6HnEYQI4FFIRjP7N}_~9DJ+)y5fv3@%*+j{SxnkhUU6!MT zsD`0U080vCV9H42533o?GU0{@gQB_KY#+y`@zuHKi#ttA?koPJe9uG43=smP(KBGe zFEp832S8;3OEdE6v7W^ECHK8AUPtu;0~EHE7`lW(dDdyMSigLC%mR#*N%4>kwZ9u2 zmk4SY@Pw%DX_niYNq?BuP%RA!$>Zw|#YKkHGyTO;L3EAas8g-2Tu*X}o4TRCOp=K1 zuoyjza_d%XT=q$Fg09{<#-|3SJc3Dc281p}|9@le&BLMW-~Mq_v`8r;#!||br71F5 zQVA`{PS#M!zVBOig)Ac}B}AshF56hgs4O8QyTQm3VQ8}Nzw^@F{d7Oi^ZkAQ`Tp}9 z$MZRk`}o|)ebmfc*Y&>M@AG_}uLVFlcSg)$g}93Jz;@q=BhGRcT`ONqr{+<2WsH7` zvv?B6uQN+9QLUTJAFBQHreQVTz*y1%5i_lz>UrN;Tgn!yUc>b#I9Tm`M zoa=- zzb{w)-d}0+6cQWP<<{w^pN}~OfDLjfo@FQIy$WPJ`=!3o(wKe6tXHD!>>n{BB{4N4 zJ~bme<&uSk_h#W9v`nv1e9oqO;6P&W?K*HnbAot&LFF|${uR|A9xu(6ezEe!8zwMT zm{}7c-j$ksId_4}DfD^2P_od?cnOs519aYrLeK}vmtMb%iqu7(D>E2kEXNh=U^zdE4xg% z_xJB+gb2Vgrw1{L_ft)^#75hIJB={ro(HxPYr!>ClL$R#$nq4NzTuhs1Z-%vG9%J` zDi1x=+hLRYvoq>$zq87fN{xD?4a*b;YSO|_gAHhXxRx1;5zD-XOYllQ1MOT+tJzqY zEjjq~9>i;6W$vMQmbQej)`Pk4vOjzYyecq8{qB~}a-=|~HU+T1*}nB+WsUn8y|~gd zHPnNb5(Ax|>p92T0$XOVR2;O<8ujRX3v;{_+K^Ng?XSC+*V^g4KLqbq>@;MZYW(7p zrK*+46ucE>^Xi3Xu={(#HZKr&@4`BK)zfInGf}-a=O|r_I4*3k`y^s)=0~RNP5`cA zfoQlq#*Af%o}ZTIDTW+gv^I@)t`t^1rF#Id5oF+RZciu}ZebEunF~9Yd+3xn` z+MM@mreKZfZ!A6lgsQ@4~Kk(alx z4VU)#GTa{S&Y@ViA?(eV;*&(YRjM}KonI@akjT(;z+Eh3!_?+M3e6BSL;0YRx)G(H z;(A5u=Q&69E3ft{NOg_#DUBAACj@Unfg#`>@Ny0nF;hNR@xq48rn}63f5PWFopIS5 zCmQB5wqWbqfe?^q76FhM45)noXnX75^Fo^Y|7&jbUyZ$j9<2Z`H4}2&M^s^pDAY)z zt-Akf{;KH!QjU&WZxUmr5Kp?)W|~2S%?|$)Qm&+Bfq(vg{#|=N%rOXspgK*s1)JLG z8N0sH_Gj{e6_TKKn}F=Ff>ChBxo|BhVR6`;hC5j{^qu<+8t?rS zrv|&%9JIQdj`0NfY>{FJMCi_C+`PEywb=1mm9v?m*|pa)p2dX4=H^#6r!mAi$_$23 z!kjhS}8({m(x@Y?y>&qpI-;4+Of;q@0jzObQ?*(P;dH*J$g+%Ve6eO)y;7n?% zE{i|RGL#}Yo;M&83aW)<)9=TmiE^^`0UnLNyu#Y$MNz#sYFraABE?Gssr$#{$kVRh zwlZN>UxQran}|HL6?ql;22Tq<4ux7cDZ+>AyoPaZzyVDNOWiP1ftbYYhaW+y^w(d z7nG98prL2B*>z&R1C_MofU{s}b7lhJL7GOk9NW!-zThwC)tJF_{sV+wa{T}`hXK4I zAzX~9=lx-n=hK7`Z^`~oIyAI_elt>{ff&JKR~&l?((0d(q{q!HC1mV=T z^{?&xi-%B}q9?AKsc+`VoBs9e$t)R=NPR7tLN*h1K+H%$bKliGqJ3be@+yC!G}XXi zcC00OD+)HP%+V7t*_RL-*qgJa5A2wg_UH&$;J!?AE0FQYACSrKZ1jr{bG9Dv&Q2i@ zn8qD%QxAI4qH_6Q;^FjPz)nO>bX?oc+d+Iu^M##x5RntNwt$G!W~Px!LJ|ANUAb2I z0?S2+U4fcHc2tjt9=w=DGTyW6RDRW?in)LJD83c7)aIPtndif*yc%rLzFqJ!MmGi{ z_Dkx=dy`ffrp;UK?fnS~i*DTOMV+mZgTd1NlYq#`C4$v>EbfwZdQZY?!=E-*x!$pW=c1&!po`2>6Ci(Jh1McHmg5nJuRV)^G7KycB7HPU<&($x~AHekRYH`-40)d+QlO}mQQ$q$;B=MA8} zYkhXw_4Tw1Y(jYmo26Oct!|7I=*1axDB_ zggY2e@Z#g!A-*)_@#%YvHm@{3L5V_ny;9xL`A2)CjP!S1a2}l2K8lAC(et%4N4T8q zdW&+kxJGrwP!yC5Lh3L3aVdM1?h9`g5fUm#3o0lpNn zoC#!6gFUi8g8DXs^^#EOC~k~XB@=DAaNGFtFW1gR3J-h)aPvN4_Y-4}I7i}sU^VP+ z>)}lcQYetS7i=ynH4r*}QljU6XWsZn3Hw?bqgwF2M-Dn|-hq$mrgY02;M9;OL*H)A zHZm)oEYQnQJqWu%A>s>~0og%Y4UM;C!1nNTc( z7YKbLe!(WBAJQF&M?{ZBp)iW=SB<_M6SQ3plp5Z(*MJa%(PciiS+68NOa2miWD<}n zE5Y_pFJlj&GD7!nO7PWH)o)$sZOaK$5~q%9DFzPdD<*9I;vk#9F7pj0AM%IrKTCvR z@LW_%;`?J(tWH%VRJZFqz6;zyo!y8^3cSd%@BBrD?YG%0qR;Z~JN_f`>GpHmL+S7C zJ16!RKhJQA5#7a-k9tB+qRwioi#-zF!g%AdP_L(%9f3v#5r2eXk=gOAeDG^wtS z(|5oPzRvZ+`sGf(Z72l8bA9|AIln5U&$nD;b)i+3%{~F1XQRS$Nc$4xUIkIq8Y*DZ z+LZ?xeUS>Cpdk6ou0Pvgy6(bvm;I!rit{IQEz4C|>RtGxeeg*%G=&22S7~T$Ae|8Y zukHC}eV;1#>lXU{y2taIkKil?`8_m2J^TOnFT#CL|9^RNf-+^Mig8ad&Vz4ng8ME9 z1G^w{>v<=j=Mh6}0L&WTNHgvs>qDHN^T2I}14uRp*!mF7!2*ked+aGZx9g&FpB477 zDx;h)7&bt}o*ukbFPyCcfb&v)XU`dZkaeo?X?j=Yg8#Jnr>E!-co3v7*!m^&!FL4} zwjsKF5fzeg2Q+(w@JXW3cDzJ)n&~j0z`p6K141S2Ts*6ctOnb(7J5{McuW2rcdd5V z)di9gde_e}a6K}%f?-nK^NYwCdMa%!+~?X3BOmbjBv2LJraafbOC86gx~?3@@fc=(v=0dYPEO(HQcV!xnAgvb(gz}I2~4P2PO!~ysb1yj|swc zI|j_e50}Q<I97`6m!C!CA)E&*$X7L$QPl14 zK_g{|=o}-3tmQ$miH{nBQ}7t#tt%Njb}O$`5N|P1$Ij>uRlGfg1oFs!_6;-OomGR1 zE*wHE*}zlra&vzYA~&txe^s`nE5te;2|dr9zA87TO@(S6Ul?f}@(q9gCJ0nS=%9O}MJvGje6HY|WI)WF3flCr1rmFD^XJr2ZG96IP(V)6^g?GG{CpYE#UyH1}lOvSWpD? zy(vhQAHKqbJZCy=^ab(A-KV;EOV&XI|JkJvu}j7PTOwTbRQJmfFK+T;jTFZ{lMHj& z)iGsx4*V2^sDEB8Ldd0Ez|iYhEP{0e+O{MM)6uq^6-M4AR?J(XmLQ%;kJ9j(&TA0sw!pyfgmatEG3L;h z9mL7Jh7K=dm217KN zsykRtFQ;sQ)c|Q&kBe8HAIo&{{Km(!)HfZVXIIdo#Krmol&XOZ++4uHSy!69(B)7@ z30@;Xx>|H^5jY*Z#I1$V@cZOFI(j}NMol_x=p4!(@v`n5$gub5!tLt|4H|?TnD3?jAVN9rM5`>&0RGzD z>{Vc)qx^XEe0Cxpc!k(?HQ8^ibrTjVlrv0Q;eCP7gCM?|uElXZ;xi+}qE`jJF4}cl z*XOn*^6ED!PR|0@obcRj(mOCN4Mi1mS&|*Zufd#3Itj{qV!)&dJ5DHuONk-%L#i*w z$<_<#KsZk%xMe<4lxK?h+;?Kk?>nDd=5o^Z7JJmL)+fTPLyNq0(g&R`X!Odmn{QQYp5v4v{b0oB%v&7^;3Hm7F_bJ(NUuF!1(+)oik?9IM1YZG;yO3Y_C(kMzf!R%+<-Jyy*hL!#KarjIGk9@!Y9Tu2p`RE|K zh=zT4Ue|cDoKu~eOS>&Y+KtieY!ngJN!pdw^PNF{@f^)=!5co}Ycy|x|W<19AZa|>|sZp!HE+p2Q) zCvQND=aW zIr;9wp&nWKy74QsvX`Cysq0pz4Z4ysxxwz><5+1}S6@Gc^K5EywSz+Y;&l@^hFz&o};{dJF zryE~XLp3ccfsLD~x#c-zZ+03J*);qd3fpz<*AlIV1gH2=>8_R34?OF~OZq`1&@~f; zV;lVoVL;Q+FkY<8EgegXj{hq^MD~X3@LF@~eATzCWIlH#PSO6;`Uwu|qN>B{ z-QIm#AMwIQ45tS$b8T8N6LLWNlG}saIV8-PmZp-19(8EvC#Z89&Bq&_N*>kQ8}R*# zsg24}-zsKhiC81Y;1gT0KoKl&OYwMrcLy%us(HfQ?d&dJHEiyyAMwn*gL1lni7}YY zt>vEZu51Z+1#5R?tDu({cnTtNmo;{FXLt06%MRuDlGbP6)V+r>H=O1Tr z8s16$c3az**=csr2w}8?A1Li^3}XC0yo~l59(NhyyzsT>78<#aa@$-yDX#Atc#8qb zj9EeG^Lu%a8c(%JUh;Nu)4&m`C8A*kG0=JZiWq)=lhu*hDBJ8?_Mgld*Zkbr!*?o## zHzIJMjI7E{M&x3oGjMQS*?}=1Z%^ng$Rw}yF9`3(q`Xlg{&QpA1|fdvALkiEkJe!I zjUA4EF}lrhNNId3fR(mZw5a!?ktft`)tj$5k}OaSrD2~J1zCX_ggt1cOEYA6x#kQH znD6bhL=V`GFRFos$FK*VTMrPY;rn4W{bUeo8P56TJ@Tt>yTCOlW&(+X2In^D z;Vx&pg0=iC<@X)tWtN334j~0lahMe#1C7d@;xDRc%Wf58S z-k9|kESwUjY8dO*2xFI+@695#kwLHr5(8}V`5=^T4qNvs0w__cuYZL{h z(>L@rIP7KMWg4Eq1vwlb>~X0*KsjKh9r4NqT%_5^P%jx)6hQ@$YX@$|k=(L@OAV$R z_UyDD)MO}+{Qc9Nruhe+LVSWp;A^$S9xrjk&sg&Pz4Ye47u=Y0WeX**jz69S>a4c6 z#C*^^;w|ZJS(Sia=at=<^AW@c6X-8fc|%wktW9Px4l6BOMuB6&s_MI|YgA%69D0$w zX%Tq%p0OJx029TK;9tGI#aZ<%$3vy)+Wh+wrh;yQAT|Xx%p|#fPI}DkKIIXpPsZx@ z(yB_WuxJ&C85KKePb+@1*>_HcWV)Yf>dg;lI-|r;jU1s zNJ>@@Yik4SulQ~gPCa9H9Sc+#yQz5rZSB>7pD{JWYQ7Ut7EHZWwjCs32j%F3qq!;H zPYrCRau;$K9$|CR{%0dJ5Dd!#82*$G4|Kq};JU;a1|bGay#Y#}_niz^c`jRmt{wxf z`213GD&YqdKN9q`kwhMf8ypr=>w&HxTeG(x->d~316K?!Y93-Gnylq{`BahM@_d&Kzn&kg&mj4GM3F_(p?!!Y2 zN|1tg^e2!FQ=Ij!dSSDyYkmgNY!-AN} zoG{nHiI;^f|J8b8G5cw7?+S;F@&ItjO`-jwizG6AuU;X-+jyjT1lU)VoR!i;KnuPY zzyvl$Vv#s|ThHCj(6SvV3Is=vvVOqBZR0_xm5Lb*SvGx`50UE_(ym8SMrcO@Yf#jM&2FbZsA@he1P9iM-;TR{Xy<$bNT~m83f-KQcAg;ijf~N;Z&KsyiZQX$yrmU()nkd zfWSu0e>DF6zZ(B6OP{&*U6`}X+4h}KqQ#Tr(~Ggt3;08W1jn_lM0$A4WjZXxcAi|4 zf=&CG@hBKksAliq@=QaV;Ipv}mAt(ZKjBf?(m1WEV^kXybmt5MDpwZ9mK+_`myX_v z00Z-Urqjq|PW%tD3%ZEW9?$PQHH|Utu@7fyDDklcko~^tcglqg4USO)} zuoWf72-U}7BT{MbW)(uKTuWOE;KXxEH5Dc&c*35RlZc0x4dYW5V>&>TvtW2kAvEZ)RP0PPB~TN8?Y3@VdBjOu502Z-Xo8n z6XcQfjc}yi&E3-?hBzi!kdu7I(*^+)viFr~InYSi-vE62yooB`hX$j7yHdsnA@lTT z5>G8yh>zCbAt0}R9*ua#)vbBMj@RjByqfqT5H{u3hb!)I3T5X;B4%1vqaTRyWoESx zN<+hy34_JqYV%#wQ7=-ckbe-qz!kgng^{cwT^hdN*O27C+) z02KkbP%IRnT8B8vi%LVaY3)(pqXK4eW)qaRADAKoec^=+N6Lf9KqP%QpM;E(!;!|M z8a^PQ4}h4SG-qZM+oeCijVAzZ0M8?VZ{ARdy>GZEULQv@36Dc~AT)di zV+u3q55u-hvOg-7%(U*EAc`xLXM6WSP4<%Ni1fJ5Pzo~o?$I-Cf>-s6&$!OoT3eJw zB#m%Ik}EMf*YE2tQ^BS)E0cJK?T_X-ivU<0EF-TuxCA2pM+vY(BM0pY6usie@$O6h z(>kR2Wsa2bW-IaRL(;o3J!^!t^uC4)WMiPip4x)F*yL(jkfk|StiJjW7US;?Rmpm{ z%%ikj$z1`xiodWJLl$(}TG*~WwRs`2gog6?gKUffiEf&;@^;Q&+tQQ2gMw?Ny=fif zIvso-iWK)sjrOGnHW`B1>wut1h-H$NWFT70xZ%_#QRnEcEbH*?sAom6Xs!57c|0@Y zO*yv|j!YT(L!HSzzifd${aSoFP;4O7V)@IHinfki->`mtvZf1`~SwuM@MhK1* zj#Z<$Y+7ZVS`P9Dgfgl;ty5mqGL+tWnAl1#-Y#vpO-$j6A9s}Wcxrao58(=_i61Nd z;dn}?V8l6((X6VGvO%?;e5vIwZ_#BBuh9Gwy-(5<=K^t#73U8V>mRB`qS@YVLS9= zHvlECl0zjvFr4bLDt%(CU!;kll%Q)eKKx7U99<@LzQbVeON z({EwxW0aVkc?P1+ou$B7)Tw=BWvap3S~wd4WJSw%y_s?w5exc_Jw?f6 z@L`E94GTn_O6tZsdE*$;#nc3)pfBEJQEQQuhP5Fr zZ=mCEiq)R2?VCbm;MGtLbrxG=hk7mJ?epXe$5Bp?+%wTimmMY(7C$LJU?cZY<=D?z zWD8=^sQT>~-Hpibc%~8)J~k6Cv!MmK9%=f9$YvFXh&bJCHjiQDtZuHH1<4D;7NwJ?U=EsYSir#Ar?(XP?2p3JFomLl>?^4@}< z+FQ)g;xFf;<+iV*5LZ9lpsN@-B_n`6>Y0G^N4)_sFRu0(DG8QTk9_Hu(Z3$G4cx&k zfj^Xkk#bVvnB3!Cwl4qa`v2Y$c4E>iJoW?Bapw$BcB!aKK6X|wHNHXpunG8GQK@|r zGx54p_J`gSo#69u)UC_e09TX@O$88FN5o?$3OE!}9t%GF2ksM`ZnTfv#jp&CO7fO( zON|y*UUctX))~VX--i@2XR~?clrgj2N~;YRWHOZ{$Cced3vRn0rRa;&8rKN+ zI)Z~IAl?*WWLRCkaJuByb;G&6zfg|?;bNr|V0+0tEn7Vs*{EoeeavBMN^iXUyJuxf z`t|$DdYThei6bU93oCg#E#%%0mhL6ASBIFRr0G#NxolN-kS^t9wiCB#MTu15jyFm% zmaauMu-?w9kr^-W&sgtAwUHN03Mjlr3bVe?x{w9^#{*?RDHsnJ_USaOT~sV0KQ%iv zWxWRTkyY9DrnR?cz^2FEm?lzU&f00+)u_njMaN2gL=cZ5^7mLf#F8>Bf~(-i~6 zD@sDF+19_Hua2&;cmox>k@)-i zys#hXL@9>31p=GB%=XT`cQ~Bfes*WOFk*#s`nIB=uc+F@O^u9{pS-*HT5G0xPhSg{ zP$4!jYS&M8N_jl*tIQw^AfddXmn8yLToxdn@}t)#Bdcdwrlp3eK$^;*hR+->y$!6W zaDO2uU*|Jzrw2Ypen8I(D$TSNIzO+uXE|exf6?s7XwW-Ve0aj8Qe%GMRS>S%VvXVm zmRz ztdciY0z>R=p_in?h7rZLp$I!L2gHoJ+$+(*OF@1ypuI;s!*AI(2*3Z=T4!{rY?+e0 z&<>?Srvu^>@;L-VAtzpSM4e-fS6rCyy=Q5}`l9PM4v=X3UDTJ|-^k)y{;%UX(r0|&+Q?#|N&2mz9@!()S`j&RVJh=$m zY$Q8wamVv!;tgt1#Q$bN z%pQiv)1!(2;LCfRhLt$4Hh$;2?=xN)!sVflPfe2^2o*Xe6ZfIqG{qljU}~=GlpK^a zzaJhZy$w}zSXM`6KBbaUy`&CWx0gOUC7O?Xk&UT@byQYEd}Eo0fg(IV(A9X?KR+!k z_lEf`fgf0I428wIZ@orx&rg{G1ga|dZx`$=NUCT4`F&M>{b_R+18*!#M$LvoUbdRQ z%?#obJM8M|<)T>i2kb2XC2f~hjw$5#km;~Mpl0E;FKBt|ZvLYufVG%_;pqqt;%gW6 z0%X~Cbpts!Y%}*a=j5zUbK1Q<=OMC(R=JS;?gCT68qaE za*_G!&`NFux%g?1L}5RS5eyBOP39K9C9hX3q}Vfj{ax_GnG-Sp>&N?m5W4y+v=j+O z8|5=i07L_zLL3^^$zZ~qcc396pIPOOt4siI>{N0H=m>VNtRTQigS)2ZdWyA*aq-CO z!=EBO_aa@B1_0EmrfLp5iPQemzK_|8ovm_AM?ds{&Q#=bR%veypI~FP#SEWF+6Yjv zzh8p4XN~6(yiU^%=ipJS2c$3S<39I5`xHVr6_(Q$p|0Q(rCw!m>?Z3HlJVn0Sj<8| z18F8!muYvTO8MusYENo5F;dWGb<*~ybWo<*w`2A?xiLE-D)nw{`B*{AXCw4S8d(LM zHJ)D{ZD7K<$on}f17o(kdv5UH_ZQ(k$R>#M;n8e1Q;zOR4^nmajG*12Wxn@g8yX2~ zg4rN*A$T)KNe^@ZGw30k4>)j`<-)jFp!0s3QiHIQt8u6}s75Oi_t+{_MwgxJkqsRi zH{biEcl31Z#!TS))rPWkz*88GLKm>&@)^v0h)F)qnI#Lyc22f=2>}Ci3sHl)mmaKgf}i4(3C)MGn945k6}5 zLEPC<`W~A()Ys2Jchb%y*>a-d62YazHHucUIT&E2PLi#k)7eR|oduglyNH7iR}7PFh2;;GfID4zcXOI2-jgGvm z>PzpXDv}g=S%=c9SQ39t28fAUQ3`!oLk@1Td3){I%TZXD`r4EEj~t zB!<=yZ>Y}gY*61J>wVaAGIRtO-)h;eZ5qlqJ5R%)*I=DsLfE*o&q;g9|FktsV98er zn2trGYVXI#zBqsyyk_aZ6&8^+Wv$>EeW9|CU=`?tCu}y)=awtC?2+JRwtfDkq;Dwa zr?2aSK(cQOeyt)nb$O;c+%_~FZhcN)=^7Uh59qM_-e{0+#Hd0ZkdN?E(V&CUo0+?# zvBfJo9oy7HWxixhi52Bf77t-@KG{V&)FL1QM_^cQWI)K_<5QkRZ(Cor2H|2x-tQ6@ zDXffC=I&W4qkdG(X$mPkIMS#cg?5~fjSgJcw>1tDi+f1SG;#?%#G%=b?(){zS9^fBw1%$Yyx3- zk52LS`!Do~ZkUJ>rjWsgH!aJc*oCbUeUn#JW{~(T4FVhbu=gsv2Z>+L#QSCgrPer2 z4bNuG?|aZ`654oC<(tzUpL2}fNq@O_P6ysm@NCWho<^y)6FQ9$gYk_@r7LY23xVo% zSYe_#gXlo&@=Ds1T8^Qs?latqv}fStne%1}Hu}!$D!BVu6$Sg;Lyymea zks&ED6HYm1rJkfkY?$-eQn~d!;wC@T9H=Uozd3KJZXJp&R7NMHmvHSy}%IxRe93zF! z$Cp{vtf1J=Q*pgbI5}J#UbO#>ZZmz9o01I`qbr&=^w>ID1t2vStJMN>z5UNy}Ku3MDfTRekZVs)c!JB1Rq>j5Cg_(c+Vy@TCZ7JDq< zDXHZ1l&(=w)wWv^ANEqZ$DJRgSJ~0G=$w9S6%l^hx>k+c9FVkU7V=j8uMq z24NAa+G?mWr0hx{5?KO^7wv;&;6%F^&_a|J5OZPw9E4Lu1cFu!CxP5o4Vf_s5j2v( z?Y%w#IPLCgW@QxG4&k7aNJy$p3<-&9mv{@4hz=DXVFJk@94aP85~BN>zPmM*8OT?K zLO;X^vtRH~ z&^oMW^?16gl`oJv&TA9K6Vl*|XAb1=q&+8mkg+}pQLfF;(J=+Rg9}VPwe5M30x~U9 zC2Yq?A041!mxZ-pqcyMt!}7Jqqwfg(8LnUdMF-MHqGzFS$jM!WOc;|P$z!^ig53VI zErTGCaCL5!>|}vtP%$7stCs^viIeUaX?P-qm$7O}F#k=*g!~y+I92T$rl^fb6p~r( z54d0^nI@pSz=N!YfsCO8AkS-#2=|NyNRJj4J^j{2FsVzPJuKTZ2mDIMh}*~AR)0@v zD!6>Ft+Y?$?LAG+$A>XZzyre<15D3BnE`SjE9e|<8InTr4h|dou;D#69)$_fSqrFcQD8?!P4VTzFjCunz^o12Oj`)$qyYj0;E zpDyZkxiVB{2W@rabRLLhj+ONxvv}$=P$RG+d(vj@!cxlPKO4;>g0P0}usHd_Y=eEi z^xsfF3(O3>U3_zqSSGG}%!e!uLWKmSx~|`u^dSDYC(Z&}r3W(N!WI*F*2a`SbdZ6& z!?7_BDKKmxP;Q3#1SKZ#znKE0coirvLXmH}x>zeOb_&wAC#ll~t!j~UB4I=mlyCP+ zdk)^d_WiwG;lNbJ_(tSj;H)~0%!}OTuG#9WdiX?S(P0J4J%PJ2iB1Su{vJt3c)b0B z=7cHGS!~Ov0IIX^woE(PlxC9XnC7uuuUGM9v1oe>P(TyR!H1x6J!?CS9^1K2&x)DE z$q6ZvUH%}DXXbE-isAZ$EeIBlgFpthFc_W@vJUf~f8bGNOaZlG29E9)F7lL3FPc*D zF=}p5Z3!sAPh=}BHBt+98U@FS0~@7ULz$~xhnf4FdV!8WEzk7TjOQnAqI_9b+9&Y# z%6FMIXA_D(cg0J%4+6&cUpS&wfBG`GX?Hdp&R^W*Hqn6x$ zE_Vf#MQx#ld$ZSR7Betrx%B;NV2?}EV99ceoqTET=<~W})}@jWL-KOR=!BBlJ~@VT zvG*3`_gn0csz_Wn+vwVOu3m{L!H(q73mNZq6r~5Az{i#dTSCSu%u^%tFTCwypl{B- zP}wyNb#rpLG?H5Ezf3ZjL;0kw%u`VgXcWf9g$K!}9h=#wt6b|NS9r!^j}!YD@s zM5P^GBK$k=8EK#_Fprp>{8r#7_v>SyJke=83IA4_P7q301U>C)P|6t!@ z7NdIVQnoALHd6F`5okK|PZ3Y=4gSL5H9}*(Cv~Rua(eK_Y5q|ryU`aX#s_7AUCI}; zay(#l5pLc*OmWS>eTs{0R*Nv(7j@-=dW^5X@DV$y0exes{8VlKib9(=JgWl?k@J!M zq30q3A-t-HG2gr!xayp8wdTM1r4b0fbkz$X+_AR>Aqftb9b|UC1fBqY=Y6X_nbWTY zo3uPFaL4?`E?(Nb+?D>3{F`2yOGc}kxkZ~2K5oLu)y9mnPZ1b-9NY{a=Ey_M6O$8l zkV`X=Pcop!8cV2O8`mM>`F3uoHBq+@yHHNUlxKATI@Xb(EleNJ1hnKpS2rWtsRmPK z^Ph8jyU)w3+wpinD=R@d`CQBncCqhW*q z3r~Wpd1-Z^SwNEY*6hBpP135;%(aPjiQKF+@>D@}8=9{HTTwco zdixL7YGdTW{&^TW4@+m!86rQ14hx(_X`#<9L&sI(PTZ^-3Pnq4PMo^R7I*BYA#0Es zbk=oqP$lXbFmu~K_bul=AKH7ucYbo%N6*yXU8vS%E?_RjUIvlv-QZDP{DZx!GyM?W zmqb52Fd$)xxpO)V)2rG4jqwgfZw7v3R@2r3e~E}4-Ly`O^jMRcSq18U#``#0v#I(rv)lpKBiz+R`A$>k3e^*_GM@7w8WU*+u1j(s`X zVDSM-ek%&Zu#?gQPh~tEgcR4C0e&3zLEGEIC4p|=#Kw&6j#I4jq|UUScn_Wvt#*Dj z5+c3IDHh@CM>?PXo93!9w**YS!vjwtVG$mgwn%5;M&QOmAgR9wQ7`D4wT1@`=@FN8 zzDK1>EUb^=KQ?a@L|)=6$KL0ZO_fd-??F^HwO8zNBK}@CIOZ);HD^s~2%w&PqI;JNCs17{VwLkMLA;OKw|%8O94~t1 zQ~k_Gz9g7x<|~tiiF8<_L;bQ3Y(M~$-V6@WL0jN?9S?G8wRJ#-!#~WApl8n7 ztUW!E=k3#OvK2+WcwXwZYOmQ<)%|5qxg0?1s#hPQ()hI|xBxMJ#rl=GW_ZfzO@EXL zfC-y7S{M=My6||wNe!mAfXl|@7z5B~x&^x!foLf{baVr`FPH%AUSPDx2Psq{hYI^y zgld@gHtOik=;#Ee_dDv`H%0^31(uf6w_pVe@clj$W;v0A8Q!Nt+DA$YYB#aC7TnRo zetJ$j^>P^VafR$Gp>qe?^p%QrNSo)Nu0@=;1=7JQ2IPmq-pvJ~Ax=DkALoonr}Zo3 zPB&J2IS3DdL4;M2KZLwL+2{1KrtRRv_}DpL@`}kTTIJccvD#nj;yC^0Lt;au3B%jm zW=)=gD!?Ui`#zU<3K?i|7}TG4Fp3uRGXGp_iHNA@(eVg5r|q!3&T5Uz=W`6KVBf?u zzl`K^k}#gDNQL%u&N%|g(xxfH2+0#HOl!cD7nK`Gb=lkkFGh~+lY3^situ(**mTO0 z+98DabV=V>O98-t@KZtOB3Acy49qb^e(g5k&15e`t31X05)q_0!mY)92vXPsXgkeW zafDa72wj6+Fwr+A=4*ungQ3A=2)0cpgTJ%9xnHku98L?uD<9Cf>Qg zfc3G-@YSRgC*ztDJEwTMz2I3_bRMg|%($XlsOY=+jNaFvq)=1-u!=xlesa8BYEY-KpCOv@6* zqiuY*wr>?tPi5HGO1y$yO=PVrqbJ9th;q?fH)i{Z(zO)?J@X*7G$hB^kM!Wcq4B?= z1xwK?htP(gH)Q|>7EhrKpfVJeXCxRNF7^Uio-+IfM$CB@S&f$kzNnTh*Iy0^;yy-o z)+Bz7o)-v9WoLK^8a0_NL~o-!Jp$g5`PEtnYfY*H=5Y4P`&w~opdQ3o^g`Xm5%r`% zgyo62<0q!prumd)th1XExbN}FX^a)^=dP|yL3=r?717peU6p(6pOC48ux(&}{q$yL zLtmuqdePvAjlgU8o}XrefkTA|ZT~VA@tp&awphhdqa$8~#ymDeupmX<#&f(HR2d5Q zzOm{Vwd9RO$~2)5oR`rWiq#pe<(dK+gRHlebXYFCpu#}`F z$n3xX(>O_DU6eceG(gcI_mZhyDlF5?$0KHqKigL_56W6g;xCH9XvhzguTZL`#yvG~ z2Z$^38iTpgUG~r7^xwux_7!f_1g%^K>gv^U_nkko+|_N@}w%?1=g9{LtH(yp2GFw@q6 zh~01%#+$Z&XK;OkC`W-*PKuS#`7HPwxzy()+{$T}%cH1cmsF-vFO&+*-i$UR2QY2s z0MXFM9UcH$^8X5a|7Y^DgRp(Tv8e_x$PiK370YW{@UO~XeLb{CB;EpyG)agWo2zW# zuU%n?XHS<4@Y-&n>+8T7&WeLW8IDah#3mNMhER%k>`+HE!vN11 zgF4pU(E`3y)q$^c0|#i&oF%|&aN_?PG5SL;Ea3C#mCt=7+*r*# z=nO=2|A898_aY48k~QQU?YuvYYm-Lv3e&7X)%GV~#D2pKdNCwO=nT(|S#T>9hm$CO za$*~b<_*8NiD?{2df4CKgK| z2_)3mf^&-oLOZTTc(j9H%_C&l{M;DA%96dH16Ov>gp=NJlbc%o4{!Hd<1s`?5ZgBt z56myu57@78!6=Ue^l^Ze_J@N?0pHt?l#_$Vx#<9U*qQ=Div!43&V5((Dwx=m4sS6V zTO4gpG6gyBF@Kr)y!i~WJ!z_>h_CVQ)M3S|v`i7X~VkLT+Fv z#V4b%(d_ z=({NaziFg{Q2(NwedU*1qJp!CADCn$)+tcji@|U(NpfAZN8lzxZTBRu^bM~^96b3N z(Zq2oQmw;({99c-L`Kxb+w@ri2^i!!FtsOP@9knc01`r{d3KBYr$Sw4f!sDRp5FmP z+*x)*aHs!2s*C$xgmCxdHELc-(1HVBlQR1_$L|%@kvRo%w5f*T^VymqGflSGU)j@s zqcYu{h}NbW6u{%kh}lpja800gR;B_L!2*?-uc4yKU0zCPS|gmPBcx z_qf#Xvi3eZPm+BR*L?BWYqcir0dslwq}`neDfq#-u5jlRx0)p%SssO@rf8{^{ z?wRkybGd6CJPdSjZ+Hg~E=%Lj)}-}k%MwK714&* zC~b{{8myae8aKdc9skf51+`N!-3Wcr!g3f1T<*3a;{*{Owrk**kV(~7VcA)df~j#5 zhZ94Wp3~|=e7g#ITzbkH2r)2c)N#2qmW4H$XI&N zVr$jYgXmq=&~DEG1$3|IOjky4j!B_?ndS;Nfy4YkM|-um7kB~jFPMQtAux9*fzDnH zp)H(AiR>Saa6bu6=3iLWzS!jes!<0^jkIMy+jcei#dmu+D4Z*M@313o0*(hQtMi}) zIpu?`9>~cxVH9~banSw!4uM4~;!Aftm9|!q&G=ET2g^n9jR2WNbE&6`iblelsTw7{ zWupfVIc9TpqKUArumVEmX+g9|em{1Y=o1YBi(+h88N1hUwvOSQZI@#BkD3NT*#b1_ zlhQBOm26fcT2Q`^SK2cG=VVz=Oc-MRIMU;~DP~6Rb*iUjKt1sPTh46wFFCW7z!|;7 z%>7YmNMh>svs!KJCQS#ZQwD}i< zFvVsr?Mi&L7h@tzDx4CowI@|pe?B3qWVgy<&lhdNDCzbj=AlzB@!o)ASasfylQGwg zY=5GS`P>}DNB1IOtS(wc9B3)p-UwW$yCoBG39EBYVY}4CMqI2OmPU#_M65dHGg{>q zp5{L29BYX_YA4{S6H=ANluEVm)`&M)=FvQ5Fl=VV`pm-|{;$ZkZeU2MlT?x6!;`0|WFk0CTlIJbERM z)U3KCo^x7Y67bJDcY|$s)hSFB{zX?Qa6_kHW8Xw!uZ;_BFSSg;$+juGuR)6IsRG2gJH)w zs@*dBk0SiRCA$USKrQ=CoErGJJD~?o!`#zAf#j1!zFj|j3zob-Uu3^9Z++lo{>u(y zh*lI*3}A6en=`j*1+WLQFds`Ben1rZ|9siuu;wg$PkNTc{oGUL8?F}hK%)LAcX=MP zgY&Y;ckOp_b7=npnFrycY{#BImmk~+z|ShmHzA`@@X~sDF|xBoWMOr!+`CJD8$|CgZIU-K39)mO0XuWRZHZQQ1`oBQ8`3Pcj6ij8iLu2YW4!WjSK&L z+0rN1um!A9PS#PAU9k8-OaCusTi9yS+N4$8oOw?VT+*g=`n?$aSCOH=@hd41P%m;K zlM+(xffpCEcn5z58}cO5PJU&^q>LifSZ=8pKZIbu|B2uft0Wz>X=xg>&Y?g2W5^q{{@lu}v^gnGfXEx7GPVZ@tk| zW^`EjFVboRS;2+>ZvWfObwk>!XD$gOwskCn&zCUNZ85zy@Qb@=f`;}4E-L&iOrv|% z{f>dBSNC>@eKg{5IP8P8V_DmYZ~{HdA&jMjUp{SGDmS0Lkilke82j|`=pSnAt|El+ zcD~%37lDlc5T#?HWq{{(oo3{9CyW(DIloq4H2-$HZ5e&@#>{Lw%=8AM?>f-M7k_yE zjNbz)7g40Hx*W};rTV%<2Eb|n*7zdo`byLYJkU9(Zvurn4j|tcJ~Ig?^#_wOkb&}> zmf3aZRnViT2fH_g+xgJV?e?|*Pxuy;R%xF;fl&{zjz~va`IKWo1eru{yeG-E!2k&)2xp8^V z<_{~hmjP%=%Fg$1Mj9c+oE#rc?bWUU%l#&YmD$#-;t)g>nRfDsl<34l#RB2-7VKDB zOVlp_(2VgHMw8&)ajkCG*cjnB%q54VnU4(r6{2flq77={-r~a=KdO?W8mE9WGimYv zvG()FKr{LO^m+3s69$ z5$QbhMxVX+`;Pa^`Sc&}|D5&V8Do#<*}Cp~{bJ5*ULgR6O*eAn{Bt+M5nm8?&~i!4 zuYpB(d%5%CrV~_XlXDXnZ8}quaTOQsEm>(0HNh>Q_D=b)!4Vim)yC}2SH^xv=UMIz zu3QhvJW#*6xKwwg*+R54C-Wa_nRypXf^YsgZ3;oMrhPPGgh?^p*hOiq;}6n62mIb6 zfu=~FY8&2}4JgT)1}-4i#e`NMEBl){uf;Wlc~wq*4}Ooz?@;-Nio03uY-FqmZb&{Z* z4!`94lfR3FTm44DXVX8AMz#|_^n)>kh9{pjyt4(0)aasTM=^%063q*)HG;pI4OPQ^ zkXbWA6ss0#GX5rU-a92=f9n%cST*gOA3OHTtFu-@uhR1z`b&~9Z?z4Tx=yg~*%6*rcP})v4 zNc}m`=$&tB^1uA2N)ejPPP;`IEL-a803H#8*bF++CkoCkwc)KIP5Ov?3ltMCM*Icw zK0}aRPybk$bc~NXfbM_)b`NOCB63L|i>88|oBfucH#s^8@Qk9oiN_D_g4@vGLPUA< zv!kqZlG&K!&#Jc)9ZHl8h9hj1DL9R9Zof4sGpj`nM}5p^A+vPb*#H-!*7@?Zc)9~CeqcG`c>b7y{k?akV;=JaqmJB3^JuY)MsfiVK&F+TY zW@;+E2Nn@SqbOA_WaMh?<7n*Orx)(b>Y^j;c^17pc}3E8*GTM=E3lPGPDxL^O<)~m zx_xn``qgkC(?_qbb`DX-pg#h@3;}F3dAZAGAx)CHl;mUBaqd@Ur@OrXTW7YpOlhfg zPwuVPf8iOOpMvgaai>o1?b!t?mA(ZkbM4cWl#KeSrCVSgz~5B#vm$prFCM@!#I=e0 z_+1(#RU#A;8Zf^ObV_U9F&z#27yW6|SHAj_@Tj_`;83S_&@F`WFd^P19-$p~kA9*n z=EbP6O!(bK_0D+dJ(|Oq`y)rZ|Cm1i|E_WW8=dir)o)d~Sb;Zs&3D++oQT~7*gBQ7 zLi?Kd9R^8P5sdT>_^MImTt+-DxB-_mZ#xviqdOXJ%>sn0=1&60sTYXVRXkx~ULLjt z^STTNBsTIB%%Ov?0l4iZv%R~8I)|1DICLz5sahYRjc?-w-~_A5{NxB*UlW3Sn5|#o zlt*rbI}pn83GNL8BoRLG9U_yLygMzn+IWn@IC7U}1QfSa3d7GA!5UA!yalnvYh6FQ z1lN%)87#F#K;19_&73-!A80V%l_4XzPeCWnQO%5jZ%QcQB6Jgy;NITK zGvTvVG6ezp9iSB0=It32+{$?0|KW}kG;=L}!l2Wt)tUaHqf7o9)eeB;{%Q(;bJ@Fh9@GL<9Oh85wa_6_dMU@JwHIBP%eaVW-86GP zf4M!oy0^4WgXqr>znOwyz2HNSz2MH&z=y3zBW{8j4pq2_GMRDu(0X=S1kVq7YJ~n} zx$~*P)cu4IM0Ipb)~P0ol=WIzUw7Z$_w*qFi9Fe>e`Na7)&7ms8V%Ag4*TQ6x6lm- zgg(;UwkX^m_5H0z{4Rok#{6G^+v*&=45uV|&XfJb$u)l-6V&riGQc-GN`kz$veQEA zz^Z|X9^N%G@R|7zXxLS7=rgm#kI+#UmTUBw0djy+`3#_8InMoW0~_V=^iuH;-hQ95Na-0%hC`7;l+jZJ*kFoZyLN1dxOAoa`bVb<*jq@PYi3e z>!*8Hlf~4@#AOdH{1{}q)D}S>cnvWdY2tggV0u>)z`0K_Qmbh?E3T$bAxXy_sC7D6 z1g16R>xdhzlUORms7&606y8s8CWpdQCZl&_9I%~j-&EJ7&q%81{N|8j;>8LkI_j6a zHXYNS5BC$)MhmQupRPNMhTOc>K6!S@-Yyv`rHbASXGD}=zmH&U<=+l5HxERc9T8fK zcpg?l5C0TcTYCZXINQqedMVS+d8saR!E{f*y{4oiY^mm*amST$rG{mhs4R1!CD{B4{Q9`H5x9w5aVHvXR`iTCE`UE#aqNeHKR@rantom8 zWMrQnBcT;ZhsBa~_Tmc~A+!`RjnLPGw;$hWfS}NsQ`6;r>vKLT9?H2JoUc%mcdqsL zCe$$*a#qjtATb9T_hVxdP}C@5m3j)SYP~{2?ts%)%f>wac;wSo2r?*}NNes+Q#dot za_)Q;-t2w{^r60ge+DyyC)F?lPY#IT@q@{E(RZtrVdyI`4o_zVe_4_&lAZ3N)=dVCcBdn*6(bkyu6|z6J&E-N^x> z0sA%JXrkTfdDEQ|IHI>}&pMhZxH{)ckJ&%Kq(VN20>W+`+RM?)drl?b@S;bmxtxr2 z(w&#nJ)yX@KeVPs3=Gt{u=bB)?OC zIC&G6`5n~(ERJ<=U#dZC;V6kxjGCl=MY^H?M;>xJ9LC+xxyc^6XMzDI{CkbJiIwl%t#}$BR5euhY8>K&ZLCkjQ1Wj~>C`1}9Oi%49?&qKG zwf1eXVU-@1T?u3goW*rWD03L>b~UKGew0LqqTVg^OYbF<(6kHads}plgfuIYT^ds+RLjmM zg&dN1GL=W*+?knkQuNf4OpRZ#5lvo!fL1a7%R#!aZaa)PqZp;4<2aj);d`+_AW1?N zM`ml*>Sot5LsY03f2c)+`P@xMoP9}cYTF!z^q1q){l|;labeyjEMX;URD~_)R#Xr6 zVHyM0fSZOd1srEjZ_|4;n5T_2k_b7B*nGe&%1>>82*!>Ytti-oAWB2-QzqBXd136f z-|MM^)T3Rn+GDC)e2-i2q$*h8j6@gLi9P!A;|^m>p_^W(djsQAzqKn(ckMap%wEoGacoPN7=6I=Y>uBLUV2> z$szc}!HPHZX^qBRsvap+c6TK^JG%?!ixU17+uzTke|n!fCLa3qD&pJH2YDz- z@5!ykS#xeE3u?iyNbP(PPl5Ea!|xH#ypM1T`*jF21eg&r_(ET7!f_+69?xr*qn5!^ zobqPxs;=wu_zn}hSoQ43LY40YSELZkyy#F5DiUwP;SvVjg zzisX8^ki>$NxF9H-Su^cC!m4teLGZ#wREMAB)Xbu$^;f<=vf}^ex93!yVj}}Un+4~ z4yJ->#_=c89BR84s#onIrEld$|1O67_94HE+;?tFLiZH)58R=a?K$zJ% zCnJ*x+svi2oHJ%_NA=?0GlLA;sF*3Zie1 z=fK-E9j$ok`@6JNXuVoCsDJdTQ`~g0QIvFUaiTgD>%~V&dern=6`fmqyfNMici4(X>oI z2%}o^P*Y9ul8X@E;>F-8xdNc$*D+ipSg9ugNpsmadf^K_&el63>V*)1{H$-imL+jV z3c`T>_B_%zV%hS!|MT@k&gG`M8qa2Au7qhfFdmo{J`%}Hd9ZTQ<|bZ9yUQ7-@nWyk z6B8KfxH0oGP&Vbpix-4wW&dva zzQD#GRZCXvHI}fa`U{yfXw*2N;-cVCJ}_O= z?(@)Ss>e~_0Zfj~sw0BzoFREyr2qONf5Iq{dXms<6Akt))Wff>l}G#+bp(nMwF;0; zXR7!$clZY|AMA}4te+~?)&2Z%-1(=W-Qf(tQM z66(0CqHJcL+Iw$jobrW5Gx;4UYtVVVEE~l+t$d`(Zu}7z$d(9pE^1koxNS%9vWdMp z-Ph4fFzwdi7KnbOu<`QU>e*=SORBXDZ-uEUq zpH_Or#=*=pZ5=7b9PmkW9^T?4=nhx!zJ*Jghx@jNxoTy}vw zJ4;r(NvuRPnFdsVN>_h9N@6rc=g~m6>esaHE@+1w{<_tHY3wsO<}a0JfP%qOcxCC~ zD2R6qalQ{v3QZoRu*{H>H|daTFwYh8_A(n;C0T^b$P+@j&JE@}BhP#q7~LK|&?jja z%+jD=cvrlVYub0fHFec;osDb4sdo|zgj$Gl8L%LpFpZh<8-H>oE@!xwu@&!gv3cXWImfX&@pplZ`c)y6=z+@4fx1QcUw^OR z%8aKi4}a-JvoTtIywf8$@sy(wo#`Ci^zdqCx=?nYEa#@Q{z*%zRJb?2yu2t4L?Ej| zwm~Z#pJaI2-~G6d8}8TC5DWe_mSWL+I4Y1<$?8i9uM zZVB1+bf92a@aA!J)C@l|jBU^ExB9?3tlE52Wkpc+%&=Q1Ux(Th-n3ssD7BIi+U+iv2McQIrH6lWX_|sar&&jzU{cXz&!)pbAReL1Iqp0|Ht-MBRQy@{GryUez}>UCfUW z69}m(d9!1Z*ff^?1ddoASc}DYZ zFTbLZ5~kO{sPoh(f%!^UAk)vk2lQJ%T=@3V83LL<&hhKv4G>R!OWPV}vjjeW7II@A za25$|CsYrWtKyU3cJ@l{oiM&!uyrPLJp(I=9~D_2^|-*jIhUT^IX*C=@EV7;=DGjc#<7Dlen3jkeLS* zp8{nuIWzq+8~Z&OOPHJ;OVmPlcXv={Ym7Z^jFp`oB8knB)m+4h7gA`1hKl{{{tnb0 zYBv=|&5E{{%IvWM5mV9)<{P7=WpL)W_pbjv9T{{IXZxwI-1OtykTnHqB zJlcn|aXfNN5&8n1{;2o+F;kFRlKCIse-}AC=8uwWeKU1!=O0@8{ER+zWeXH`LmQ%& zaL<`jIoyTB1Y2xeFc!cY7dmuvdl4`;+2&e^xxIoGa#eA+GOA5^dd>%AIum?^PK@as zy7^q;%M0jqQR_rl?I(mRn^-G2D^^Y_yD&HL+4%KM!DQ_O^Eg_R=#2|<(cic>UhGF( z=9h0iV$V~1hDOrgxH^R(OyL>b8ZG;aI{U;wOP<|`3*)(zQc}xlf~hP_n-jmhlR~o} zq}9o7Qf--QcCLr70a3=^MK1b3HBZ>W94hv(Gw8?r{Qe9w(+MP zbG{`J8NZG@J;_$^h0N*F60w2)Dl!a9BBVi0am3N#svo5ST-O?Nw?h8G>B8)t`LC~K z%XXLq!y$|B5gqykW<~8KUk+@o1UhK<>oEj0nOD+U9zND*ei-?((4=H{8(Z(;m-|ww zA*w}~G|qMOM=hfrEYZ2U7eCwWn8vjGNnwxY?Iu5ujZOFU2Oof@v7DJr$A1-jU&E&^ zNtX`$$!xR+ofb$4^^TYs9VmA+akYKAu{*QU}p;*hD8QLA@%5W>H_r{1e;{pR|2jl5;*bE>74Y_{IM7 z%e^jmvC_Te4ufwXTr3-;m2<`e9Fj~XPE)u>xN^E*#VpokQcpu>RPtWD9O@Eg@k87a z(`>U2gAS$AmP$6WMM-mSJQyw%%?aP(9lu#~@2v;5wt&m~_=y9UU~5wiIg<$Si2q#~ zLAICO4ME$HX_5t@Jx%U}XXt2tZluoq&+qCsa7de0X1mftdKhpuUZuaE-du_8Fnu=m z!=1O)J>hz5|EWPqoB-tcB)j0^F+YJ8@GdppN0)O}IMc^sYVDRcRkQuG6>+7;I+*!4 zbVYSv49Fq#LH zTxw0cO~i1{WxiPB*_Y46Q(&2v((Uj{+z8Hwv$`nFoHnoBM@?V@&o;eTbYEcUu(msF zs7x!5HA5bex@ddW%n+@-_~&cm%cYQHAYJYEry5|G<*BOa406VWcO&N}KO8>qTmk1O z4Csvgxou)8DlHhsoDd(#60;YTQ?#2xtzodcHWLllic2OPuJ9TgNcw@Af7B{inx0 z)4bHCYb`Bs)WKLV%@hHedZG-~(xsDU#!|(+Tsmfjr3q*tTbI9M9@a;(;i7b}m5Y1o ziMfAja@7V#rfeTa&E^<-o%p`oHfX+cAd@g-PjKr%fU0R_H4XaHx(L6IU^2{~`QW%v zknwKDo9}BEFO!d!*~e!Q7|T1Zm#Eq1zr+v>kqD(zXklFQF~?{U5JavX=I}iC-YhzW zQ44l>$`t@X$JWQ&iVD5?uczUL7J-&{=ceO`{e#Lg%{CcVWH5VCbFnoVsWZQb{BU8i zCM@|SY6^uqF2w7uVUYaiV#?KGC9dG<6l-wu^39d*dvW*WPMtg%w&Ub;fgI``T@w}x zSYB`wBg-r8)-jrH71>duSoudmR7kqj-0?aTF`=OumRxf`b>uGOyi6I>xKUi18NKDM znf!|VSX_Uh$=v+I8Vv_;di3V1%|b9^aLn})QxjxzNKtwL&^ zsLZ0hn@!i;-t_HoQeBj%Z2$d2ma?Sjz7j~wAAg<&f4c`Obz z7UV|st8RR214}@Lh6FBfsfbQGB*{?_LJOeT)^7%;jzvd5;BG%K_&xF;P z7feE%J5=FR1VHE;2yA@4y}pnKyaax|Tep-My;foNl>-d_^sCU(KW^uq$5k7sL7b6Q zOIuspY^l`E!}k+N^%GEA-Fh%4>tl{LzGJMctjx;#4AId$Qu+h_@>Vz)=wS*zr;%VF z{nTS0WI*i;AzatzutlE40_+st=z9tc(hc`V{=8kgNPt_k`0svg&}q;zHC4awb>qMM zTSRx)B$Z}b>)mma#&3I73z!x7kEWm^f&sc*=mp_v$CVPV-`46KR6&P7PPX*r%CG#8 zm_7IT1+^iF>>L|@!L4Sup+FcQ*A7V#$hRRSCnwK^oLjc=2A~z|(n|U#9c?{|M}$Y@ z^5-YcW`uv6;Yi@|^XvT&EocABzp)I|GGST)99d@_{S9LINL zT81%F{boXIMse}-cY*b#vDB3%2rpIM6zz_TzfYH?n(zj&+8B>|%acP8c$fzWa~^D{ zY{*s0gEYq+$YCXN87Z%T_VumjlBrDqL?W%6C#n(( zCG*)v7x^J31W8!Cn&R3$Rs0C^#$d0Zc!&|LuItb?fsU*`>(x;bwnj$T;LXwJz7;6( zy9h}ZHaQ_)$W>s37QB^yIg%ZhwU#ii069B-@O8TdUOJ*A69XGNyWiRBxIXC)ic($Go=ai%rC{3S9QEgQkwS~|4q=6z*g;l;Rp0W`P+1;32L~@*+QLEzIlB3h zg_17BYW!ScdmPxfx^uTX{fRelVtZlx4t#DKW|n4e5(^=d zywJJUfwRO^d|&-hkf>}2s=toFOrGZh%npqDlj4P_Hdf#Jb;o^qT-xS{ z3T2EeRXbpcgactd(5m>fx?Ld0jYXyK@f4%<Pr zem6iv5^nY0@OF6t3GGl@)n}lL|OPkf$Ii^Av z#0SGjzf2RSwb{PcC`ov~j@IXA2Au&f$;@Y(5ZBELWC~kiiwTtdAdKTH0}L14^yB(k z4ML@XbKUL&x{`nN6HNW@_&UmdAnQS7Ckx)N^iH|&KtIJ8?u+wY*}egl;fKu>9@>W% zz1dn#*dk;!dI6yZzWzLfXhNvWL_vh;nxKwXXmrXBwOFTw!IqZUpC1K=;g zgY*Q-HuDt$GFw&T7s+PHO!N0as7TR@7J|*e3ow|F!TDdr3*n1(pM%S|U-dzQbr(iIR_8|)v!Uh3qnR#^E+l4Fqv%}zM9eC=$ zd#4NWqk>k+$d30dmkl8qTA&~&myAveAj{NHH0T^!6!ZR9Sp0mg^#=yX1 zl!*n-LX9n7uvs!bP%kpA)$Y%M>i6e;sy_$O(TGSu?qn;iO z6p{RPl&3m2bV0|592&8m6ciMBaCg{Z6TnKXbs9pn()RxJq`x5yFBiH}IhOI_J#n~O z^{V%vxTVB;0Y^<+A^?`J$o;2J7WLww-EwjMbI@qwz;?ETr|+$W!o=pWm5;l?j?zaa z6hkFep+l9l128n zRWyitrl)qI?sH4-%=7a5tUI_vJ{5)}EFlz7i;Z`1oLCHYCh&e9`~m5luh$oGKF+j* z&r!*vwLV#@cpTzHiX$UcHuW{Yk=_kACP4N$m=8AfY{ONfdb0>=Cp$eBN4CCyxd!bGuYbn^KjYt}C65;pNk<50 zU~{$>hmP})si`Tq9rMGk#66i@&YN#@Fr`L>ECcz@y>)&*V|XF46$F$C{x)#u{rFpS zyn>)^nUrzQx&C$od>3d&*osa~+U@w`N2G}Rh!DHze2o+x8U99%X4ZmqNRE)s^p zn=uW!!@9P%whrY>Awd_>RvOfz|4cI$|+a=Qj&e9XD%}D2o_EZ!a(5>Gz%L zsS*n{B)sEN4A|;aGs-p#GpzFSocNYWZ&-49XR}DiA@PBKe|9|Sy zNV7}Qe0sOy0(3uddFaTc-OAl1n$3Q&bD&QyF{DZ^Ijm(eAk_A|oYUb&;Zv4SKFz*&m{=^$kiw1i+F+5qrc!TEn+Lr^*q6H)Sa#N2iz`$5R8&rtuM?ZF%NlN!s%deMJ&Mqqv%{czsNV7_1H6?IM0ZR7{{+bJq^ z*4qj7gyykz6*_z+kJu&MUvRx4JnTIlCum4)-B3&5VYY(8_Q)gIK|;jztmk>llXGI% zKAXkS!y}yD)~J(x5?U)vw|OSlVdIt_=C^FzSdmB5Fq`jWeeOz+!lumOULhqyYFx}@ zw2Jm~prr(UcL3I!7DQLL9iU< zhf;H49r#};_2!GLos#QL;#|2wrInJ-II1v0*mD z)q8god8SP382;PWJcoV^g5o^5FwAHy-9VrOh0lXPCc={;rq4;)b(3}(ZFaQR7cxJ- zmk$WwH#?{}bX1TBc^PrO8&a=42#^zjJ4cIe3Sncr#?E98^EZiz{ z8k4{-{%S$`R+rOA-zuz5dC|Ewmd)-Ej1+bK5rz~XF9n@acpZykjm*u>$HUQVSSVaY zEf{p^4lwR>z26!`Ts`Kc7Yqv9`seDJds|$Rda^VQd(c)JU zOtz*6TBTz>WB0b{cMf)oeIh~k!{4`o%(MYfC1>~+dM=H2)F(>@n8G|k2`cKF)#8Rt z&*+yp!bo{~9;iwi0?ls1gX=FD&K=0I?}mMTz7Emuub<7$OA0`ya!4rBhkB*0pFrFF z?~F6nj&d^p@diA8^thB>k*WB^FX*tFYy*`hxWX*Xc-OlCe*if{01Baergec0UsyrV zaVWOSslDLW+{Q&5{N(q5j@EzgG?PMv8`V$LWzw#K12Ag1;=2gG)Na>!ahIlbZ%!u` zCLv;&fKzxUPa&2pIZ!L!-8DLUM4wq23w~*+U0)b%_kw4#tA8i!{)E~S-uV3Fm!*DD zchAPHKXigmX( zuq~XeY5JZOWwy22-+MDx8PjM}V&+fvtvfp=t1rQ!0!W-tI}*6h9|Dj-2vh1z|F49w z+z2}Hm%m|dxn<3s#Zgq#jU9`^`tJIgmM^WjGf=k%h(waIH)~^lH-6nfPCd3AE$8j) z|E#j8L&6UzRa|jbyow|e7gPj2dPKJ}VlXb#DVzIB$2?H|zDK@EFKU zzxesfbz!8n$9dYu`hwL^ZgzIF*EM;nlbP~w!@iN;XmAEbpNX*nVKv_xRl;@i2fUiE z`SdGLxLIE!7=r!69gpWGrQ*B$%ESgRjgD7|Jo15I35=zhBj9}ptT9=>W{Zj{GxN9t z1B_q1DKU?ty`Br*`oge5^%*Alu*b#?U9V+{%Ah@&u3)lw(L8tdZ0`$+qEjbo32F4K zctW2p{BAEuf^J75%h!tDl5_%V7J%db5q%IT|ivy}YzmdBGu1(iMh zV!M65@2;G9y|)+r$Ug{MHHg3nn77V93YaVF$TC9IYdc$@ z0O;Nvjv9+gb)V#qGv;_Xz|C!0xfGwfTg|l)!r>#ZyIZl(^35rAPe%~-P@IxXP(8=?(3B-WKV|Y|=BM*K#o5^4kenzk3(iWl4X^JXPb_$MXXlEz+wxF8 zd#{1N296NF#2Y_?^Hr9~6)&1cs?Tui{*U1JX|5#3I3h+AP41RIND}nYX5XA5a-l>k zGFV;`7gn8?D}<(LI?+hDinw?P<8Hqo(jEG75{@8jVT}D$h-c2O|A7R^YS-zq=9*K zRt7)+$`tu=!A$vAw)qcKsj_)~Ka77b5rZU{4Xx=HnbJ1D9Ud)$c_YUOZ#SJNWiCd_ z#KzuJmlDTr-R${@+4G;&W56BxPz5Z3R43HbJHS^b*426%UN-HJK_}f^IB{VhIAb-m zLdTSxZQsHsqg4g}z=)ipBj@|C1CC!yxSdmam8-;k$XwCg(8;Xw&|c*@CFc;IG>Eu3gulZC3E~gAg9Rz$0Y-x(tgg?N((DuLZTyP z!O6m%ss~l8^8Gw|bIUP=3_Tz*#zQQmik}5g8IM2+iqd^T*SpxQK;t-aKWtn&HdLD$fZ( z*?fwthV-A8b;j0Lz`p-W&)epk)FlU*+*ZKFd|}FrBn`@(LEaPrjncQq(q!!qA+Egi zBn~@gU!<>|_nJwqy#EmSOLdn58_#S1Y?@QF_CD}m7%IEZw~~4fsweN2%aYmhm0>ti z%f?0Mhfn_V*zu~r?WiQ*ziU2Uf+EHO4GH#BPa$~Ct$#(BIMjFwZ=QbV%|%;=_C`(= zD3p$%ABpTtSL>7;36+;=XE2Yzv;b-&JL`t1`1p9|hPT%3FQurqkla5H@q}`LZ23(% zjn9I}i}2g&?|IE=J0RTPQa`md^;1cToayGh-uYnWC;tL*qTl~ zvr8T~IZB@(u%d?73NXO=n@qld^fx)vgY06$Cu-rC^L+URM_5UF@M$r2{MX8)6Bz~} zr%^s&<$LoO4Z>>AGF16+xHbuBysbh!vLD+5gnolhALCPwz}c;Ty8Qp3gZa#WXQ zPSc6qtX>2Kljy>#fL}kuMBxE}&hogxk4FoEvM-v*qX?g!-hMF; zZpDIi)}?S3Nl|ZMnu@N9`>g9SGv|~Z1#^ziH=8mi0-$h)%gVwST)v&hEc2sU(LX_0 za7Jvr`0#S3z`Qk1SBNoU(%%3o`kR$)Blsb*J*vCYkh=6f0S#=SzF@gepFZUtvPxlM zMW+bl%VQwNR}vP5jn$nO87a$Kt^6L^-Q8ugq5`Wi$F2z6w;*cfM@n*^oAv6~Qd&{Wcm>i-u6HgrZ zJ*EJJgyJ&yFA@qElvgALR}F965!wF-OZDzfl%k3`E2Bi|FjA=%PAl4P8)V=w-+H6z z$?=r|$3=sipl+B?MJ3kyY^dADwk{#jqeGo4_#z3b64w_>eFaxq6I8=R{{pDiZef|h zK2|@sKq;RGjCAZ)%H%DEde5F|cj67zqlniO^@hR&c44zRFog|5zhB>yZ}_I>wePIA zIuMt`sBmDGQ<6-d-R+pC`+hGVkqRZ|`cQj1v{L%;T-~(smYMa;F{`h$w-5vto{0sv z?UF{VT6ly5)mHa!xhDPNZ}M>wW=#xV!=H@X*g_$ptQpt-c6g-ddRu>}|K4^LVQ^fj zD<2&0o5DEzD=X{~ITc!(pMPHX2dVXE!TSu7$cY)J)>kd&$*{{u^^)2RKAjuN3c8q? zv6&I@J@YiOTOyMIL$K*1jl7a-k1cfHqXrh^9q4u_X+!uP!zpJmf+`R9wLQ`@M^sMz zZH2F1`XM2uqfsVXdt2M7-2ul1g8{3=h%a`Rq~$XM0^r1Ja#Z2MmmKDa3xQl(_#>MV zOn6QR-2lpf9}$f}C!)AxRPag=$x7Jfwt5bl_f;r|K^gTx3pf5`tLYmvsyFd z9)tpHp8;QpkVb||tXuJyH%&J_1J0SCt2rKseBa!5n8H~pi7xj{#9tYJSM+<$B;q3X zhk<)1;bNFK;A|D3O`vlJKli$bw_0iP9dpbmOEIzp+NQSkbm?moKP_Pb#v$JQb>l2u zOT!zUdvBF8@jgStA6^tw1rw|e!J`phVz2th)1yY9Iw<*Wi28U4XT1kCfdQ}e7fpD- zrS|wz)?Sgp&-r3&)N3z#G-wTe^#whS33cttN5dwWWgdPMoG)G<_P`naZmOz^g=&*g zq)XghXE_jXuimFSwDwHe7`#CTR3=-X_NAC_M&#h36rD2ZrBIF)MT8#KRj?L6Bs72I-{yi zrGC-g@(cKdMNib#Yf%VveE)F@Spm1>RSPh{uCnRJOCXabT#b>fr&X=PnM>NFyq@_)8H{_UeQh$aS`JZ5TBhPrGs(=o zkvywDbvM>LHFaYBCCsMAHdNvcI_q^QR-S7z`~?<2>dZX1%3aO#WIJvdhLkMu`Cr85 z_&){m{(tiw1xm%y;?g>bcGKAX-zKtC^=VH@YATSA98}~kcUk9d4o1v=XfjNxa5rys z)8qSfkp1CXyY7DHFzZh<1@Z`ooR0mRYId&;FFj`m`eP)(EgV?E^^>N^yATK67sy$b%zL9#5^9Wd3qp8h0D>dovW zabA#z*HtE$I0!lkO?_U* zij~r00(WkPNWDLX{lE+N)b&yBo8>Ferun)1f4ZS}J==VC`m<>Udq?V2DC79@5{RC) zfl{Po2mr^V7j>G#vwoBXNKJfYM{ckguwP*V6gSPTFE?&QP~u?MRlSvpA%7_~5Pw`k zVX%Kb@Zol_=kyP;=(9XYKCXeeLT2-r(JjwZjbWyV-H;euV_d0C@1VhwqKVU|QeSQY zn)fD2X8(zk7y68|C|79^axit|@!ibZ@6BqFxyR-3U%~UAYHi{6Wyiz(YF1nYM~$raua= zos{c;`qMN2U%~2}0t7S!G$S{ptK>z;Nx^(bA7=CQLO-zpm;#3dvWbbwnl>~V@X)Dg z4)z|v+1|@!A*6XE%cXLhoLzlCveb`l$3y4)?X>#(m!ZV}ypb-jInw!bq-%E{K(0mC z*lTzSNlO;yE#S}{e-XXuE6%L>DeK(lZ}*lZUEVT|GmMY3oNSE?#7Dji^0uA_J`7~4 zeLysOnULmFmTNf|c?%wtY|ilCKK5^5q^P=PRDSvD7!)EOY?M`0pnvzv0HRhVVlGey z>=K*NSp;dH_=B`p{SQd{m`UG%0opb1{?9WcW{PbcF|j-}GrBaxB|H#ox>{SN)j}&oGGAx~v4t_t z)c|?9Nbq_t8uS07n^&$bwJD`nGA=LR@DY|&tK0fPja|xNXOqRP=cP=*k}(C=NDs7# z!dA6#GL^Z{>Fa4~lC}~XcgSuzwjOcqess%U0~%FL*gcPmNLdUvdX0@!UA*$8`xw99 z3^+cEq0HKrbV%PVD~gyd+~}q!Y+Z7J(hMPy0po0>wV2f1KpM!_9qk9I!4=jX>Apgf;mYzFskNY;39_D80zbLv`DO;_<Q>DhWt!-^Owccwybg5Tec3mQrWjT7r5{)LXoz56N_4KH( zKrNZz4x{W z`1LO*rDJvMIoA=#s-{jsyI#d>W_4n7gxRQJZ7(bv2Zu@(o#f{D!={BZRD7&f!^mKx z(mG^qulg8`ws8FKGT^ZcbporU(RN?}JwL#`hIBW;%BZ9Z9pT8}F-ytJLl3~OVVdd! zQhF@ocin*F+n^1HU!(B9{Tdsu=D5qxANuP6B;qV(yK01LgN^zW1XuUbIMv@>OO029QNat^xz z5a0e*Gtlp@+y=*}>~n_mSGxk?|19JS3ZhtmGWpN&a}ks z7Dh_~$bOLIdyp9@8!-dYvgLQ;I?FM(gTPh|@FWrchku113uzq+ag%<+G&D z*^&bolzi>JCT@-tMj8)tWd}%v9&m0{63{Sn?7t9Fo1buW>94#-g=2S?kKZuWWf*^K z)xfC1;vR>pkUQ%km|1vx<~a~nduJZZRy@##VTGG(figzJy2Q!U>AE&v1urBu1I#!O*dhwRoD`?b5)5L-yGJ{-K0E!p z#80w_fEmO}fmy*pk%Uz!`bqw$mfajO8-_CibQvI=E#I*%R=!P6Fw+$?h$`DPZ`y+0%kpw8%m?^zgQ1mZ=+7k#x`?aYLXTxYPFq2$ zYiLzs`5RCRsxC(zikEJ{3i>Vn9n3KL{Pj(1pJ+FH^NhkOl`z+$RELX_Fv~C|_3*3x z(96pZ=3^HNlK9Vdr6go)+Yj3j0q7b23=*>Vz{Ua+bC5`AEjmNT`m5(a)OkKs>p*36r{UKBFiNqxeq(E)dFONY-I&DM znctZw{aKbiTJvmIE{r`eGDKAM>RYW6%?v?B_4^q648`YQz}x4w!XeK1M^|r&=;|p` zQ@i)DtF!WY+5#&(UH_@8586VGk$(yJ@#L%`m8-Cd*t;O$pYttOU2r2 z)H#`*9p+P?Gk5n&YQHoqHIV%dv;Z`7sI%>udJ1}`zssFgfHr32rh7}R+e2PGXmW|F zaOnVr|I|&gs?Ye&PTrqOF#|pPPVPuskA{wwis!=w5%=8n((Y>}3f8V)9mjgD#1mmO zJet0N7Mpj-FNSw1pf(il~J#g1Z@Iuaws?NW- z$TPB`qPLHWUvG>Pr}p1B3W!;*=-khtzV>GcqL{9XfpTuhJ$=P2PPHJNx-GZGy|S1x{7wt#{~*5=RH~4koUD~75`1A_Sk>eiUjb&7>eUg8w9POM`m^tp zn3O8ofr;B+84x+_b3O=d13V@=5bcZ8kMPy zosB2>5hOc4dRp3+3r_myQ}rLoQeD|?f3RP#J@t8`r~AtI!UA|)Wo^gk6+A{Wp zj`q%TeYqL~ZaCr$>O7RPaF5z8%ykU6$wyoh$Fl3gsMezR`1La+x zjeVK8#Z4(hYfMCA%2k}{$qH;j7+I;hrp%?hNI-SZWPVP9qTWN?)`7tJTpW*}J8|sE zAls-bPcUnf$=k0Y;I|*-G^hu;mzD3VA2@I4K(X7GbFYg39Wt%jGYRQxAfBj*L?rh- zOCY%)puxDOpYq7Gq{k6b_3in%P&m&RY7gG);lJ!Q;dDbBZb!B2db3mfClaFMy^nzA zKcH&!{MS{{u_{-a?2X=8QuOAa|9^jIEn=bF-Ezl>_vWRG7qS9nW4};Gopnjt`)zXn zAo=_B0r%7rKykqrB%lRQ(1Sskc9TYirLOy*Iaq!a7lkg&!T1eH1-lOCU^<6$umM0! z1&60*5kFzCEWJsw(@uu#2iM&;s!Dp|x_S zv6L7>)W!NoLPRt&f~FQIL6syHUau8{PeREt4%3Y0S+UFG z#Xg5y?f+@-tD~w~+kFKQ(M>9)bO=ZaNSC67q{I@G5)cuPc99Y)1|X@FARygHNY_SS zQL+F*x?>@!AS@}l&qVhf-x=Q-XWYN;8TXF!&vtBswdS1feBbB!J-@i+M*^Nd%{x~# zbFN&Kn*4U_`FjxD=T$cgPiFDRr=C`*tu^A!0m8 z(xBll$%ySL1ZT{~IJFy(&)w9}hOxfOX(yta&tKT?v%OrpOAW_(HtekaAMKbL!Okal zl@A#x%l`d0hG?*_&;~~%L?+x+D<0-CogM$UhvcR5u`)&X_{co3f>=@UyU_ZVj9dY0D=hTFN_9PYff z9ot#g$Lc$m+`JsI8W2Y$9@)E?;qgkUTU}lKX!W&@zB^T$#H93;t(yA0x*3^_8EYJQ zCxZ^(FL7w0jH@YNwEfxFH1YkCyqUiK>k|Jfz8s*~(!7}oxo1*#$Ro^xV;PJBT<-0| z@SH1;W3A9&9}iS<2FyC^bU@VC)kDsXTu6TPM>@FCHE)7 zWESPO|9)ILk$JHgV6i*tk1bp$8hH!~|5exTz0SQ`kXsR#!G1BsomDxMF%Avep`J=? z#y7;%I#0rBuFZ51X9V`^8nr)jp7pm4+||2aiUzfqqatuq>JGAq7=e~ox`yAKfzF{$ zen|eyg+)r80tLkJJa~92M6Jr*x8bZ3yNw=WN~eoTnpi@-29jcw^`U()CYKy8 zv(L?6p!r7t5|OR^#CGyc6{Yr@i|4uFZk&+R&{lqRoGM?9n5|#VKG)cHf61&`9!0ja z8>ZG^Ud0_3YOpGku^w``DyUnEh6}D-t^9Rp+X7o}_Meveca>x1#S)xy@`TjIl3Z$1 zo4j_4gUvSvTVu2r{f9xZW0gJND>CVqdFx-n zIeSk*D2j;5^On`H=>*D4KrZoLN}Jguz@`>ZdOO)58MQ(9BZIuT*~*DT&)rzYDX z{Mu1>@G))ii44j}5JK=%#fsaz<<}uN+5An>m1t;YZ3ey$6ec+{eI3Ga<*h035FL~Bi!}PPIxL>oH5mAe5o_}fi!32)q{lB-+qB(FD>puVevYGQuzBh62 z_#sb=n%l;pdMphxo-ywGrMJ8JCaaa_>mI`&*xOco?<7-uE0l7KVwd2#QO<&UM9|GD z1{6IFbvZ*+jM6E)a$*&637hQBb{VhBugkywoXgG|IekM&ed$a7hs!90{B`&?jh^*8 zMV}FWvNyjY>p{AhoB-*x zb9^V6VY~N8q{Dr2$CSt>iF@6wsVnXJ2B6!#fs}$s``!9t)POIgctkG9%N+ zmu^T4I_;5x%nM=tH<;MTH;)?)eBv2En!v{SHPM&S0bq&;El<3c#+@sn>mq0^(M`Md z`+Sb_JV_aIq2G>@Un@mW*nvB}rK;(c0|h3DzqDd$s4G=l$v!PPt9q@?Nj|Q))?qz& zO|i-+GX7}|Ccf=^$LCN`G;Z$*s=TD18g@da!7E0FbBj+erT`p>TlxuF&DjTJo9kB% zmEG~+TW~$Ts@0oJGEJsH|75NH-ks|g&eRMlA9V+qwPkhkD=)ElS2@IuwoV3Ct#oWJ zm8X0G=it(kvjK3W=O?q4X~G>2tSSL_=?BtR=>gY)!Xl#Q*BivxrUI(4^CV>HE<8!G zcjV?9_%q5(ja&S@;!6%gUo2Dd?hJ|UIL(ZkWku3pdo5H}2}9Mkx3{}SCy?Rt62*1p zlhMIx# z*O%5$CgUvPwFeRpe>!Qe?IWeimcX*hreaG)L_xFzE@_l;&ZG}G9oyjPqsOH^q^WI! zh{tiYR-YeqnI0wge0o_Gem~nD3Ut(M&rLSZhL7O9Azr9m zDfuONiPAY&fyfj59roX4z}c`T4`p=#I2HgdP_`MHRrRfnKWYL`=SL>7y32qzpW(l? z^a3W?#%Ers6_5sSrJm_vl@w|C0{Xhr)IgOu=$k9A1mktxk+zQhO zi-9t~2?TcOdY$tUQrOyO=(u0eX^Olv7h3UiThc)S>n3UjR&j|syhn9IeX%h-2eh{j zcCnkArmG6;ecA=bL>xeS!ksgQe;vG}rsFm~UrJL2NUuL!ZEsgmf)zklj&JF*~ zv;J=@AP&$0HpaD^_e@`eDp+`oQ)_fx@;AuzIO81gv)v=3>Ogf2mGl5CscaK!vhE zkC}e|0N87|03v^SMC8(x@dyvD4qoFe@F|63&mJ5c4{>T2H@$zH5!mA04hK+l&;QF` z{;jjgkApu4RdK&VJ%U`L(^TRLVg`XpA{9u$s)Br@BAZDnr*4wW`*vI-1enGC+z%s3 zzh|7x$c$5m;7BDxQG22JN1tRQ`c$}eVY)dO1$(~`xrj9I!B9Fn=6kX*?7vC@|6vvX zBRsPIL=BWLy8q<&k;H*-kKyH|j3-V6cgnNZfVgwbunvNL1F)~7qjL)DcGO_PsDaom zAQEI-xS5L>7QfC#Lv=N^gp~sD5B?M@eC1P;f?2*v^$i#dVn294EZ*P6XEJ^SwSaD@ z9Xf#In=581o(tB_ix1)h`)kRMdg{cR24;u6}2~6JC zccYeyH>-q1(8Y{6P?PtA&N=~cqAss;ntGgRuX>X^rk)>Yr!8pTpHs(Iq%*aXx+EtD z|BMu~?`y+IG2vfFiXneSib?-IQe+D^b{+S`G2w2N-Dx|8yR`-I{F!oZ;4|SwVf2VX zjAf8YHKQAr1-}G85-)M&>iJ2;4?04*utt{-f0ejPf2L60TH8&mv#>)t7@(hw8c0 zhT3|BMB$GI2G~|4e*ZaAYBO`OA?-U|OVROKvr3@#BkLVB4}$$DIe8m>!^Ls^khXf}HbF^?7t z2XgF^tnlVYYs}{CHBTVPmSSQw&hk1uQlE1H=2Sox`M&PA}{w%yWv(Ot`d3{o`wF)rU+YFz?sJiP0*A?6qf>XSC>|dYR;3 z?XQ0(iBWzlo8NV(8d>U|CahVOfA~C z3X~#eCVXO)+rYLjCnzW=VZb8o-ECXy4tjF%+JemQk!G~jdv(3S2xtH#kJ6}F0-TWF zDTSJ8M7h;?*azFzchaG31p#;{LUt z^-1ZCb2xKQe}CA$VA1pfFm)j5UI#LTo3D(>v%nfbw#y-3H>$$B?HY7YTqRjRcpq*5 z3g(}#?FL(yiG>j#ACr&#HzBL)MkX$n^cU|E@EtP}b)Fojn4dp}WGwn;5i_3V*4p!1 z8S~C#LJb|ieIRV3O3FsYMr5ga??O1eEo+2AIBOcsOI39us>>Qj1b8Wl+Lap9SqU1O zZ>y^sZKplez2p@kLz17)Q_ddkaz6P*3JGngVd-%6cAY!-Ijf`(TXD76&IHjU>?;k` zubs>t+&Gl&UB|K<{RG_KaxhWseXadU44~>PdZJWL(H#5b+xu@$u`Hn<3(eA zlC>;hrLlKtxDB@=Idnr^ykkm?Zt z)4hS7OwudA#%Vf`n=35PZ_hp0iruoeW7TIy)4}0pC*|qj=)=6f&dP4PN-R9xb78?L zwj=54)y)q{_o>0Suta-;Ps11%bDL!qPKW--_)=X##&Fro*m5>>7r>b8-WqwMRJpeI ztJ51F^^i)kQ?>^tGFIX&N(n=ylgdq3`s^O}L-`0FZ^|hJJ~Bq@^vIj=vd5oe9OC|5 zg0n3xB-P6ePn9K==NL7|f9(r@N`LZmEx&z1YZx14?QBrPsPVBU)LBLASK`{_tK}d+ zrELbhogS&J)~+turr37`C3AnEw)t@?s8Y(MmQ{J(#LhNu&~ze+{^aX7mpm>KhE^e8 zBg1H3zrV!? zdXN6|8Qz>NaX44kDvRs<2_{z&oa2aAnin&u2T1Jd0I{6OuzkTom`*n;SE)8>~Jq8a?^ zA-_N^Xzwq<3RX|!nzq6mlCVmK9RB6Iov}Lqd{(_h+`#DGiAsU!@D)@==$!uy@GZ2N z@yjJxab~B!{hAY!JLS&bpEmCl`la>J?jjyElumaDLjiOoV{}5YJtNr>6}L7sUB{Oj zr~qheN_rawxu)`_k;TL{>_#c9t@yA75*u`P#@VUcKHv<=CD{|MF_i;1rR69*J;>{V zhr~{B9IBz@yOjm|F{WNNUtO1hU6Ot>o{KOPgf2PjY`kN&3d92It_1C1FkyU?$`>@U zRyZF?STVcf(+^Rj-eUv(S4TpxYRH~F{Z5%uFT+4Z<1po~oOe?4YuYQd{9CV1jG_#qaBaRg{T? zO}=7{H+w%^3Uam2{g1+vx%O^Yy5p? zbl?~y@CE^W2cT7tIzY3m4s-BfzV#{ zgBU-G-Hn%uc0DOdQO6nKtd zB4W&zLYK7*ba-_NWBSfIUDXch@qiT$4`+T7*-9=>jk;nre;t+f5*h`DK$|7IYU?oy z@G;DinIx(7R7#l)yv9;32RYkA=HhUX#_5LDUIB;5~?3{jVZ z3JeI*?-mNopB*|&E(cU3N=0^R3&h^%_X{d(PyR z#W^_$pa06d2U-#XjYL@~&rUcD4Z*~f;qik{VgoOSVPP$Z{#jVv0b+Jvek6SR1}S)} zo%Tg8bM0N%e+T?I8~`;|W`wLJ5Vrd%mMM(_RRqG8zG7z)d>HTtkxT_Otw@Aq@roPJ z(A`h=f^$@H1;}!xpL!N1sjvQ$a2z+*0F2k$_y^Yu3lYVvdrv_0RVs<3LM#3J;*+9j zk@$jl?VlrNN&W2x&MB=t)#5x^Op4ibU6y{YMFyI613c7mM^R z+^BkUe?&w}aw;J4(bSiIDKPR09}^N==6p6i>&1XVht(2>`j!D9j^FdwWx`O{AhP?c zThiJzV(@z}Gr%ev5^E_Qu;@@idB^WP9znaUbENs( zld9lv9`W@M|4#m3)iC2he-0{Y!rNq^|G@}3_YJW?R?BW|{c6=xF)q}Uct3$}fEi89 z2rIzQ%_;^y+zDFEEheYFZDemGmF)Z*$tS(1Ta#V`KhdiW)n!j*jEv?!`YOL7Pv+6M3puItfaZ(C*Ii0J`vaCQ|S2mITOPDcvovfm(GTi zF=_FKdG#pKZKA`FP+n_~Ygk3Fg6mqmVAVx;4BeS3+Uw8p?8nu2W?ZsCfl8L^(+QW4 zhSHgOu*oFk88qk&AWISJcVkbxXzKVb-P-;{^v>Eddtau*4Lqv}I^tlcsA-UFaV#P0 z4bK;fd?(Y3)rG{FobC%;gb`wY$wG)kmoS}TT)J~E@A?cG9`stT95YhsgSTl@OlEde zZUv}d-|!4tkVlRh6GKOS7dxHT?p?T3rCehF{Iu(6lT(N(){KZjIH?(~L2sv~sAiej zdpTm|gEJI+?(^?j1?EPz8=PCtSU>O;de+(rt%EAb*^hTqJi`3VD-`}BCX-Z@JzhIc z+jfi*Eej7Canutyt)5$8Sd>z-cq#7%<>{Sf&bJ`E^l(v%EaE>|$RiH&{9hI@M`#9< z2bn86NT!%heHqV<6cfwbY7-8Ppc4`tO+i-T-~c!lS8q|;k2cXPTX8~`e-~%6b6ANr zR&c)S?Z`ITHY!Ghy}@HH${^@Dvsc!}{!6!D>l%&g61{7X>sLPRWrwqlW(d`d`6<=X z{mSrnuAgsGOwo=U9FYj^{^IXkztY4*knElu>}FtI;)Up0jwEj)edLi#OTRPkz8rc5 z9LeXNgx@@J3)sf+%m4ht|JIx1vkSbCo1I_+)4B!b5w?u>MwJl0p)kY+ebPq5k#C46 zUUxam-sJIS75ViDwh^q~FIPzMSN!19Pi5*(E5n(e0 z=cQoS@a}0o!hdA>_5O#H{O%Bz3rjV2pc7y>;+8El84EUW>w9Lq!vnJ6M+CrMAX)5K zqW=}D0{a7*ekP{`w_%&M4HoAnsv*l1m76&+gMhkyWh16P2P^ZI-sA~M>Z#$adc83M z%ux#2aM=TZUy3nJNh(mwE9xInhWf?-3$+I!xl%>h{#suXXDal0g3$5o{LPt)L>zvH z38pok&gsZY#PjxFej-#K^|0(M0U7<5pTG%UkQDAk{`qfmj;vTH9~ubJmzQYCvq*-e~KV#n;&iEYNO>DxkEISwXThs1X*f+FOp{ zs_K2qkzy&dc;;V3?eq}-m!)_@M}?_>yVmbuccNKrz*r9~6$RTi zn%&@R1e7Yk(1tBKc@#WAi*fr+-10gJP$o4)`75@(T?dxC6jHv0wOfmO3t2Xd2e2n>hp;&3rcdr)4I#wTeEH%iLM>1N3&4`nJxV znDZLSY~bDp`!h(AHd0M5%eBzjQ(_lp!W87Y-SZ8;kF3dU!Q=ln4pmkO-s#ItYxKz< zrtFm0m=01|_7|?~`fTQ!tqk4G7D&v_NG#Wv@tGG*`nqQta1YKs^Pv|#1C23KVE^hRghh8D`e-OD=l4JN*Zj;Fp;Ar{iY2++{-S&sZk>bKv0iX3 zn((w7c8p-bG{>()T(YRA-&o4^uQV0+$K?0FYSVEiI5l2U@*uk0b7OzhZ||Yk=Id-| zaw-ZkM#^52Flhm)v@ZAuiJ6O>h_dM9izQyy{pz(kZ|oGmCX|?Rj@fQOPFqNBI5*Gv z4JnDS2YOiXYxYzkNGX2%CB$*xU7uk&@Gv{3TJw%YtH5a2X+%X~r>E;ev~SQ}zN4dS zb8lIS%pU7Nzcv-Kl1WWI^K1=l9GLJaLev;izuXy#CL2hx?oCeegW4ga(myrHe!#?C zU>y8Tbf9y52w1|8Y;B*MLTsS9{QfcvPDqB41Wr|d|I{ge%kY)mi34A(U6Au8hm_v~ zOKeCRmS($hf2|$xgag$6i~`)DSGW+? zHSdXC)6Cd|FXeUpC-5!<-E!sE;t4|s*>5v~+h!LoKgaFt9Z~&bhwuf3LkcAAN@?$oLP6KgY{wjA57%;f3PbF@t5^AS|Nrnxhi z+nNNyfrl*v8gun&kCN{QyW?VCwhxWF@b}w-d2KXVkUey5RRNUgv%iW`t}Ke`ZdkvZ z9bc+BL~nTZc0F4-!aJbVJ}EhUfVtWL!aR*O@_PDw1gQ`h(8^43QFA!}U{HE@EN~5_ zfN8ow^9Q#{9ccfHJJG{pJ@zNYuiTJJgsXOWTw;87KDwDyxai(cBZt8(CgHEz=v`xw zNUT@zIEd7pHLT6AD!h>cpbM~GGZAf z7cIN`=s0s0+#dvxD9a=9(p8U87J3&O&oS_q1?R+vjOf6X&Hcc4m$FX;sBlbX?IK?U ziNW34tF*f9y0ISs9<c5ZX+A z-B}fa7-_+1@%$VTGdLvDbH$8dBaZq5iEMEMVFBZPT@@2+$5Eglk*Q$>u2k2H5y1aD zvLYY}yk20*lux|SMCZPjbMyNHAHOlXUoME^okY@wP06+{)S>b_9D7GJdIr%y@YBNiuyOrI_R)}sX~tyyQ}K%MywKBW3F(3u(L z9qg#6*%t{RB5BAVm^A!g+uuNdfs>i{{5sI3_GX=n?%Si3enQ{DC$MaBstcNsVpeDCz;@a59JV9* z&q_fBqC68l=i|DrrdFcFEQ0Oq^co`gnyR^Vp~pVFT3D1wEqUF+^AnU1A5NQ+a^GN9 zWnxiRb`vTbzS=-_U4cUuI2c zwGh11D5iR~iqDhmIGmK>J`~am$+LB^3)A=ebJTIbiro*l+yY#NZC9M?H%dsv2w1DX z@B)%gM7vd_#3qseRi%{YGPrsrjn=RFbDYda6dtX0IuFr>^Y8PGW47qabWss3a<_Cb z_E5DoLq*l&o)yk_9Y#9`v%kuLRr6i}%To%RKz+|cpbIu@#B;cHn;b@HiI_AmisldQ zbTgIdFM)OwFNeQr{T2my%o{!H+|lAZ45O2Imr+tznCTi2SMUClvCA@MV9WENSyDfy|n1GkP03gT>>JZ8zo@!qgG#+uD>Fq) zxypDFT;vQx<#!g^gZE%J6&P^6CKhAOjAFTin(dzf=RFl+svBc`IRPby4$F^f&f=Aky&Ge?dpoLq3|*=2SA z^t~jI&ARB~>L-Z_VWvx|m_LB(Bs~ESU!U*`mKPN(QRN|!zbKA-UW&%!YEu5iuFnMd)7;s`}U-zSy1&>xi zxef|H2xKwqYS=^~aV)=c@6>$mYP=ck1LOo^!J%VsdGFdKWqtMOrJ8Nyx`&=v>^!ZShl`+#wmcuBSrPRH%rga+ZDT6DXn2XGoQXW4V+fe?>s89u#aI_ zhQt2HW(kBdc$InN92TfO_eQ3g*0bnL9_X0iE8vm3Ka2UnPc7lFoJX!V{}4=BWTiRC zBrR06sduazQ)3M;atU>vxj5-D^^~soW1AOj3dmCYwP)RYK+WL$-tYVPfqnLY!{GeD z;Rf!nmIppDu@a7^&aG_EfAAl%ht8iUUa@ZBl;{L zS@=Fz5T1no*>1^g7|}GjcH22b7&qu(;6WoJnr@Mz(nau;m(C?`3L+7HXQt7+4RQf) z1I{xYDc^!DHlUdmn#U%Yf#czOQR+D$f3R%Y1zVgO7Avb75o=6~brMy~Gra4%x!C`9 zn@`#3un;H5!SY|$AUung1c{Nw>S*O#v&#^p{}&7?p|t=2 literal 0 HcmV?d00001 diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000000000000000000000000000000000..8aed981784bd5b5ce15a5ddc6e8f9f318b3f166c GIT binary patch literal 98100 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 CGbsQ7 literal 0 HcmV?d00001 diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[2].png new file mode 100644 index 0000000000000000000000000000000000000000..71a0b83bbac42b11ea2684cc7ced5c0774c998a5 GIT binary patch literal 106517 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 literal 0 HcmV?d00001 diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png new file mode 100644 index 0000000000000000000000000000000000000000..d2bb13bd9fcc934ffcf1c6c05014b077aa2cd6e9 GIT binary patch literal 9856 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 literal 0 HcmV?d00001 diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png new file mode 100644 index 0000000000000000000000000000000000000000..69541dd3d7313e8602752bb68083d0ed172c8416 GIT binary patch literal 10671 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 literal 0 HcmV?d00001 diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[2].png new file mode 100644 index 0000000000000000000000000000000000000000..2b9398620905cd875a71e555411efea266b721ef GIT binary patch literal 9886 zcmdUV2T)UK-!Cq^vV~#+L1{`iv_*sv>bi(D0V7C}07{Dp1OX`_5OiG?h=78CbVW*# zCW({)0aSWIq9BA`14s=>Z^=ENuI#?=ci(U3yEFIR8HX{?dH(J9?`KZ<1yg;lpO5{_ z#>U2FXmIu-8yh=_jcwoAANK<%P1u$?Ha002!?R~B0()lr*K35ALqvzR*k_u4{Qk1F z+@IEUViMoG9z105o#&6Uaxrp0N!+%Sc=p4-qCmr{KO2DTIlr}SCW7eh9p2%qr|LNTQlXRQDV`_Z`#!q1SRHs{h zuXUr3!UXWIiI5^b5n(hLnfLvbo|8Ee;7flL*VT$FI|?^eMERjR*|^Y<1Yd|gWlRWS zWwBA$)zXp%b;~p6`gB`lt6lb}nlCR;F!1=%&KCUFQ{sokSUy#DK_dmno1wjFwweOE8;OsKu2tWQ)539_qU z#>H}DGl(QX_lcXiv&+=UoR-h$yPA6|&pm6w`O>95)ReCA$!L9T0LSMYjgfEm!S1?hk}YSF@pW?gMkSJtR+_ z*j~QSZ0>CI*~ncWD*P?8&L|wY;BzGLm~96B@HajX*L(Owyv{-46w{_XVr{~+{xCcv zW($uSn)wq@{P@H>MF3E;mTC0kt5H6H?q?{^9DE9~LcZ;WuH>iIkCgVFYJe9Zi6w%2U+G3Ku$cQEH?+m;Nv9ltuyoehWDgWQVqr@$fb7o~ z3$X(80`t3Y+{wtm-VzoBP}m8x498lh+RqM!$bce#?kc_wKo7)T#J=c#il5`qC+aIn z)9#)9Re$6AndA%Gzhd_bJ>)aV&YfLdWI_8iztaDu382eg3hwFxXadmhDEV(C{(ol4 z0msJuJCPm{k@3ejOjG`X;`qc;GA&{MV)gE6i11yZ)(K-Zpk{vz8;K zNR##Zr!8fwglKn}PIqX#2dOb?CqC&g;E!JYEk=RgVJWH5`S&@oG<%f%`a*Olj8;~? zHAa6|uqdafp$Y{3=jz4BULDA=CV;344I! zA1&6y#8^d(cuo(=&#tC#gpI))rM}hFh<)ibl~ir%^%Yvpz`|?WFk?6xIcpdHTsS#} zv{Q9~Bmq1VTs`994d(FDtzK<2Zf^Kxz{95J?}8@83yG|}1P77MeXzBmDB<{=e{j&| zrY7sm+yT?(d;dW>l}p_8f!x}hg6p^=|Ano{jfBR1ebLpd5K=n;+1L(X02q9H>;s9e z?DjhcXDDZ&PzzWkqbCFa>RTh=48)%}IuGRFZW_8o19{8&a#-78MA0Gm{i5Vd7l1xc zD0hpo($FHG*$fj?6jG3PrwjnhM8vMV$>)_*tncoH&u*d)jvB{X@HD7v-9oK|OUvo} zUEbPAmDAV@I>#W>-5lfbFq?lDN)bVvPht8AWv335Ki8Q1Xa-;V3)afEwQ%J`t9H8OX)}=J0 zH1ydZAznVcA7;9K1F+eRuf|(DR_;OvKvf&XMHiy)-T@HY#dEh|a0Y%R*?|+dv&ZmV z`aT@c0KSrch3%_E;NjOtfI3zdynLKH_4^yX#ZK%H4hV;y9(13E>K9#h+$gfE!b9H+ z0Le?>&X+FE8Tgg{3&}&@hdb^0n~g9E^b5&nwy(e0xXV{Vb%*3LTird1>}vd%COb_3 zfe}gMvy%Tt;%6|w!8gZjcF&tmg=&VsWD%@3ye1_ z9*Mu65ts}wh|33p>96U@b}m^B3LI}rnf(2>+A8d7rnG8WK-!*0_6k1u%I%GT*-XvW zPT&9PMmK8vBEN*JnYzvKlOLwcO$%KA)@5-4<79d&#q`3<00(au9IAoyZ?x<1w8X8( zG1k8Ak4I3&GCDmyNn!#ON0_x!}QoP%3%wig~=a&d6Af8oss+=2y70> zeRMM+Bj!_DH$IkL+!(tGL&nvfk~2GBQ<0SAP_b}skHtsRltK0t3?`kyqZ2cu!TRoX zmMq7BCS?7-ew4&u-z!4W$-TErF;s00q#renp0l|sts!lC=!!bdy^YX3&7+ed)KAn% z^y#$OV{S}(uasF~TIyQ&v$q{ZZ@y3TuThO8pY=yTSl{j8+dNpEsGLWex~p>;ciINo z*8IDPovfL*B=TxEZWP(=x4hR$Cn@4U0}7U8c2Mk^V`=0=H?9Y-^-RY+uk;tCHb1k$ zf2lP)DU%f#V1HU=eUf?KeLs@}#2$KAnU7tzbNl`&_HF6S6={r=gUr{N3Fsn3<&Zaj z(owc$!VZMtj($`OwXgcu^?G9k6U)@#h}*xm)T^U=vl1?Ku4m9ow0Jt4hc#?VrL3Yv z{~EjiCgMY{+GC{0$+?sV5AC~k?O|ow>#Y#qSchbYGIDFgIA#{;qwc0!tyd6TfB=;CIGEs89VS~$$hIAe#;^9{K6BD>^BjE$=VndXPwtw$zGnGfQQ1H8R zHR+=2DO($!WtZ^B_t=qj$RUxqI-VTMszMN7>->193K!*M*Jyq#hpUN}wbO2Pmx4m< z5@BcG$*Jq3Pf=vqQ8QU7gUun16-YGyB_MYA!r5juJ=}^=+t~5`A+@$ zQ*(=Kk>*^L_vpDx_6o;zs>c^oQJpsID)zW^))urB9VzN@=YmC3eSvw7RA_~tZH(qh zpe}3T-7~s_9PAo$VSg+YBE7ykO{2B8di4>iEJEEkyf$k`B(v-bZHtJd;|#mtZkOjE zaB>kLdwj9qzgd!91%XQs?H)_$O%u@R+OH&|C#kyOKwvRP2guQ7ENj(K<&a2i zVCId<#;~^MZ_@>POD|D{z^K`VmfyB(^hG=`U%a=q@}gtE{(Vxwhx8I59c?6%F>o(2 z-0M=yD^uRMVZunCZ>;_V#e_NAA0Qpd99p4=&JH^CqpM1R+M*aRgFVu@c4Xy^5z_DB zQ>=iF3`hpVm7?tLv21&53H%+rdeX#>NRvD)CBa(z=+rnkUBf_PU!|j%_53u>sv^(s zp81jlv!usct*>=eilV7U643RMno!C}tvL5@BZJ)i!Hcy#4@~13$JgFux2ljvD>VWv zf2kd}!N;uj`P-UtbF14(M;HYtsBO;B%Pb3wn8QtvN=>iVO-EV$9C_z^z52B?&@)iC zp#WN8!B4~4MlzMi^fGF))uMKd&*p5_Ho5G4>gB~Uv>z${UeWe^Tb4>ue5N@SC;lr^&0~B*S|H;?*|cUScg^5Rj6GVb<4E-(w4{u)&^J4o1tA5@u?mPZLt_I2P0NWtTf>Jj}mj$mgqeN%B zW4Av2@k2Aw${`hIZqo_3;^uZtY;?&?x5ullhem7nbdH4r+errYv9BmtCfy2{YmA2D zKD=I|a_e05>`UF+iknEYJxtf>4j#l>D|nAZK}5~cMUI~U367#U*r!s=%`s)gi#+0G2{{9I?FRlZvF%!s|Tp36<)YxSyPTJO*Gg`Q@Tm3ue3E3?hK);&uB zWo1As-Vr~uJ6Pa2=-$48(mJ9V6T`vc=9b>M=Yj}ALbZZpd~w6;G+9d!==s`jvehmo zET$>Ee6wx5RRv6gODpe;Q+oBNj!o5&qgR<(a@m;=T zC0Rr8aq;_^Dx;=@UK^eoTqxE^kPav<)~y(R^NTy;XUzRek-1x}esJG~RJW7a>;(bM zmaw)sCSgtE9#h^`|JVjgDb;-gzkQ#}t6-f_MoF<*teyqSYCa$dun_DZp&ux{U-$$-GfmgUcx?qcdFe^v#obr|FI-d+$2l)_5r?TGpb+@Wd zW@9-6N5E?Vc9Bg`_ItRzF4gWDqAh4(P5FHkN(9Ql;5H>rFA{xKjl2ZvA(iEi@4 zlWL9$OYlA#tD;>M=`AtE7Kdl$J;Bo>MZB zeY;+@UB%`2m@jU|qz2Vn6)dYEYpKDJwJ={-(^X9z^H8G}+Qgo}=5tifpH0v01$dFd z==Y-ux)Pfx^p20U&tl=(H+^+Tg)RGK{Eru)tvon;kaKTr;3?1$w5~=dE3~IPcjG~{ z>)^u@9DyR|-5T$ug_q@+4qd6eBOgk8AF}xZEFKVaE40GW z1P37*UV=iUjdUt+TvdZlXD@%=xf!RxzA@ug{QgX#7q-gy;%&z< z-!gTBCJmBa{@bcjcYsdq%tN&2`J*}~?=PfGsLgb&5d7H)hF4p zdG_ktRofL@j=V?W*3^I1VzGeMbA9pLR!C#0)MdXsn!YSrYY`UXT3znu>!<&o@)TYC zI(F3Q=kZfV;sO-Q3!b~3canORdsymp|Fec560>hmSQ{q)-EurCWs)o+vxLL;DS7q? zB0vZ!|CipswKX>|pOfNCwwcrdTdRnS7+QrK4oio`C-*OQl6e9cM~gFjBz%2xV!fd4 zgE#BR7+oB`*ag4EvD%mH9*?oUk3`UV zg;c~>MHszL$M-uW*&m5R1C7WCV-$9Q>+T6k!+AvUv*^gn>c5Fz#=V-H9z81VZD_Uu zN9VLXWaPeDT#Hb4<-sVAJCHSxD^{1d!7s3Uul87N%R!Hfkyt8vRaTEnBei?WGfULVu)h2$D(wX>#c?_~H{V@&xDWujN2CSijh7O)WKvqE-C zqYe3^qKyWoPcbrLR;@)2acoY~SliO}hC%HuM$#}h1x9>cnyQX?o1^ix9P0V{#Dx%W|A+Y=M)@-xVsT_`sq(E6 zw}pc2{lb$Ohrr|pm-CbCU5O^~{jr|pmiW{I&pNE$dUIXdn7Q)2$Q&aF>MnW}01FLy zyZT@vI+J7sn;!Uh2oppI4C+o*;ox`EkgWl4_eA#9sFW2xA)Uya9X>x@rYpA zxzLHqsT2ak1sc8_!|Znox}l6rv!S4bj}+UvU$W?=K7smP;jO9ZKx2CiT|f0?A1N^< zokB-+sq#X&E961Mjg(oT_N5B!V?V(wg)wpYO+Asff))joRoIXS3T zEd+M zDq>oa$cZ&@+AAhVV-pNk4=Y@~?(k;d`s%BuFoxqzM@2L>TB^Ta~{aLT!Z4 zRiNr3jLsJ-Eult}U)z&|;;eR}T+f4+#22>~FSQM>*HWSp*IVz}^(4?#OR#>I?=6^r zD1FxC83f)ew-2G1N=Z*$f}UJd4cjLJ>Lwk{7*?%FIe~hL%&ad{oLr5ZKG=)wtX<4C zeqUYVYem}kVP*!J7-0m{{&lHB;9d7gL)+QYPX3X@g%dL_s7S;`#TVGR^Y)Xi#RPHQ z5(K8j=iv0qu-VJcGjLCFLLOSgSLacc2xJ0D=v1ic8 zqn`ar$MqyNerfHUXwBQKP-9O^qo}2ZBPj=4}^U!C^D0<(h-9xn>wxy3+OlxHC~5mki5fP=g4O zh9_DqEP8AbkVoRg8hi{A-YLF(`y$^MzqmL&+u+Tz@G!Ma<#aR*HNWH^-=K}7dQ?cg&y0gQ@x_!~Uf zI166kCZT~MFULx+hCss!jlC!TK-#tN(`*{c92UwNP2zMpzE8I%T(660d1V-Tow=Pb zPGxN5j}@wi27n0$p>G$Be!{fept;!VWnqhj@Z~ps)882!iKBY-oWPK|J=V6Yq&T$dY(eo6H7|0H&h?ec0kaL0_4fj02ZfP-6 zt0a7H#s!jm>b2*x2WD;EG&|2jqVnKuV@8bDbZJ5J%%%Q_MBGRNer=p5n-fr z{H`J~Hh*fCO1ALBo;l?W}?3_UEH{13iNC@ef*n`uIhm z31{w`0V+*SK%fWp-xE{Nl@Z&igc+sok=f@8QY-wt6nL)BcBqzwea$Biy)2J(yeP)# z5$WN+lb{o6FKrpFShXQTv%`Ymvn4@Al8Ge0k)FCI(0ubUS6Ap{BT(^fXFCM2@@)tO z_@zi!T^=orv|Zzwv#?*%&<1S=1J7~4;ve;Vc%3reT{A%}>(>ThcFK5B#>EfTQG~U2 zMr969L`$#osxjX}C8lX7XRx!E@o=?FmPYlgjH57rv5CB6YW&qL-V#q4Tjm%3S>ef?h(!scQ!Oae2zVi)BGn|5=J= z;(EJ#r)sJnTmsXgk~r2wIi0QRxbc38D)IuqwL!%47Aq`*Kzfm5xrr#D0ZWL0917Yz zpx7}tm_mH4L>z4$Cxm^8u?|^K^q`ONa&nXx0yV_N(xEQfe)z9&1cAJ-#8zKLe>{}D zglF$b6;V)-Bx%=PyMQs8x#AR`RF$9?v_B)T+9Z$TY@{_0n0@@RH7oa}@8`4JLLv%UH?9_US?+biB z=XOni|F5>~vZ&RL;8rkJPck#TX<+J1;$)4aRwR5SXpL3j9-zU#Gjk zG(9*W%+I>czn~*_l0n>kheIn0Xn!oBB|Rl zTQyL?SxeNeG(Ru-DMb{la8$V^!pK8l%FdE@KKQxH(uNwQ%i~?+wqB}z4{bW*Py#B; z0k7;UMR>nqVD{zkN@1YHqQtzvl#SYBVi8X**$6_}>$Fm$r@4?sso=sy1#Ie}G)0KU$E00gABvd~5a5K(ZJYd5sjKH+rK2K-4 z+m?22!BYC?E`6!|JtslSb5;--U9YU;wq;-b(P@>rJksXA+g29-<)J9-%K9&}vv68O|1 zZyN)TS1eM9wm#zBkJ4~xZ*U3Jf!rA4V(@FssPzhf@2Dn6Z*7}UUepafLVLn0wN4wq zzo$+${z!kShEi2$4!~*o5Oiyh(D%-)l_z4StE)u{03`ep1E9?)Ii7G7uj97sAeeh5 z^tsQxXm^;fyEG3QCb6UqJ~u)R7)ao*i*3QXNTT6=S6H@rmY2#nsF&jPVVKnIWY*2; zQs>}1@Rz))J3Hn;Z;3y~h`4!4O#dyi)C3p{07wpw!ZQI#1UORXcE*Cr_stWtWk8d) zw)owjvSC(WubjV1vN!J|(_{s^g5Y$Z=yKZO=4X;hJmv3q6@xXdagvJ4Gsg2+=SK2< zQlQ47RU!Uw@7-fm-t2ibb(9*!@VoW|&Tu-KDeZYp(!ac5F7g-`6)?^22-M<}5UCpl z9yxW(UmKO;;_mlUMbTH(P-X;oyF7=Xk6O98REz71SFO~{;oljS#|d`Rnb<$O=CU0I zDJJv8f$Sqh(?t;-abh~7{?znMQLAifcciJdmk#2NKy8N4m6e&Kr*+)Oa>h}O6ktL= zZ9THlW0{b!jDjA;ZM?{P0k@q_C1QjfVAK6`9>1G6M4M?>-E{kust!kt2F;hJT>V%p z6XGgQ*`Fh7Z^=mfZZg*zXg8BC!U?1;VBZCAMXe=m4EBeZEkBqvpdM(?+iB!-FR*l# z_-Q+RVV+J5X&;`!4|%{otcDVzjg_gti@S-(k=(<_fTS49CYh)nSS=DtREBra5~GhGi%95Wq=fTNF0|Te zzEd2iNha6tvmt{H({!R|-{UZ!guzXXhi69Hvekz1xwv*OfAf`Vc00T7gSP|G>1VpB zJiwa^uSR8JPmYF^#m+ZO|LNnS|Na+E|LH~cx9^qylg$4cFVBY}nK~i|e!Az%Sp5jV P!e*#vdbaTQD}Veitq?(m literal 0 HcmV?d00001 diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[3].png new file mode 100644 index 0000000000000000000000000000000000000000..276433e7994eb9ce4c652848c783f3a16af31d1e GIT binary patch literal 10361 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 Lu9p37_ve2BRmyjS literal 0 HcmV?d00001 diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000000000000000000000000000000000..aa0cffbb26cd28dc26bbc73ed9f381d394f12b91 GIT binary patch literal 10363 zcmb_?cUV)|_BM=HaU7K*MHB>-A_1g{pj45F0)l~1q$&s~RfzNwXHYtVK=f|8o`0O`YJvhL!*xMJ`Z1n

D|#x(Tmk-Rq=uMQrO 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 PJG+};eXTOhyTAQETo8&4 literal 0 HcmV?d00001 diff --git a/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-orange-compact/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000000000000000000000000000000000..66974414fed793614b1ed053bb4c6c6fc62899c7 GIT binary patch literal 10859 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

Pj|= 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 literal 0 HcmV?d00001 diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsBulletListTest$Rtl_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000000000000000000000000000000000..f7b501dd89cec9381dc97a0e8dd6294b79f7edda GIT binary patch literal 122392 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�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

JFW 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

=O8`I-gOV^PL}Ajkk9<=PH*AxEXo?Qtzo{^ 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 E1tbJXq5uE@ literal 0 HcmV?d00001 diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[0].png new file mode 100644 index 0000000000000000000000000000000000000000..aa341b26171275b72d529d843c4ff8e34f7e27ee GIT binary patch literal 9167 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 S?*&G$I(y3SWY%%y&Hn?b03EXc literal 0 HcmV?d00001 diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000000000000000000000000000000000..61412d90f2d4c02794c116a0b00651326665ace1 GIT binary patch literal 9672 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 literal 0 HcmV?d00001 diff --git a/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-orange/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000000000000000000000000000000000..80e4b99a992636476df88bd30526ec37ad763354 GIT binary patch literal 9433 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 literal 0 HcmV?d00001 diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeDarkThemeSnapshot[1].png new file mode 100644 index 0000000000000000000000000000000000000000..33c1d03c2ca096d0a8d679f945cbeddc6344c6cd GIT binary patch literal 14787 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 literal 0 HcmV?d00001 diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[0].png new file mode 100644 index 0000000000000000000000000000000000000000..02915f3c6482ff814d2a5f4e8484b218ccbe87ec GIT binary patch literal 14278 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 H`u+a_F&nu4 literal 0 HcmV?d00001 diff --git a/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png b/theme-wireframe/src/test/snapshots/images/com.orange.ouds.core.test_OudsPinCodeInputTest$Default_takeLightThemeSnapshot[1].png new file mode 100644 index 0000000000000000000000000000000000000000..291d803254c22eac2a7ec6da3d8ff7180d7e7513 GIT binary patch literal 14467 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 Date: Wed, 29 Jul 2026 15:54:56 +0200 Subject: [PATCH 17/18] Fix iOS build errors --- .../ouds/core/component/OudsFilterChip.kt | 13 +++++---- .../core/component/OudsNavigationButton.kt | 1 - .../ouds/core/component/OudsSuggestionChip.kt | 15 +++++------ .../ouds/core/extensions/ConfigurationExt.kt | 27 ------------------- 4 files changed, 13 insertions(+), 43 deletions(-) delete mode 100644 core/src/commonMain/kotlin/com/orange/ouds/core/extensions/ConfigurationExt.kt diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFilterChip.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFilterChip.kt index 253e583def..d5ba460695 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFilterChip.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsFilterChip.kt @@ -66,7 +66,7 @@ fun OudsFilterChip( enabled: Boolean = true, interactionSource: MutableInteractionSource? = null ) { - OudsFilterChip( + OudsFilterChipImpl( selected = selected, onClick = onClick, nullableLabel = label, @@ -117,7 +117,7 @@ fun OudsFilterChip( enabled: Boolean = true, interactionSource: MutableInteractionSource? = null ) { - OudsFilterChip( + OudsFilterChipImpl( selected = selected, onClick = onClick, nullableLabel = null, @@ -170,7 +170,7 @@ fun OudsFilterChip( enabled: Boolean = true, interactionSource: MutableInteractionSource? = null ) { - OudsFilterChip( + OudsFilterChipImpl( selected = selected, onClick = onClick, nullableLabel = label, @@ -182,8 +182,7 @@ fun OudsFilterChip( } @Composable -@JvmName("OudsFilterChipNullableLabelAndIcon") -private fun OudsFilterChip( +private fun OudsFilterChipImpl( selected: Boolean, onClick: () -> Unit, nullableLabel: String?, @@ -219,7 +218,7 @@ internal fun PreviewOudsFilterChip(theme: OudsThemeContract, darkThemeEnabled: B val label = if (hasLabel) "Label" else null val icon = if (hasIcon) OudsChipIcon(Icons.Filled.FavoriteBorder, "") else null PreviewEnumEntries(maxEnumEntriesInEachRow = 3) { - OudsFilterChip( + OudsFilterChipImpl( selected = selected, nullableIcon = icon, nullableLabel = label, @@ -239,7 +238,7 @@ private fun PreviewOudsFilterChipWithUntintedIcon() { @Composable internal fun PreviewOudsFilterChipWithUntintedIcon(theme: OudsThemeContract) = OudsPreview(theme = theme) { PreviewEnumEntries(maxEnumEntriesInEachRow = 3) { - OudsFilterChip( + OudsFilterChipImpl( selected = false, nullableIcon = OudsChipIcon(painter = rememberRainbowHeartPainter(), contentDescription = "", tinted = false), nullableLabel = "Label", diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationButton.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationButton.kt index 83260bbf5c..cb6c2073b1 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationButton.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsNavigationButton.kt @@ -16,7 +16,6 @@ import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.isSystemInDarkTheme import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource import androidx.compose.ui.tooling.preview.PreviewParameter import com.orange.ouds.core.theme.LocalDrawableResources import com.orange.ouds.core.utilities.OudsPreview diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSuggestionChip.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSuggestionChip.kt index d0d1f7a8f3..a891217802 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSuggestionChip.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/OudsSuggestionChip.kt @@ -66,7 +66,7 @@ fun OudsSuggestionChip( enabled: Boolean = true, interactionSource: MutableInteractionSource? = null ) { - OudsBasicSuggestionChip( + OudsBasicSuggestionChipImpl( onClick = onClick, nullableLabel = label, nullableIcon = null, @@ -114,7 +114,7 @@ fun OudsSuggestionChip( enabled: Boolean = true, interactionSource: MutableInteractionSource? = null ) { - OudsBasicSuggestionChip( + OudsBasicSuggestionChipImpl( onClick = onClick, nullableLabel = null, nullableIcon = icon, @@ -164,7 +164,7 @@ fun OudsSuggestionChip( enabled: Boolean = true, interactionSource: MutableInteractionSource? = null ) { - OudsBasicSuggestionChip( + OudsBasicSuggestionChipImpl( onClick = onClick, nullableLabel = label, nullableIcon = icon, @@ -210,7 +210,7 @@ fun OudsBasicSuggestionChip( interactionSource: MutableInteractionSource? = null, content: @Composable OudsChipScope.() -> Unit = { DefaultSuggestionChipContent() } ) { - OudsBasicSuggestionChip( + OudsBasicSuggestionChipImpl( onClick = onClick, nullableLabel = label, nullableIcon = null, @@ -257,7 +257,7 @@ fun OudsBasicSuggestionChip( interactionSource: MutableInteractionSource? = null, content: @Composable OudsChipScope.() -> Unit = { DefaultSuggestionChipContent() } ) { - OudsBasicSuggestionChip( + OudsBasicSuggestionChipImpl( onClick = onClick, nullableLabel = null, nullableIcon = icon, @@ -306,7 +306,7 @@ fun OudsBasicSuggestionChip( interactionSource: MutableInteractionSource? = null, content: @Composable OudsChipScope.() -> Unit = { DefaultSuggestionChipContent() } ) { - OudsBasicSuggestionChip( + OudsBasicSuggestionChipImpl( onClick = onClick, nullableLabel = label, nullableIcon = icon, @@ -321,8 +321,7 @@ fun OudsBasicSuggestionChip( private fun OudsChipScope.DefaultSuggestionChipContent() = DefaultChipContent(OudsChipIconPosition.Start) @Composable -@JvmName("OudsSuggestionChipNullableLabelAndIcon") -private fun OudsBasicSuggestionChip( +private fun OudsBasicSuggestionChipImpl( onClick: () -> Unit, nullableLabel: String?, nullableIcon: OudsChipIcon?, diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/extensions/ConfigurationExt.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/extensions/ConfigurationExt.kt deleted file mode 100644 index 2cf1404668..0000000000 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/extensions/ConfigurationExt.kt +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Software Name: OUDS Android - * SPDX-FileCopyrightText: Copyright (c) Orange SA - * SPDX-License-Identifier: MIT - * - * This software is distributed under the MIT license, - * the text of which is available at https://opensource.org/license/MIT/ - * or see the "LICENSE" file for more details. - * - * Software description: Android library of reusable graphical components - */ - -package com.orange.ouds.core.extensions - -import android.content.res.Configuration -import android.content.res.Configuration.UI_MODE_NIGHT_MASK -import android.content.res.Configuration.UI_MODE_NIGHT_NO -import android.content.res.Configuration.UI_MODE_NIGHT_YES - -internal var Configuration.isNightModeEnabled: Boolean - get() { - return uiMode and UI_MODE_NIGHT_MASK == UI_MODE_NIGHT_YES - } - set(value) { - val uiModeNight = if (value) UI_MODE_NIGHT_YES else UI_MODE_NIGHT_NO - uiMode = (uiMode and UI_MODE_NIGHT_MASK.inv()) or uiModeNight - } \ No newline at end of file From 005271d28dad2220a07071e109ba8a36bf7faa59 Mon Sep 17 00:00:00 2001 From: Florent Maitre Date: Fri, 31 Jul 2026 15:35:09 +0200 Subject: [PATCH 18/18] Fix Maven publication --- .../kmp-maven-central-publish.gradle.kts | 142 ++++++++++++++++++ .../kotlin/maven-central-publish.gradle.kts | 6 +- core/build.gradle.kts | 1 + .../common/text/OudsAnnotatedString.kt | 42 +++--- foundation/build.gradle.kts | 1 + global-raw-tokens/build.gradle.kts | 1 + theme-contract/build.gradle.kts | 1 + theme-orange-compact/build.gradle.kts | 1 + .../OrangeBusinessToolsTheme.kt | 8 +- .../theme/orangecompact/OrangeCompactTheme.kt | 8 +- theme-orange/build.gradle.kts | 1 + .../orange/ouds/theme/orange/OrangeTheme.kt | 6 +- theme-sosh/build.gradle.kts | 1 + theme-wireframe/build.gradle.kts | 1 + 14 files changed, 186 insertions(+), 34 deletions(-) create mode 100644 buildSrc/src/main/kotlin/kmp-maven-central-publish.gradle.kts diff --git a/buildSrc/src/main/kotlin/kmp-maven-central-publish.gradle.kts b/buildSrc/src/main/kotlin/kmp-maven-central-publish.gradle.kts new file mode 100644 index 0000000000..465049223d --- /dev/null +++ b/buildSrc/src/main/kotlin/kmp-maven-central-publish.gradle.kts @@ -0,0 +1,142 @@ +/* + * Software Name: OUDS Android + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT license, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Android library of reusable graphical components + */ + +import com.orange.ouds.gradle.Environment +import com.orange.ouds.gradle.MavenCentralPublishPluginExtension +import com.orange.ouds.gradle.artifactId +import com.orange.ouds.gradle.isSnapshot +import org.gradle.api.publish.maven.MavenPublication + +plugins { + `maven-publish` + signing +} + +val pluginExtension: MavenCentralPublishPluginExtension? + get() = extensions.findByName(MavenCentralPublishPluginExtension.NAME) as? MavenCentralPublishPluginExtension? + +apply { + if (pluginExtension == null) { + extensions.create(MavenCentralPublishPluginExtension.NAME) + } +} + +afterEvaluate { + // Register dokkaJar task if dokkaGenerate exists + if (tasks.findByName("dokkaGenerate") != null) { + tasks.register("dokkaJar") { + dependsOn(tasks["dokkaGenerate"]) + from(layout.buildDirectory.dir("dokka")) + destinationDirectory = layout.buildDirectory.dir("outputs") + archiveClassifier.set("javadoc") + } + } + + if (pluginExtension?.enabled == true) { + publishing { + val groupId = "com.orange.ouds.kmp" + val baseArtifactId = pluginExtension?.artifactId ?: project.artifactId + val version = project.version.toString() + + // Configure all KMP auto-generated publications + publications.withType().configureEach { + // Override the groupId for all publications + this.groupId = groupId + + // Add "ouds-" prefix to all artifact IDs + // kotlinMultiplatform publication gets the base name (e.g., "ouds-foundation") + // Platform-specific publications get suffixes (e.g., "ouds-foundation-android", "ouds-foundation-iosarm64") + val prefixedArtifactId = if (this.artifactId.startsWith("ouds-")) { + this.artifactId + } else { + "ouds-${this.artifactId}" + } + this.artifactId = prefixedArtifactId + + // Attach Dokka javadoc jar only to the main kotlinMultiplatform publication + // Platform-specific publications (Android, iOS) don't need separate javadoc + // since they share the same documentation with the main publication + if (this.name == "kotlinMultiplatform" && tasks.findByName("dokkaGenerate") != null) { + val dokkaJar = layout.buildDirectory.file("outputs/${project.name}-${project.version}-javadoc.jar") + val dokkaArtifact = this@afterEvaluate.artifacts.add("default", dokkaJar) { + type = "jar" + builtBy(tasks["dokkaJar"]) + } + artifact(dokkaArtifact) + } + + // Configure POM metadata for all publications + pom { + configurePom(this@configureEach.artifactId) + } + } + + repositories { + maven { + val releasesRepositoryUrl = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/" + val snapshotsRepositoryUrl = "https://central.sonatype.com/repository/maven-snapshots" + url = uri(if (isSnapshot) snapshotsRepositoryUrl else releasesRepositoryUrl) + credentials { + val (username, password) = Environment.getVariablesOrNull("CENTRAL_PUBLISHER_PORTAL_USERNAME", "CENTRAL_PUBLISHER_PORTAL_PASSWORD") + this.username = username + this.password = password + } + } + } + } + + signing { + val (signingKeyId, signingSecretKey, signingPassword) = Environment.getVariablesOrNull( + "GNUPG_SIGNING_KEY_ID", + "GNUPG_SIGNING_SECRET_KEY", + "GNUPG_SIGNING_PASSWORD" + ) + + // Only configure signing if credentials are available + if (signingKeyId != null && signingSecretKey != null && signingPassword != null) { + useInMemoryPgpKeys(signingKeyId, signingSecretKey, signingPassword) + // Sign all publications + sign(publishing.publications) + } + } + } +} + +private fun MavenPom.configurePom(artifactId: String) { + val description = "Orange Unified Design System for Android" + val gitHubUrl = "https://github.com/Orange-OpenSource/ouds-android" + + name.set(artifactId) + this.description.set(description) + url.set(gitHubUrl) + licenses { + license { + name.set("MIT License") + url.set("https://github.com/Orange-OpenSource/ouds-android/blob/main/LICENSE") + } + } + scm { + url.set(gitHubUrl) + connection.set("scm:git:git://github.com/Orange-OpenSource/ouds-android.git") + developerConnection.set("scm:git:ssh://git@github.com/Orange-OpenSource/ouds-android.git") + } + developers { + developer { + name.set("Pauline Auvray") + email.set("pauline.auvray@orange.com") + } + developer { + name.set("Florent Maitre") + email.set("florent.maitre@orange.com") + } + } +} diff --git a/buildSrc/src/main/kotlin/maven-central-publish.gradle.kts b/buildSrc/src/main/kotlin/maven-central-publish.gradle.kts index db07bd9541..60bd968e2e 100644 --- a/buildSrc/src/main/kotlin/maven-central-publish.gradle.kts +++ b/buildSrc/src/main/kotlin/maven-central-publish.gradle.kts @@ -16,7 +16,7 @@ import com.orange.ouds.gradle.artifactId import com.orange.ouds.gradle.isSnapshot plugins { - id("com.android.library") +// id("com.android.library") `maven-publish` signing } @@ -68,7 +68,9 @@ afterEvaluate { } create(MavenCentralPublishPluginExtension.VARIANT) { - from(components["release"]) + // Use "kotlin" component for KMP projects, "release" for Android library projects + val componentName = if (components.findByName("kotlin") != null) "kotlin" else "release" + from(components[componentName]) this.groupId = groupId this.artifactId = artifactId this.version = version diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 53935fc890..f3df54297e 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -13,6 +13,7 @@ plugins { id("dokka") // id("library") + id("kmp-maven-central-publish") id("paparazzi") alias(libs.plugins.compose.compiler) diff --git a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt index 712021510f..033232f1e6 100644 --- a/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt +++ b/core/src/commonMain/kotlin/com/orange/ouds/core/component/common/text/OudsAnnotatedString.kt @@ -213,53 +213,53 @@ abstract class OudsAnnotatedString internal constructor(annotatedString: Anno /** * Appends the given [String] to this [Builder]. * - * @param text The text to append. + * @param value The text to append. * @return This [Builder] instance. */ - override fun append(char: Char): Builder = apply { builder.append(char) } + override fun append(value: Char): Builder = apply { builder.append(value) } /** - * Appends [text] to this [Builder] if non-null, and returns this [Builder]. + * Appends [value] to this [Builder] if non-null, and returns this [Builder]. * - * If [text] is an [OudsAnnotatedString], all spans and annotations will be copied over as well. + * If [value] is an [OudsAnnotatedString], all spans and annotations will be copied over as well. * No other subtypes of [CharSequence] will be treated specially. For example, any * platform-specific types, such as `SpannedString` on Android, will only have their text * copied and any other information held in the sequence, such as Android `Span`s, will be * dropped. * - * @param text The text to append. + * @param value The text to append. * @return This [Builder] instance. */ - override fun append(text: CharSequence?): Builder = apply { - when (text) { + override fun append(value: CharSequence?): Builder = apply { + when (value) { // The append method of AnnotatedString.Builder preserves annotations if the CharSequence is an AnnotatedString - is OudsAnnotatedString<*> -> builder.append(text.annotatedString.filterSupportedAnnotations()) - is AnnotatedString -> builder.append(text.filterSupportedAnnotations()) - else -> builder.append(text) + is OudsAnnotatedString<*> -> builder.append(value.annotatedString.filterSupportedAnnotations()) + is AnnotatedString -> builder.append(value.filterSupportedAnnotations()) + else -> builder.append(value) } } /** - * Appends the range of [text] between [start] (inclusive) and [end] (exclusive) to this + * Appends the range of [value] between [startIndex] (inclusive) and [endIndex] (exclusive) to this * [Builder] if non-null, and returns this [Builder]. * - * If [text] is an [OudsAnnotatedString], all spans and annotations from [text] between [start] - * and [end] will be copied over as well. No other subtypes of [CharSequence] will be + * If [value] is an [OudsAnnotatedString], all spans and annotations from [value] between [startIndex] + * and [endIndex] will be copied over as well. No other subtypes of [CharSequence] will be * treated specially. For example, any platform-specific types, such as `SpannedString` on * Android, will only have their text copied and any other information held in the sequence, * such as Android `Span`s, will be dropped. * - * @param text The text to append. - * @param start The index of the first character in [text] to copy over (inclusive). - * @param end The index after the last character in [text] to copy over (exclusive). + * @param value The text to append. + * @param startIndex The index of the first character in [value] to copy over (inclusive). + * @param endIndex The index after the last character in [value] to copy over (exclusive). * @return This [Builder] instance. */ - override fun append(text: CharSequence?, start: Int, end: Int): Builder = apply { - when (text) { + override fun append(value: CharSequence?, startIndex: Int, endIndex: Int): Builder = apply { + when (value) { // The append method of AnnotatedString.Builder preserves annotations if the CharSequence is an AnnotatedString - is OudsAnnotatedString<*> -> builder.append(text.annotatedString.filterSupportedAnnotations(), start, end) - is AnnotatedString -> builder.append(text.filterSupportedAnnotations(), start, end) - else -> builder.append(text, start, end) + is OudsAnnotatedString<*> -> builder.append(value.annotatedString.filterSupportedAnnotations(), startIndex, endIndex) + is AnnotatedString -> builder.append(value.filterSupportedAnnotations(), startIndex, endIndex) + else -> builder.append(value, startIndex, endIndex) } } diff --git a/foundation/build.gradle.kts b/foundation/build.gradle.kts index 604291b309..0a82107c92 100644 --- a/foundation/build.gradle.kts +++ b/foundation/build.gradle.kts @@ -12,6 +12,7 @@ plugins { alias(libs.plugins.compose.compiler) + id("kmp-maven-central-publish") alias(libs.plugins.compose.multiplatform) id(libs.plugins.kotlin.multiplatform.get().pluginId) id(libs.plugins.android.kotlin.multiplatform.library.get().pluginId) diff --git a/global-raw-tokens/build.gradle.kts b/global-raw-tokens/build.gradle.kts index adb62b5763..d4997de941 100644 --- a/global-raw-tokens/build.gradle.kts +++ b/global-raw-tokens/build.gradle.kts @@ -12,6 +12,7 @@ plugins { id("dokka") + id("kmp-maven-central-publish") alias(libs.plugins.compose.compiler) alias(libs.plugins.compose.multiplatform) id(libs.plugins.kotlin.multiplatform.get().pluginId) diff --git a/theme-contract/build.gradle.kts b/theme-contract/build.gradle.kts index 3952e303aa..95bcc172e7 100644 --- a/theme-contract/build.gradle.kts +++ b/theme-contract/build.gradle.kts @@ -12,6 +12,7 @@ plugins { id("dokka") + id("kmp-maven-central-publish") alias(libs.plugins.compose.compiler) alias(libs.plugins.compose.multiplatform) id(libs.plugins.kotlin.multiplatform.get().pluginId) diff --git a/theme-orange-compact/build.gradle.kts b/theme-orange-compact/build.gradle.kts index 3f04a885f3..008a2b2a9f 100644 --- a/theme-orange-compact/build.gradle.kts +++ b/theme-orange-compact/build.gradle.kts @@ -14,6 +14,7 @@ import groovy.json.JsonSlurper */ plugins { + id("kmp-maven-central-publish") id("dokka") // id("library") id("paparazzi") diff --git a/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt index 66d51c123b..f827df866c 100644 --- a/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt +++ b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangebusinesstools/OrangeBusinessToolsTheme.kt @@ -16,9 +16,9 @@ import com.orange.ouds.theme.OudsThemeContract import com.orange.ouds.theme.orange.OrangeBundledFontFamily import com.orange.ouds.theme.orange.OrangeDownloadableFontFamily import com.orange.ouds.theme.orange.OrangeFontFamily -import com.orange.ouds.theme.orange.OrangeFontProvider import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin +import com.orange.ouds.theme.orange.preloadDownloadableFontFamilies import com.orange.ouds.theme.orangecompact.ORANGE_COMPACT_THEME_NAME import com.orange.ouds.theme.orangecompact.OrangeCompactTheme @@ -70,7 +70,7 @@ const val ORANGE_BUSINESS_TOOLS_THEME_NAME = ORANGE_COMPACT_THEME_NAME * ) * ``` * - * In order to enable the Android Downloadable Fonts feature for the Orange Business Tools theme, please also add [OrangeFontProvider] as a provider in your app manifest: + * In order to enable the Android Downloadable Fonts feature for the Orange Business Tools theme, please also add OrangeFontProvider as a provider in your app manifest: * * ``` * * ``` * - * Finally, call the [OrangeFontFamily.preloadDownloadableFontFamilies] method in the `onCreate` method of your application singleton or main activity, + * Finally, call the [preloadDownloadableFontFamilies] method in the `onCreate` method of your application singleton or main activity, * and use the `onComplete` parameter to update your UI when preload is complete: * * ``` @@ -103,7 +103,7 @@ const val ORANGE_BUSINESS_TOOLS_THEME_NAME = ORANGE_COMPACT_THEME_NAME * * @param orangeFontFamily The Helvetica Neue font family to use for the Orange Business Tools theme. * If an [OrangeBundledFontFamily] is used, the resource identifiers should reference Helvetica Neue font files. - * If an [OrangeDownloadableFontFamily] is used, the [OrangeFontFamily.preloadDownloadableFontFamilies] method should be called to download the Helvetica Neue font files through the Android Downloadable Fonts feature. + * If an [OrangeDownloadableFontFamily] is used, the [preloadDownloadableFontFamilies] method should be called to download the Helvetica Neue font files through the Android Downloadable Fonts feature. * @param roundedCornerButtons Whether buttons have rounded corners. * @param roundedCornerTextInputs Whether text inputs have rounded corners. * @param roundedCornerAlertMessages Whether alert messages have rounded corners. diff --git a/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt index a1e354d9ff..542190d981 100644 --- a/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt +++ b/theme-orange-compact/src/commonMain/kotlin/com/orange/ouds/theme/orangecompact/OrangeCompactTheme.kt @@ -12,7 +12,6 @@ package com.orange.ouds.theme.orangecompact -//import com.orange.ouds.theme.orange.OrangeFontProvider import androidx.compose.runtime.Composable import androidx.compose.ui.text.font.FontFamily import com.orange.ouds.theme.OudsDrawableResources @@ -24,6 +23,7 @@ import com.orange.ouds.theme.orange.OrangeDrawableResources import com.orange.ouds.theme.orange.OrangeFontFamily import com.orange.ouds.theme.orange.OrangeHelveticaNeueArabic import com.orange.ouds.theme.orange.OrangeHelveticaNeueLatin +import com.orange.ouds.theme.orange.preloadDownloadableFontFamilies import com.orange.ouds.theme.orangecompact.tokens.components.OrangeCompactComponentsTokens import com.orange.ouds.theme.orangecompact.tokens.material.OrangeCompactMaterialColorTokens import com.orange.ouds.theme.orangecompact.tokens.semantic.OrangeCompactBorderSemanticTokens @@ -91,7 +91,7 @@ const val ORANGE_COMPACT_THEME_NAME = "Orange Compact" * ) * ``` * - * In order to enable the Android Downloadable Fonts feature for the Orange Compact theme, please also add [OrangeFontProvider] as a provider in your app manifest: + * In order to enable the Android Downloadable Fonts feature for the Orange Compact theme, please also add OrangeFontProvider as a provider in your app manifest: * * ``` * * ``` * - * Finally, call the [OrangeFontFamily.preloadDownloadableFontFamilies] method in the `onCreate` method of your application singleton or main activity, + * Finally, call the [preloadDownloadableFontFamilies] method in the `onCreate` method of your application singleton or main activity, * and use the `onComplete` parameter to update your UI when preload is complete: * * ``` @@ -124,7 +124,7 @@ const val ORANGE_COMPACT_THEME_NAME = "Orange Compact" * * @param orangeFontFamily The Helvetica Neue font family to use for the Orange Compact theme. * If an [OrangeBundledFontFamily] is used, the resource identifiers should reference Helvetica Neue font files. - * If an [OrangeDownloadableFontFamily] is used, the [OrangeFontFamily.preloadDownloadableFontFamilies] method should be called to download the Helvetica Neue font files through the Android Downloadable Fonts feature. + * If an [OrangeDownloadableFontFamily] is used, the [preloadDownloadableFontFamilies] method should be called to download the Helvetica Neue font files through the Android Downloadable Fonts feature. * @param roundedCornerButtons Whether buttons have rounded corners. * @param roundedCornerTextInputs Whether text inputs have rounded corners. * @param roundedCornerAlertMessages Whether alert messages have rounded corners. diff --git a/theme-orange/build.gradle.kts b/theme-orange/build.gradle.kts index 7e1ef78e45..560cacf5e7 100644 --- a/theme-orange/build.gradle.kts +++ b/theme-orange/build.gradle.kts @@ -14,6 +14,7 @@ import groovy.json.JsonSlurper */ plugins { + id("kmp-maven-central-publish") id("dokka") // id("library") id("paparazzi") diff --git a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeTheme.kt b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeTheme.kt index d5e33d8bd2..7ee1191351 100644 --- a/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeTheme.kt +++ b/theme-orange/src/commonMain/kotlin/com/orange/ouds/theme/orange/OrangeTheme.kt @@ -84,7 +84,7 @@ const val ORANGE_THEME_NAME = "Orange" * ) * ``` * - * In order to enable the Android Downloadable Fonts feature for the Orange theme, please also add [OrangeFontProvider] as a provider in your app manifest: + * In order to enable the Android Downloadable Fonts feature for the Orange theme, please also add OrangeFontProvider as a provider in your app manifest: * * ``` * * ``` * - * Finally, call the [OrangeFontFamily.preloadDownloadableFontFamilies] method in the `onCreate` method of your application singleton or main activity, + * Finally, call the [preloadDownloadableFontFamilies] method in the `onCreate` method of your application singleton or main activity, * and use the `onComplete` parameter to update your UI when preload is complete: * * ``` @@ -117,7 +117,7 @@ const val ORANGE_THEME_NAME = "Orange" * * @param orangeFontFamily The Helvetica Neue font family to use for the Orange theme. * If an [OrangeBundledFontFamily] is used, the resource identifiers should reference Helvetica Neue font files. - * If an [OrangeDownloadableFontFamily] is used, the [OrangeFontFamily.preloadDownloadableFontFamilies] method should be called to download the Helvetica Neue font files through the Android Downloadable Fonts feature. + * If an [OrangeDownloadableFontFamily] is used, the [preloadDownloadableFontFamilies] method should be called to download the Helvetica Neue font files through the Android Downloadable Fonts feature. * @param roundedCornerButtons Whether buttons have rounded corners. * @param roundedCornerTextInputs Whether text inputs have rounded corners. * @param roundedCornerAlertMessages Whether alert messages have rounded corners. diff --git a/theme-sosh/build.gradle.kts b/theme-sosh/build.gradle.kts index 4b4f0418e9..b08b095ef8 100644 --- a/theme-sosh/build.gradle.kts +++ b/theme-sosh/build.gradle.kts @@ -14,6 +14,7 @@ import groovy.json.JsonSlurper */ plugins { + id("kmp-maven-central-publish") id("dokka") // id("library") id("paparazzi") diff --git a/theme-wireframe/build.gradle.kts b/theme-wireframe/build.gradle.kts index 28413050a9..a3c65b4111 100644 --- a/theme-wireframe/build.gradle.kts +++ b/theme-wireframe/build.gradle.kts @@ -14,6 +14,7 @@ import groovy.json.JsonSlurper */ plugins { + id("kmp-maven-central-publish") id("dokka") // id("library") id("paparazzi")