variantOutput.getPackageApplication() is obsolete

variantOutput.getPackageApplication() is being caused by a changed variant API. changing output.outputFile.parent to variant.getPackageApplicationProvider().get().outputs.files[1] is at least a temporary workaround. source: @Selvin. variant.getExternalNativeBuildTasks() is being caused by the io.fabric plugin. the next version of the io.fabric plugin will use variant.getExternalNativeBuildProviders(). source: 116408637; the confirmation for a promised fix (1.28.1). These are caused by com.google.gms.google-services: registerResGeneratingTask is … Read more

Getting error says – “Entry name ‘res/layout/test_toolbar.xml’ collided” while creating signed apk

Before reading the solution below, please read my update from 01.04.2020, the problem is deeper and it is in your code. I’ve got the same problem after this 3.6 update. The fast solution is: delete projectFolder\build delete projectFolder\debug* delete projectFolder\release* delete projectFolder\app\build delete projectFolder\app\build\debug* delete projectFolder\app\build\release* So you need to delete all of the builds, … Read more