-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradle.properties
More file actions
45 lines (38 loc) · 1.33 KB
/
Copy pathgradle.properties
File metadata and controls
45 lines (38 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Pokermon - Pure Kotlin-Native Cross-Platform Build Configuration
# Dynamic versioning without git dependency for stable builds
# Application metadata
app.name=Pokermon
app.version.major=1
app.version.minor=1
app.version.patch=0
app.description=Cross-platform poker game with monster collection mechanics
# Build versions
kotlin.version=2.2.10
kotlinx.coroutines.version=1.7.3
compose.version=1.5.15
# Android configuration
android.useAndroidX=true
android.enableJetifier=true
android.compileSdk=36
android.minSdk=28
android.targetSdk=35
android.nonTransitiveRClass=true
android.enableR8.fullMode=true
android.suppressUnsupportedCompileSdk=35,36
# Kotlin configuration
kotlin.code.style=official
kotlin.incremental=true
kotlin.incremental.android=true
# Native build configuration
kotlin.native.binary.memoryModel=experimental
kotlin.native.cacheKind=static
kotlin.mpp.enableCInteropCommonization=true
# Let Gradle automatically handle Kotlin/Native distribution
# kotlin.native.home=/home/runner/work/poker-basic/poker-basic/kotlin-native-prebuilt-linux-x86_64-2.2.10
# Gradle optimizations
org.gradle.caching=true
org.gradle.parallel=true
org.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8 -Duser.country=US -Duser.language=en -Duser.variant -XX:+UseParallelGC
# Disable daemon for CI builds
org.gradle.daemon=false
org.gradle.configureondemand=true