Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Gradle Plugin (Warning) API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'

I am trying to build and run this repository augmented-images and I encounted this error.

Caused by: java.lang.RuntimeException: Error creating sfa.

Which drill down to this warning Warning ! API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.

More from the build log analysis I see the following errors ERROR: Failed to import 'sampledata/airplane/Airplane.obj'

I tried to find where this

variant.getMergeResources()

is used so I can replace it but no luck.

Please assist maybe I need to update the plugin. Which steps should I follow that is what I suspect will be the solution.

like image 342
Cockpit Aliens Avatar asked Feb 26 '19 03:02

Cockpit Aliens


1 Answers

Changing classpath 'com.google.gms:google-services:4.3.0' to classpath 'com.google.gms:google-services:4.2.0' works for now..

like image 116
DarShan Avatar answered Sep 22 '22 00:09

DarShan