Dattatray Nande
Dattatray Nande

Reputation: 46

Could not get unknown property 'VERSION_NAME' for project ':k4l-video-trimmer' of type org.gradle.api.Project

After importing "k4l-video-trimmer" library am getting this error:

FAILURE: Build failed with an exception.

Upvotes: 1

Views: 1289

Answers (1)

Fernando Prieto Moyano
Fernando Prieto Moyano

Reputation: 925

Make sure you add in your app build.gradle:

project.ext {
    VERSION_NAME = '1.1.3-SNAPSHOT'
}

Upvotes: 2

Related Questions