apply plugin: 'com.android.application' android { compileSdk 33 buildToolsVersion '33.0.0' ndkVersion '23.2.8568313' defaultConfig { applicationId 'org.love2d.android' versionCode 30 versionName '11.4' minSdkVersion 16 targetSdk 33 } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } flavorDimensions 'mode', 'recording' productFlavors { normal { dimension 'mode' } embed { dimension 'mode' } record { dimension 'recording' } noRecord { dimension 'recording' } } lintOptions { abortOnError false } } dependencies { api 'androidx.multidex:multidex:2.0.1' api fileTree(dir: 'libs', include: ['*.jar']) api 'androidx.appcompat:appcompat:1.5.1' api project(':love') }