Skip to content Skip to sidebar Skip to footer

Trying To Add Module To Project. Gradle Dsl Method Not Found: 'versionname()'

I am trying to add a epub reader library to a project I have already created. The library I am trying to add to my project as a moduel is the Folio Reader Library (https://github.c

Solution 1:

Problem solved by replacing

versionName 1

with

versionName "1.1"

in the Module level build.gradle file.

Post a Comment for "Trying To Add Module To Project. Gradle Dsl Method Not Found: 'versionname()'"