// file: Android/game-snake-poc/build.gradle // version: 6 plugins { id 'com.android.application' } def sdl3AarName = providers.gradleProperty("sdl3AarName").get() android { namespace 'com.sasedev.games.snake' compileSdk 36 defaultConfig { applicationId 'com.sasedev.games.snake' minSdk 21 targetSdk 36 versionCode 1 versionName '0.1.0-0-pre.8' } compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } } dependencies { implementation files("../libs/${sdl3AarName}") implementation project(':common') }