Emmanuel Boudrant

Results 16 comments of Emmanuel Boudrant

@alexjlockwood thanks for the follow up. The crash happened in our app on release build (proguard/shrink). Since then we removed the `avd_progress_indeterminate_circular` and used a circular `ProgressBar`.

The problem is line 6 of `resources.txt`, value of `configurations.unzip.singleFile.path`. On a local machine the file exists (ex : `/Users/eboudrant/.gradle/caches/transforms-3/f1536f6c97f772845ea671ab61867793/transformed/layoutlib-native-macarm-2021.1.1-573f070`). On CI the file does not exists (ex: `/mnt/data/agent/workspace/Project-ABC/label/awstest_android/my_variants/unitTestDebug/.gradle/caches/transforms-3/57eded7ec1aadfb67857557a846e1fd3/transformed/layoutlib-native-linux-2021.1.1-573f070/data/linux/lib64/libandroid_runtime.so` I'm...

After investigation I suspect a build cache issue, I tried by removing `@CacheableTask` from `PrepareResourcesTask` and the build passes. Looks like the value of `platformDataRoot` is not invalidating the cache...

Steps to reproduce with the sample app: - First run `./gradlew clean :sample:recordPaparazzi` so we can run verify task later - make sure build cache is enabled (local or remote)...

Related to https://github.com/pinterest/ktlint/issues/1532 and duplicate of #589

Thanks for the explanation, what is unexpected for me is this `ByteArrayOutputStream` is opened in a try-with-resources block so it should be closed. ``` try ( new ByteArrayOutputStream(end - pos...

Looks like a build issue. I removed the annotation and I got : ``` Caused by: java.lang.NoSuchMethodError: No static method notifyMessageSetChanged_aroundBody10(Lx/x/MyAdapter;Lorg/aspectj/lang/JoinPoint;)V in class Lx/x/MyAdapter; or its super classes (declaration of...

Thanks, I think https://github.com/detekt/detekt/pull/6511 is what I requested!

Yes, I was more envisioning a regexp based solution. Ideally I'd like to monitor stable, beta, alpha independently.