Enable Android Studio Logcat Logging for Release Build

To Run Release build in Android Studio, click on Build Variants (Left-lower corner), change to release build.

To enable logcat logging for Release build, add debuggable true to build.gradle (Module:app).

android {
    compileSdkVersion 27
    defaultConfig {
        ...
    }
    buildTypes {
        debug {

        }
        release {
            debuggable true
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

NOTE: Refer to Android Studip Run 'app' as Release.

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.