Background: I have a Picasso Statement in my java file, which reads a JSON and then formats that data to the screen. The Issue: Once my JSON has been re
Use this for old library :-
(implementation 'com.squareup.picasso:picasso:2.5.2') Picasso.with(this).load(iconUrl).into(Tab1Fragment.weatherIcon);
instead of : For new library
(implementation 'com.squareup.picasso:picasso:2.71828') Picasso.get().load(iconUrl).into(Tab1Fragment.weatherIcon);