apply plugin: 'com.android.application' android { compileSdkVersion 30 buildToolsVersion '30.0.2' ndkVersion '21.3.6528147' defaultConfig { applicationId 'org.love2d.android' versionCode 29 versionName '11.3a' minSdkVersion 14 targetSdkVersion 30 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } flavorDimensions 'mode' productFlavors { normal { dimension 'mode' } playstore { dimension 'mode' } embed { dimension 'mode' applicationIdSuffix '.embed' } } lintOptions { abortOnError false } } dependencies { api 'androidx.multidex:multidex:2.0.1' api fileTree(dir: 'libs', include: ['*.jar']) api 'androidx.appcompat:appcompat:1.2.0' api project(':love') }