Tomáš Procházka

Results 88 comments of Tomáš Procházka

It's even harder to found reason for such error because there is missing source code. It's open just stubs method during debugging and documentation is quite brief :-(

Yes. It will be. Actually, the sample works even with bad SplitCompat.install() used in activity. I originally started here because of this problem.

Just after a module is installed I can access any resource which is directly in my module. But it always fails for a resource inside of any 3rd party library...

It works completely random. My app started working somehow. I just moved several 3rd party libraries to the main module instead of the feature module. But now I added some...

@bazinac Do you have WebView in your app? I just found that my problem is caused by WebView.

I created bug report for it here https://issuetracker.google.com/issues/162779750

Sample code is very easy, but I created it here: https://github.com/tprochazka/app-bundle-samples/tree/bug-162779750

It was approved but not merged why? There is quite a lot open pull request without any explanation why it was not merged :-(

In the RemoteDelivery class is this ``` ... deliver(qi, mailSession); ... if( qi != null && !qi.isReadyToSend() ) { qi.release(); log.trace(getClass().getSimpleName()+" ("+getName()+").run(): Release item. qi="+qi); qi = null; } ......

I found where problem is. I refactored MailQueueTest to use mock-javamail (https://mock-javamail.dev.java.net/) instead of real sending message which is not ideal for unit testing a continual integration. So I removed...