Problem Description
This PR addresses the removal of unused and inactive annotations in the sample module, specifically @ExperimentalResourceApi. The related import import org.jetbrains.compose.resources.ExperimentalResourceApi was also removed because it was no longer needed. This cleanup helps maintain code quality by removing unnecessary experimental annotations that are not being used in the current implementation.
Solution
Removed the @ExperimentalResourceApi annotation and its corresponding import (import org.jetbrains.compose.resources.ExperimentalResourceApi) from the sample module where it was inactive and not in use.
Subsystem sample module
Problem Description This PR addresses the removal of unused and inactive annotations in the sample module, specifically
@ExperimentalResourceApi
. The related import importorg.jetbrains.compose.resources.ExperimentalResourceApi
was also removed because it was no longer needed. This cleanup helps maintain code quality by removing unnecessary experimental annotations that are not being used in the current implementation.Solution Removed the
@ExperimentalResourceApi
annotation and its corresponding import(import org.jetbrains.compose.resources.ExperimentalResourceApi)
from the sample module where it was inactive and not in use.