Nilesh Deokar
Nilesh Deokar
Hey, Thanks for testing. Can you please let me know which part is not working? whatsapp file sharing or local downloads file sharing ?
I will update you on this after testing it once again. Thanks!
Actually in my app I am using `FileUtils` class for detecting incoming file Uri's from other apps. In which files coming from whatsapp were failing to resolve into their actual...
Well, I'm not much into Android these days. Still I think [this solution](https://stackoverflow.com/a/32422776/3746306) from SO will help. Also amplitude will be in `handleCodecOutput()` method. ```java private void handleCodecOutput(MediaCodec mediaCodec, ByteBuffer[]...
`Shimmer shimmer = new Shimmer(); ` ... `shimmer.start(tvShimmerText);` ... Cancel shimmer in `onDestroy()` might help you. ``` @Override protected void onDestroy() { super.onDestroy(); if (shimmer!=null) { shimmer.cancel(); shimmer = null;...