Stuart Kent

Results 61 comments of Stuart Kent
trafficstars

Hi @Dave181295, I haven't actually released v2.0.0 of the library yet; I'll do that tomorrow. Once that's available you should be able to customize the dialog fully. Hope that helps,...

OK, v2.0.0 is out, please try it out! ``` dependencies { implementation("com.github.stkent:bugshaker:2.0.0") } ```

This is a known limitation of the library. Dialogs are presented in separate Windows and are not technically part of the Activity being captured. Some solutions to this problem exist,...

This is worth looking into; there's probably a way to use the activity lifecycle hooks to know when the app is backgrounded (i.e. shake detection can safely be stopped).

Some of the code in https://github.com/stkent/STUtils should be able to take care of this now, with proper adaptation. One thing to think about is whether the Activity reference management can...

Thanks for the report! It looks like this issue might be in Gson, which Gandalf uses: https://github.com/google/gson/issues/1387 I am not sure there's much we can do until Gson patches this...

Possibly relevant: - https://github.com/davideas/FlexibleAdapter/issues/579 - https://github.com/davideas/FlexibleAdapter/commit/4bc959f3c5c6fc3b15ca15469a77f31318b83a77#diff-c197962302397baf3a4cc36463dce5eaR116 - https://github.com/vanniktech/gradle-android-javadoc-plugin/commit/661f4975136c0f6cd721a142c79ac2cf6c51617d#diff-7f9dfd224d08fdd544b6417324258085R48

Hi @jcornaz! Gnag is designed to make it easy to add checkers to your project without requiring much (or any) custom configuration. As such, it is not set up to...

Places where we hard-code a `/` as a path separator: https://github.com/btkelly/gnag/blob/f8edff9078f59b55b7c53ed248e9957a669e6c25/plugin/src/main/groovy/com/btkelly/gnag/reporters/utils/PathCalculator.groovy#L34 https://github.com/btkelly/gnag/blob/f8edff9078f59b55b7c53ed248e9957a669e6c25/plugin/src/main/groovy/com/btkelly/gnag/utils/ProjectHelper.groovy#L57 My first suggestion would be to change both of these to one of [`File.separatorChar`](https://docs.oracle.com/javase/7/docs/api/java/io/File.html#separatorChar) or [`File.separator`](https://docs.oracle.com/javase/7/docs/api/java/io/File.html#separator) and see...

As a data point, what sort of size project are you running Gnag on, how many build variants does it have, and how long does `gnagCheck` take to run (approximately)?...