Tony Robalik

Results 387 comments of Tony Robalik
trafficstars

Yes, the arsc file still exists. In the scenario I'm describing, it's about ~40B, vs about ~400B when the APK is built with AGP 4 (and diffuse can parse it)....

We don't generally want to recommend disabling parallel mode because it can really slow down a build. After all, my machine alone has 8 cores. Do I want 7 of...

Putting the following into the root `build.gradle` (and with parallel=true) fixes the sample project: ``` def greenDaoTasks = [] subprojects { subproject -> apply plugin: 'org.greenrobot.greendao' afterEvaluate { greenDaoTasks.add(subproject.tasks.findByName('greendaoPrepare')) greenDaoTasks.add(subproject.tasks.findByName('greendao'))...

I don't even add chuck as an interceptor unless I'm in debug mode. Why are you using it for release builds?

Build failed https://gradle.com/s/epcn5kmyoaxte

Build failed https://gradle.com/s/f47nqih266v4m

Thanks for the report. To start, here's what you'd do to have full control over how the plugin gets applied to individual projects: ``` # gradle.properties dependency.analysis.autoapply=false ``` ```groovy //...

hey @melix just curious if you've had a chance to try this out again? No rush of course, just triaging my issues.

This is exactly the kind of thing I thought would trip you up when I thought about how your root project depends on your subprojects: ``` - throw GradleException("You must...