v1.1.0 - Update Android Target; Release Old Commits #1

Merged
me merged 11 commits from dev into main 2025-08-17 09:35:22 -07:00
Showing only changes of commit 920ee0d54c - Show all commits

View File

@@ -5,14 +5,14 @@ plugins {
android { android {
namespace = "com.hyperling.tictactoe" namespace = "com.hyperling.tictactoe"
compileSdk = 34 compileSdk = 36
defaultConfig { defaultConfig {
applicationId = "com.hyperling.tictactoe" applicationId = "com.hyperling.tictactoe"
minSdk = 21 minSdk = 21
targetSdk = 34 targetSdk = 36
versionCode = 3 versionCode = 4
versionName = "1.0.2" versionName = "1.1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables { vectorDrawables {
@@ -22,7 +22,7 @@ android {
buildTypes { buildTypes {
release { release {
isMinifyEnabled = false isMinifyEnabled = true
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
} }
} }