0.1.0-0-pre.6

This commit is contained in:
2026-09-16 08:49:45 +02:00
parent 380a24681d
commit 21e45d333d
22 changed files with 452 additions and 34 deletions

View File

@@ -1,4 +1,28 @@
// file: Android/game-reflex-poc/build.gradle
// version: 1
// version: 2
// This module will become the Reflex POC Android application.
plugins {
id 'com.android.application'
}
android {
namespace 'com.sasedev.games.reflex'
compileSdk 36
defaultConfig {
applicationId 'com.sasedev.games.reflex'
minSdk 21
targetSdk 36
versionCode 1
versionName '0.1.0-0-pre.6'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation project(':common')
}