buildscript { repositories { maven { url 'https://maven.aliyun.com/repository/google' } maven{ url 'https://maven.aliyun.com/repository/jcenter'} } dependencies { classpath 'com.android.tools.build:gradle:7.0.4' } } allprojects { ext { appName = 'Magic Ling Pixel Dungeon' appPackageName = 'com.ansdomagiclingpixeldungeon.ling' appVersionCode =14030 appVersionName = '0.6.0.0-BetaX' appJavaCompatibility = JavaVersion.VERSION_1_8 appAndroidCompileSDK = 30 appAndroidMinSDK = 14 appAndroidTargetSDK = 30 gdxControllersVersion = '2.2.1' gdxVersion = '1.10.0' } version = appVersionName repositories { maven{ url 'https://maven.aliyun.com/repository/google' } maven{ url 'https://maven.aliyun.com/repository/jcenter'} maven { url 'https://jitpack.io' } } }