79312722

Date: 2024-12-27 20:21:57
Score: 0.5
Natty:
Report link

This worked for me in Android Studio Ladybug:

First add this in build.gradle (of the 'app' folder):

dependencies {
implementation("com.github.eincs:android-gpuimage:v1.4.1-eincs-1.0.1")}

Then in settings.gradle include this appropriately and sync the project:

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
    google()
    mavenCentral()
    maven ("https://jitpack.io")
    jcenter()
}}

You can refer to these links:

Could not find method dependencyResolutionManagement() for arguments [build_ckqar66poaozqtyzw4dyn6sx4$_run_closure3@a921a13] on project app

https://jitpack.io/#gradle

Reasons:
  • Blacklisted phrase (1): these links
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric Thogo