Just a question.

Can I have different Proguard settings in debug and release mode?

In Gradle you can easily omit in debug the run ProGuard, as you can see in 
this snippet:

    buildTypes {
        debug {
            runProguard false
            signingConfig signingConfigs.debug
        }

        release {
            runProguard true
            proguardFile file('proguard-rules.txt')
            signingConfig signingConfigs.release
        }

-- 
You received this message because you are subscribed to the Google Groups 
"scala-on-android" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to