In android/app/build.gradle.kts, make sure isShrinkResources is set to false.

buildTypes {
        release {
            signingConfig = signingConfigs.getByName("debug")
            isMinifyEnabled = true
            isShrinkResources = false  
        }

If ShrinkResources is set to true, the app might fail.

Visit Emlekezik.com