We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems okbuck (ver 0.34.1) not recognize the postprocessing block.
okbuck
postprocessing
Snippet in my app's build.gradle looks like:
build.gradle
buildTypes { release { postprocessing { obfuscate = true optimizeCode = false removeUnusedCode = true removeUnusedResources = true proguardFiles 'proguard-rules.pro' } signingConfig signingConfigs.release crunchPngs true } }
Thx.
The text was updated successfully, but these errors were encountered:
interesting. does it work fine if you move the proguardFiles out of the postProcessing block? i'm not familiar with the postProcessing block.
Sorry, something went wrong.
@runningcode ./buckw targets works fine, if i replace postprocessing block to old DSL, e.g.
./buckw targets
buildTypes { release { ... proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } }
Postprocessing block seems new. Okbuck does not support it yet
This dsl is incubating and can change at anytime - https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.BuildType.html#com.android.build.gradle.internal.dsl.BuildType:postprocessing
Do not plan to add support for this until it becomes stable
No branches or pull requests
It seems
okbuck
(ver 0.34.1) not recognize thepostprocessing
block.Snippet in my app's
build.gradle
looks like:Thx.
The text was updated successfully, but these errors were encountered: