jcrabanal

Results 20 comments of jcrabanal

The sample projects of Android Studio seem to do the trick. Here you have. Both APKs here decompile OK with "java -jar apktool_2.9.3.jar d [file]", but only shrinkResources_false.apk can be...

Setting android.enableNewResourceShrinker.preciseShrinking=false in my gradle.properties file and enabling shrinkResources = true seems to make it work again (decompile & recompile) [https://developer.android.com/build/releases/gradle-plugin#resource-shrinking](https://developer.android.com/build/releases/gradle-plugin#resource-shrinking)

This is causing all of our apps inside managed intune devices to crash violently on start. ProviderInstaller.installIfNeeded() cannot be ignored because the GMS provider solves a gazillion of SSL errors...

I'm not OP, but I can provide you a stack trace. [stack_trace.txt](https://github.com/msintuneappsdk/ms-intune-app-sdk-android/files/13490163/stack_trace.txt) It's a SIGSEGV, segmentation fault, which is weird because the app does not contain native code, and it...

> @jcrabanal, yes, from our investigation this appears to be a google issue and an issue has been filed in the Google issue tracker: https://issuetracker.google.com/issues/316396709 It seems like clearing the...

If you set android.enableNewResourceShrinker.preciseShrinking=false in your gradle.properties, then you can enable shrinkResources = true again and produce APKs that apktool can process, but gradle shows this message... "The option setting...

I'm interested on fixing this. I've tried downloading the docker image, but it doesn't work? ``` C:\JavetTest\Javet>docker build -f docker/android/build.Dockerfile . [+] Building 2.3s (4/4) FINISHED => [internal] load build...

I can't get a proper build environment to work... Do you think this could be patched from the java side somehow?

Hello, any advances on this issue? Why not discard the locking for debugguing operations? A debugguer is inherently thread-unsafe by desing anyways.