Failed to compile values file android studio
Android Studio "Failed to compile values file."
Solution 1:-
Go to
gradle.properties file and set the following two values.android.useAndroidX=true
android.enableJetifier=true
Solution 2:-
Go to build.gradle file and change dependancy to compile to implement.compile 'com.squareup.picasso:picasso:2.5.0'
To implementation'com.squareup.picasso:picasso:2.5.0'
0 Comments
Post a Comment