For the complete documentation index, see llms.txt. This page is also available as Markdown.

Make app debugable

Add following in your gradle to make your app debugabble.

android {
    buildTypes {
        all {
            isDebuggable = true
            isShrinkResources = false
            isMinifyEnabled = false
        }
    }
}

Last updated