android-video-trimmer icon indicating copy to clipboard operation
android-video-trimmer copied to clipboard

Getting this error after adding the dependenecy

Open KashifAhmad opened this issue 3 years ago • 1 comments
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' } Screenshot 2022-06-24 at 3 57 31 PM

KashifAhmad avatar Jun 24 '22 12:06 KashifAhmad

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' }
    }
}

a914-gowtham avatar Jul 16 '22 07:07 a914-gowtham