> For the complete documentation index, see [llms.txt](https://notes.tejpratapsingh.com/_/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.tejpratapsingh.com/_/android-tips/gradle/make-app-debugable.md).

# Make app debugable

Add following in your gradle to make your app debugabble.

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