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: