a914-gowtham / android-video-trimmer-litr

LiTr version of android-video-trimmer. LiTr is a slow and lightweight video transcoder.
22 stars 5 forks source link

Missing allprojects from gradle settings #6

Open Victor-Postole opened 2 years ago

Victor-Postole commented 2 years ago

Hello folks, I was trying to add new dependency to my project in order to test this library. I have added in build.gradle implementation 'com.github.a914-gowtham:android-video-trimmer-litr:1.5.11' but this section is missing from my project structure. allprojects { repositories { maven { url 'https://jitpack.io' } } } However I have found in settings.gradle this section of code dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url 'https://jitpack.io' } } } It seems like maven is already added but in a different way. By now I am not able to test it because I have these errors in my build.

image Any idea? Thank you for helping me!