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.
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 codedependencyResolutionManagement { 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.Any idea? Thank you for helping me!