import org.gradle.kotlin.dsl.flatDir pluginManagement { repositories { google { content { includeGroupByRegex("com\\.android.*") includeGroupByRegex("com\\.google.*") includeGroupByRegex("androidx.*") } } google() mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven("https://jitpack.io") flatDir { dirs("libs") } // TradPlus mavenCentral() // Ironsource maven("https://android-sdk.is.com/") // Pangle maven("https://artifact.bytedance.com/repository/pangle") // Mintegral //Launch GP market application, Android X Version //If you fail to pull the code using gradle, add the maven warehouse configuration to the project root build.gradle file maven("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea") } } rootProject.name = "PDF Reader Pro" include(":app")