From recent I/O 2017 some of the features which Google has brought are to the developers.
Pictures in PicturesIf you have already declared the configChanges="true" than you don't have to mention supportsPictureInPicture="true"
Color Management Support...
Friday, May 19, 2017
Monday, May 8, 2017
Sharing the multiple content between two applications
As we all know there are ways to share the content between the applications,Sending and Receiving the data between two application with intent is most commonly used methodology. Method to share text/plain
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT,...