android-video-trimmer
android-video-trimmer copied to clipboard
Getting this error after adding the dependenecy
trafficstars
Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':app:debugCompileClasspath'.
What i have added the lib in app level build.gradle:
implementation 'com.github.a914-gowtham:android-video-trimmer:1.7.0'
and added this in project level build.gradle:
maven { url 'https://jitpack.io' }

Hi @KashifAhmad , Make sure you added jitpack url in allprojects closure like below. refer this file if you need
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}