a914-gowtham / android-video-trimmer

Helps to trim local videos with compress option on Android applications using Exoplayer 2 and FFmpeg.
Other
362 stars 115 forks source link

Getting this error after adding the dependenecy #83

Open KashifAhmad opened 2 years ago

KashifAhmad commented 2 years ago

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

a914-gowtham commented 1 year ago

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