apply plugin: 'com.android.application' android { compileSdkVersion 28 buildToolsVersion "28.0.3" defaultConfig { applicationId "org.love2d.android" versionCode 29 versionName "11.3a" minSdkVersion 14 targetSdkVersion 29 } 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.0' api fileTree(dir: 'libs', include: ['*.jar']) api 'androidx.appcompat:appcompat:1.1.0-alpha01' api project(':love') }