William Sanville
William Sanville
The commit message on https://github.com/facebook/redex/commit/ffb4d1eeab8549fe4789e6404571eb127920a33e might be helpful.
Can you elaborate more about why there is a bug and what your setup is like? Do you pass android.jar into the invocation to Redex? I am not seeing the...
I don't think the change to Purity.cpp is acceptable, per the definition at https://github.com/facebook/redex/commit/26d06229c2a248dfbb563a5ebe597e0f65e92487: > If their outputs are not used, pure method invocations can be removed by DCE. It...
Can you share the contents of your proguard-rules.pro file?
> With R8 this code reduces to the following Can you share the dexdump output for the class after d8 and R8? I can't infer what the bytecode would like...
I am guessing a piece of code in your application has an annotation like `@RequiresApi(api = X, value = X)` and this logic is not expecting to have both api...
Sorry for the very delayed response on this one. Thanks for the good quality report, we didn't consider that the manifest would contain references like this. We could probably scan...
After making a test case for this, I realized there is actually 1 valid corner case where you could have `android:exported="@bool/some_bool"` such that `some_bool` is actually unknowable at compile time....