After updating to `androidx.compose.ui:ui:1.7.1`, ...
# compose-android
l
After updating to
androidx.compose.ui:ui:1.7.1
, using the compose BOM
2024.09.01
, I am getting an error in the Google Play Console about the app bundle containing native code, and us not uploading debug symbols. That whole thing. We figured out that it is because
androidx.compose.ui:ui-graphics:1.7.1
depends on
androidx.graphics:graphics-path:1.0.1
, which seems to use native code. Any advice in avoiding uploading debug symbols like so:
Copy code
buildTypes {
        release {
            ndk {
                debugSymbolLevel = "SYMBOL_TABLE"
            }
        }
    }