├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── drawable │ │ │ │ ├── ic_tic_tac_toe_light.webp │ │ │ │ ├── ic_tic_tac_toe_night.webp │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── themes.xml │ │ │ │ ├── splash.xml │ │ │ │ └── colors.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── values-night │ │ │ │ └── splash.xml │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── tictactoe │ │ │ │ ├── ui │ │ │ │ └── theme │ │ │ │ │ ├── Padding.kt │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Type.kt │ │ │ │ │ └── Theme.kt │ │ │ │ ├── di │ │ │ │ ├── AppModule.kt │ │ │ │ └── TicTacModule.kt │ │ │ │ ├── utils │ │ │ │ ├── StatusGame.kt │ │ │ │ └── Main.kt │ │ │ │ ├── domain │ │ │ │ ├── model │ │ │ │ │ └── TicTacToeData.kt │ │ │ │ └── TicTacToeHandler.kt │ │ │ │ ├── presentation │ │ │ │ ├── mvi │ │ │ │ │ ├── TicTacToeUIEvent.kt │ │ │ │ │ └── TicTacToeState.kt │ │ │ │ ├── widgets │ │ │ │ │ └── Board.kt │ │ │ │ ├── TicTacToeViewModel.kt │ │ │ │ └── TicTacToeScreen.kt │ │ │ │ ├── TicTacToeApplication.kt │ │ │ │ └── MainActivity.kt │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── tictactoe │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── example │ │ └── tictactoe │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle.kts ├── .idea ├── .gitignore └── vcs.xml ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── libs.versions.toml ├── .gitignore ├── settings.gradle.kts ├── gradle.properties ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tic_tac_toe_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/drawable/ic_tic_tac_toe_light.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tic_tac_toe_night.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/drawable/ic_tic_tac_toe_night.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanRH14/TicTacToe/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TicTacToe 3 | Restart 4 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/ui/theme/Padding.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.ui.theme 2 | 3 | import androidx.compose.ui.unit.dp 4 | 5 | val SpacerPadding = 20.dp -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values-night/splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/presentation/mvi/TicTacToeUIEvent.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.presentation.mvi 2 | 3 | sealed interface TicTacToeUIEvent { 4 | data object DrawBoard : TicTacToeUIEvent 5 | data class MakeMove(val move: String) : TicTacToeUIEvent 6 | data object RestartGame : TicTacToeUIEvent 7 | data class UpdateText(val text: String) : TicTacToeUIEvent 8 | data class UpdateVisibilityText(val isVisible: Boolean): TicTacToeUIEvent 9 | } -------------------------------------------------------------------------------- /app/src/test/java/com/example/tictactoe/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/presentation/mvi/TicTacToeState.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.presentation.mvi 2 | 3 | data class TicTacToeState( 4 | val board: List> = emptyList(), 5 | val textState: String = "", 6 | val isVisibleText: Boolean = false, 7 | val currentTurn: Char = 'X', 8 | val error: String? = null, 9 | val winner: Char? = null, 10 | val isFinished: Boolean = false, 11 | val isDraw: Boolean = false 12 | ) -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/ui/theme/Type.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.ui.theme 2 | 3 | import androidx.compose.material3.Typography 4 | import androidx.compose.ui.text.TextStyle 5 | import androidx.compose.ui.text.font.FontFamily 6 | import androidx.compose.ui.text.font.FontWeight 7 | import androidx.compose.ui.unit.sp 8 | 9 | val Typography = Typography( 10 | bodyLarge = TextStyle( 11 | fontFamily = FontFamily.Default, 12 | fontWeight = FontWeight.Normal, 13 | fontSize = 16.sp, 14 | lineHeight = 24.sp, 15 | letterSpacing = 0.5.sp 16 | ) 17 | ) -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | google { 4 | content { 5 | includeGroupByRegex("com\\.android.*") 6 | includeGroupByRegex("com\\.google.*") 7 | includeGroupByRegex("androidx.*") 8 | } 9 | } 10 | mavenCentral() 11 | gradlePluginPortal() 12 | } 13 | } 14 | dependencyResolutionManagement { 15 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 16 | repositories { 17 | google() 18 | mavenCentral() 19 | } 20 | } 21 | 22 | rootProject.name = "TicTacToe" 23 | include(":app") 24 | -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 12 | 13 | 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/TicTacToeApplication.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe 2 | 3 | import android.app.Application 4 | import com.example.tictactoe.di.appModule 5 | import com.example.tictactoe.di.ticTacModule 6 | import org.koin.android.ext.koin.androidContext 7 | import org.koin.core.context.startKoin 8 | 9 | class TicTacToeApplication : Application() { 10 | 11 | override fun onCreate() { 12 | super.onCreate() 13 | 14 | startKoin { 15 | androidContext(this@TicTacToeApplication) 16 | modules( 17 | ticTacModule, 18 | appModule 19 | ) 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/tictactoe/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe 2 | 3 | import androidx.test.platform.app.InstrumentationRegistry 4 | import androidx.test.ext.junit.runners.AndroidJUnit4 5 | 6 | import org.junit.Test 7 | import org.junit.runner.RunWith 8 | 9 | import org.junit.Assert.* 10 | 11 | /** 12 | * Instrumented test, which will execute on an Android device. 13 | * 14 | * See [testing documentation](http://d.android.com/tools/testing). 15 | */ 16 | @RunWith(AndroidJUnit4::class) 17 | class ExampleInstrumentedTest { 18 | @Test 19 | fun useAppContext() { 20 | // Context of the app under test. 21 | val appContext = InstrumentationRegistry.getInstrumentation().targetContext 22 | assertEquals("com.example.tictactoe", appContext.packageName) 23 | } 24 | } -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe 2 | 3 | import android.os.Bundle 4 | import androidx.activity.ComponentActivity 5 | import androidx.activity.compose.setContent 6 | import androidx.compose.foundation.layout.fillMaxSize 7 | import androidx.compose.foundation.layout.padding 8 | import androidx.compose.material3.Scaffold 9 | import androidx.compose.ui.Modifier 10 | import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen 11 | import com.example.tictactoe.presentation.TicTacToeScreen 12 | import com.example.tictactoe.ui.theme.TicTacToeTheme 13 | 14 | class MainActivity : ComponentActivity() { 15 | override fun onCreate(savedInstanceState: Bundle?) { 16 | super.onCreate(savedInstanceState) 17 | installSplashScreen() 18 | 19 | setContent { 20 | TicTacToeTheme { 21 | Scaffold(modifier = Modifier.fillMaxSize()) { innerPadding -> 22 | TicTacToeScreen( 23 | modifier = Modifier 24 | .padding(innerPadding) 25 | ) 26 | } 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. For more details, visit 12 | # https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app's APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Kotlin code style for this project: "official" or "obsolete": 19 | kotlin.code.style=official 20 | # Enables namespacing of each library's R class so that its R class includes only the 21 | # resources declared in the library itself and none from the library's dependencies, 22 | # thereby reducing the size of the R class for that library 23 | android.nonTransitiveRClass=true -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/utils/Main.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.utils 2 | 3 | import com.example.tictactoe.domain.TicTacToeHandler 4 | import java.util.Scanner 5 | 6 | private var isGameFinished = false 7 | lateinit var ticTacToe: TicTacToeHandler 8 | 9 | fun main() { 10 | val scanner = Scanner(System.`in`) 11 | 12 | displayBoard(ticTacToe.getBoard()) 13 | println("Player X: ") 14 | 15 | while (!isGameFinished) { 16 | val move = scanner.nextLine() 17 | val statusGame = ticTacToe.makeMove(move) 18 | 19 | displayBoard(ticTacToe.getBoard()) 20 | statusGame.validateGame() 21 | } 22 | } 23 | 24 | private fun displayBoard(board: MutableList>) { 25 | println("-------------") 26 | board.forEach { row -> 27 | row.forEach { cell -> 28 | print("| $cell") 29 | } 30 | println("|") 31 | } 32 | println("-------------") 33 | } 34 | 35 | private fun StatusGame.validateGame() { 36 | when (this) { 37 | is StatusGame.Draw -> { 38 | println("Game finished - > Draw") 39 | isGameFinished = true 40 | } 41 | 42 | is StatusGame.Error -> { 43 | println(this.message) 44 | } 45 | 46 | is StatusGame.Progress -> println("Player $turn: ") 47 | 48 | is StatusGame.Win -> { 49 | isGameFinished = true 50 | println("Won: $turn") 51 | } 52 | } 53 | } -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/ui/theme/Theme.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.ui.theme 2 | 3 | import android.os.Build 4 | import androidx.compose.foundation.isSystemInDarkTheme 5 | import androidx.compose.material3.MaterialTheme 6 | import androidx.compose.material3.darkColorScheme 7 | import androidx.compose.material3.dynamicDarkColorScheme 8 | import androidx.compose.material3.dynamicLightColorScheme 9 | import androidx.compose.material3.lightColorScheme 10 | import androidx.compose.runtime.Composable 11 | import androidx.compose.ui.platform.LocalContext 12 | 13 | private val DarkColorScheme = darkColorScheme( 14 | primary = Purple80, 15 | secondary = PurpleGrey80, 16 | tertiary = Pink80 17 | ) 18 | 19 | private val LightColorScheme = lightColorScheme( 20 | primary = Purple40, 21 | secondary = PurpleGrey40, 22 | tertiary = Pink40 23 | ) 24 | 25 | @Composable 26 | fun TicTacToeTheme( 27 | darkTheme: Boolean = isSystemInDarkTheme(), 28 | // Dynamic color is available on Android 12+ 29 | dynamicColor: Boolean = true, 30 | content: @Composable () -> Unit 31 | ) { 32 | val colorScheme = when { 33 | dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> { 34 | val context = LocalContext.current 35 | if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context) 36 | } 37 | 38 | darkTheme -> DarkColorScheme 39 | else -> LightColorScheme 40 | } 41 | 42 | MaterialTheme( 43 | colorScheme = colorScheme, 44 | typography = Typography, 45 | content = content 46 | ) 47 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 18 | 21 | 22 | 23 | 24 | 30 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/presentation/widgets/Board.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.presentation.widgets 2 | 3 | import androidx.compose.foundation.border 4 | import androidx.compose.foundation.clickable 5 | import androidx.compose.foundation.layout.Box 6 | import androidx.compose.foundation.layout.size 7 | import androidx.compose.foundation.lazy.LazyColumn 8 | import androidx.compose.foundation.lazy.LazyRow 9 | import androidx.compose.foundation.lazy.itemsIndexed 10 | import androidx.compose.material3.MaterialTheme 11 | import androidx.compose.material3.Text 12 | import androidx.compose.runtime.Composable 13 | import androidx.compose.ui.Alignment 14 | import androidx.compose.ui.Modifier 15 | import androidx.compose.ui.text.font.FontWeight 16 | import androidx.compose.ui.unit.dp 17 | import androidx.compose.ui.unit.sp 18 | import com.example.tictactoe.presentation.mvi.TicTacToeState 19 | 20 | @Composable 21 | fun Board( 22 | ticTacToeState: TicTacToeState, 23 | onClickCell: (String) -> Unit 24 | ) { 25 | LazyColumn { 26 | itemsIndexed(ticTacToeState.board) { indexRow, row -> 27 | LazyRow { 28 | itemsIndexed(row) { indexCell, cell -> 29 | Box( 30 | modifier = Modifier 31 | .size(80.dp) 32 | .border(1.dp, MaterialTheme.colorScheme.onSurface) 33 | .clickable { 34 | if (!ticTacToeState.isFinished) { 35 | onClickCell("$indexRow,$indexCell") 36 | } 37 | }, 38 | contentAlignment = Alignment.Center, 39 | ) { 40 | 41 | Text( 42 | text = "$cell", 43 | fontSize = 28.sp, 44 | fontWeight = FontWeight.Bold 45 | ) 46 | } 47 | } 48 | } 49 | } 50 | } 51 | } -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | alias(libs.plugins.android.application) 3 | alias(libs.plugins.kotlin.android) 4 | alias(libs.plugins.kotlin.compose) 5 | alias(libs.plugins.ksp) 6 | } 7 | 8 | android { 9 | namespace = "com.example.tictactoe" 10 | compileSdk = 36 11 | 12 | defaultConfig { 13 | applicationId = "com.example.tictactoe" 14 | minSdk = 24 15 | targetSdk = 35 16 | versionCode = 1 17 | versionName = "1.0" 18 | 19 | testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" 20 | } 21 | 22 | buildTypes { 23 | release { 24 | isMinifyEnabled = false 25 | proguardFiles( 26 | getDefaultProguardFile("proguard-android-optimize.txt"), 27 | "proguard-rules.pro" 28 | ) 29 | } 30 | } 31 | compileOptions { 32 | sourceCompatibility = JavaVersion.VERSION_11 33 | targetCompatibility = JavaVersion.VERSION_11 34 | } 35 | kotlinOptions { 36 | jvmTarget = "11" 37 | } 38 | buildFeatures { 39 | compose = true 40 | } 41 | } 42 | 43 | dependencies { 44 | 45 | implementation(libs.androidx.core.ktx) 46 | implementation(libs.androidx.lifecycle.runtime.ktx) 47 | implementation(libs.androidx.activity.compose) 48 | implementation(platform(libs.androidx.compose.bom)) 49 | implementation(libs.androidx.ui) 50 | implementation(libs.androidx.ui.graphics) 51 | implementation(libs.androidx.ui.tooling.preview) 52 | implementation(libs.androidx.material3) 53 | testImplementation(libs.junit) 54 | androidTestImplementation(libs.androidx.junit) 55 | androidTestImplementation(libs.androidx.espresso.core) 56 | androidTestImplementation(platform(libs.androidx.compose.bom)) 57 | androidTestImplementation(libs.androidx.ui.test.junit4) 58 | debugImplementation(libs.androidx.ui.tooling) 59 | debugImplementation(libs.androidx.ui.test.manifest) 60 | 61 | implementation(libs.koin.android) 62 | implementation(libs.koin.androidx.compose) 63 | 64 | implementation(libs.androidx.core.splashscreen) 65 | } -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- 1 | [versions] 2 | agp = "8.13.0" 3 | kotlin = "2.2.20" 4 | coreKtx = "1.17.0" 5 | junit = "4.13.2" 6 | junitVersion = "1.3.0" 7 | espressoCore = "3.7.0" 8 | lifecycleRuntimeKtx = "2.9.4" 9 | activityCompose = "1.11.0" 10 | composeBom = "2025.09.01" 11 | kspVersion = "2.1.20-2.0.1" 12 | coreSplashscreen = "1.0.1" 13 | koinAndroid = "4.1.1" 14 | 15 | [libraries] 16 | androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } 17 | junit = { group = "junit", name = "junit", version.ref = "junit" } 18 | androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" } 19 | androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" } 20 | androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" } 21 | androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" } 22 | androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" } 23 | androidx-ui = { group = "androidx.compose.ui", name = "ui" } 24 | androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" } 25 | androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" } 26 | androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" } 27 | androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" } 28 | androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" } 29 | androidx-material3 = { group = "androidx.compose.material3", name = "material3" } 30 | 31 | koin-android = { module = "io.insert-koin:koin-android", version.ref = "koinAndroid" } 32 | koin-androidx-compose = { module = "io.insert-koin:koin-androidx-compose", version.ref = "koinAndroid"} 33 | 34 | androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "coreSplashscreen" } 35 | 36 | [plugins] 37 | android-application = { id = "com.android.application", version.ref = "agp" } 38 | kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } 39 | kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } 40 | ksp = { id = "com.google.devtools.ksp", version.ref = "kspVersion" } 41 | 42 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/domain/TicTacToeHandler.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.domain 2 | 3 | import com.example.tictactoe.domain.model.TicTacToeData 4 | import com.example.tictactoe.utils.StatusGame 5 | 6 | class TicTacToeHandler( 7 | private var ticTacToeData: TicTacToeData 8 | ) { 9 | 10 | fun getBoard() = ticTacToeData.board 11 | 12 | fun makeMove(move: String): StatusGame { 13 | val positions = move.split(",").map { it.toInt() } 14 | if (isMoveValid(positions)) 15 | return StatusGame.Error(message = "Invalid move, try again") 16 | 17 | setMove(positions) 18 | 19 | return getStatusGame() 20 | } 21 | 22 | fun restartGame() { 23 | ticTacToeData = ticTacToeData.copy( 24 | board = mutableListOf( 25 | mutableListOf(' ', ' ', ' '), 26 | mutableListOf(' ', ' ', ' '), 27 | mutableListOf(' ', ' ', ' '), 28 | ), 29 | turn = 'X' 30 | ) 31 | } 32 | 33 | private fun isMoveValid(positions: List): Boolean { 34 | return try { 35 | ticTacToeData.board[positions[0]][positions[1]] != ' ' 36 | } catch (_: Exception) { 37 | true 38 | } 39 | } 40 | 41 | private fun setMove(positions: List) { 42 | ticTacToeData.board[positions[0]][positions[1]] = ticTacToeData.turn 43 | } 44 | 45 | private fun getStatusGame(): StatusGame { 46 | return when { 47 | isWinner() -> StatusGame.Win(ticTacToeData.turn) 48 | 49 | isBoardFull() -> StatusGame.Draw 50 | 51 | else -> { 52 | nextPlayer() 53 | StatusGame.Progress(ticTacToeData.turn) 54 | } 55 | } 56 | } 57 | 58 | private fun nextPlayer() { 59 | ticTacToeData = ticTacToeData.copy(turn = if (ticTacToeData.turn == 'X') 'O' else 'X') 60 | } 61 | 62 | private fun isWinner(): Boolean { 63 | with(ticTacToeData) { 64 | for (i in 0..2) { 65 | if (board[i][0] == ticTacToeData.turn && board[i][1] == ticTacToeData.turn && board[i][2] == ticTacToeData.turn || 66 | board[0][i] == ticTacToeData.turn && board[1][i] == ticTacToeData.turn && board[2][i] == ticTacToeData.turn 67 | ) return true 68 | } 69 | 70 | return (board[0][0] == ticTacToeData.turn && board[1][1] == ticTacToeData.turn && board[2][2] == ticTacToeData.turn) || 71 | board[2][0] == ticTacToeData.turn && board[1][1] == ticTacToeData.turn && board[0][2] == ticTacToeData.turn 72 | } 73 | } 74 | 75 | private fun isBoardFull(): Boolean { 76 | ticTacToeData.board.forEach { row -> 77 | row.forEach { cell -> 78 | if (cell == ' ') return false 79 | } 80 | } 81 | 82 | return true 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/presentation/TicTacToeViewModel.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.presentation 2 | 3 | import androidx.lifecycle.ViewModel 4 | import com.example.tictactoe.domain.TicTacToeHandler 5 | import com.example.tictactoe.presentation.mvi.TicTacToeUIEvent 6 | import com.example.tictactoe.presentation.mvi.TicTacToeState 7 | import com.example.tictactoe.utils.StatusGame 8 | import kotlinx.coroutines.flow.MutableStateFlow 9 | import kotlinx.coroutines.flow.asStateFlow 10 | import kotlinx.coroutines.flow.update 11 | 12 | class TicTacToeViewModel( 13 | private val ticTacToe: TicTacToeHandler 14 | ) : ViewModel() { 15 | private val _ticTacToeState = MutableStateFlow(TicTacToeState()) 16 | val uiState = _ticTacToeState.asStateFlow() 17 | 18 | fun onEvent(event: TicTacToeUIEvent) { 19 | when (event) { 20 | is TicTacToeUIEvent.DrawBoard -> updateBoard() 21 | is TicTacToeUIEvent.MakeMove -> makeMove(move = event.move) 22 | is TicTacToeUIEvent.RestartGame -> restartGame() 23 | is TicTacToeUIEvent.UpdateText -> updateText(text = event.text) 24 | is TicTacToeUIEvent.UpdateVisibilityText -> updateVisibilityText(isVisible = event.isVisible) 25 | } 26 | } 27 | 28 | private fun updateBoard() { 29 | _ticTacToeState.update { it.copy(board = ticTacToe.getBoard()) } 30 | } 31 | 32 | private fun makeMove(move: String) { 33 | when (val statusGame = ticTacToe.makeMove(move)) { 34 | is StatusGame.Progress -> { 35 | _ticTacToeState.update { 36 | it.copy( 37 | currentTurn = statusGame.turn, 38 | error = null 39 | ) 40 | } 41 | } 42 | 43 | is StatusGame.Draw -> { 44 | _ticTacToeState.update { 45 | it.copy( 46 | isDraw = true, 47 | isFinished = true 48 | ) 49 | } 50 | } 51 | 52 | is StatusGame.Win -> { 53 | _ticTacToeState.update { 54 | it.copy( 55 | winner = statusGame.turn, 56 | isFinished = true, 57 | error = null 58 | ) 59 | } 60 | } 61 | 62 | is StatusGame.Error -> { 63 | _ticTacToeState.update { it.copy(error = statusGame.message) } 64 | } 65 | } 66 | } 67 | 68 | private fun restartGame() { 69 | ticTacToe.restartGame() 70 | 71 | _ticTacToeState.update { 72 | it.copy( 73 | board = ticTacToe.getBoard(), 74 | currentTurn = 'X', 75 | error = null, 76 | winner = null, 77 | isFinished = false, 78 | isDraw = false 79 | ) 80 | } 81 | } 82 | 83 | private fun updateText(text: String) { 84 | _ticTacToeState.update { it.copy(textState = text) } 85 | } 86 | 87 | private fun updateVisibilityText(isVisible: Boolean) { 88 | _ticTacToeState.update { it.copy(isVisibleText = isVisible) } 89 | } 90 | } -------------------------------------------------------------------------------- /app/src/main/java/com/example/tictactoe/presentation/TicTacToeScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.tictactoe.presentation 2 | 3 | import androidx.compose.animation.AnimatedVisibility 4 | import androidx.compose.foundation.layout.Arrangement 5 | import androidx.compose.foundation.layout.Column 6 | import androidx.compose.foundation.layout.Spacer 7 | import androidx.compose.foundation.layout.fillMaxSize 8 | import androidx.compose.foundation.layout.height 9 | import androidx.compose.material3.Button 10 | import androidx.compose.material3.Text 11 | import androidx.compose.runtime.Composable 12 | import androidx.compose.runtime.LaunchedEffect 13 | import androidx.compose.runtime.collectAsState 14 | import androidx.compose.runtime.getValue 15 | import androidx.compose.ui.Alignment 16 | import androidx.compose.ui.Modifier 17 | import androidx.compose.ui.res.stringResource 18 | import com.example.tictactoe.R 19 | import com.example.tictactoe.presentation.mvi.TicTacToeUIEvent 20 | import com.example.tictactoe.presentation.widgets.Board 21 | import com.example.tictactoe.ui.theme.SpacerPadding 22 | import org.koin.androidx.compose.koinViewModel 23 | 24 | @Composable 25 | fun TicTacToeScreen( 26 | modifier: Modifier = Modifier, 27 | viewModel: TicTacToeViewModel = koinViewModel() 28 | ) { 29 | val uiState by viewModel.uiState.collectAsState() 30 | 31 | LaunchedEffect(key1 = true) { 32 | viewModel.onEvent(event = TicTacToeUIEvent.DrawBoard) 33 | } 34 | 35 | Column( 36 | modifier = 37 | modifier.fillMaxSize(), 38 | verticalArrangement = Arrangement.Center, 39 | horizontalAlignment = Alignment.CenterHorizontally 40 | ) { 41 | Board(uiState) { 42 | viewModel.onEvent(event = TicTacToeUIEvent.MakeMove(move = it)) 43 | } 44 | 45 | Spacer(modifier = Modifier.height(SpacerPadding)) 46 | 47 | 48 | when { 49 | !uiState.isFinished && uiState.error == null -> { 50 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateText(text = "Current Player: ${uiState.currentTurn}")) 51 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateVisibilityText(isVisible = true)) 52 | } 53 | 54 | uiState.error != null -> { 55 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateText(text = "${uiState.error}")) 56 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateVisibilityText(isVisible = true)) 57 | } 58 | 59 | uiState.winner != null -> { 60 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateText(text = "Winner Player: ${uiState.winner}")) 61 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateVisibilityText(isVisible = true)) 62 | } 63 | 64 | uiState.isDraw -> { 65 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateText(text = "Draw")) 66 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateVisibilityText(isVisible = true)) 67 | } 68 | 69 | else -> { 70 | viewModel.onEvent(event = TicTacToeUIEvent.UpdateVisibilityText(isVisible = false)) 71 | } 72 | } 73 | 74 | AnimatedVisibility(visible = uiState.isVisibleText) { 75 | Text(text = uiState.textState) 76 | } 77 | 78 | Spacer(modifier = Modifier.height(SpacerPadding)) 79 | 80 | if (uiState.isFinished) { 81 | Button( 82 | onClick = { viewModel.onEvent(event = TicTacToeUIEvent.RestartGame) } 83 | ) { 84 | Text(text = stringResource(R.string.restart_button)) 85 | } 86 | } 87 | } 88 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin or MSYS, switch paths to Windows format before running java 130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | JAVACMD=`cygpath --unix "$JAVACMD"` 135 | 136 | # We build the pattern for arguments to be converted via cygpath 137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 138 | SEP="" 139 | for dir in $ROOTDIRSRAW ; do 140 | ROOTDIRS="$ROOTDIRS$SEP$dir" 141 | SEP="|" 142 | done 143 | OURCYGPATTERN="(^($ROOTDIRS))" 144 | # Add a user-defined pattern to the cygpath arguments 145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 147 | fi 148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 149 | i=0 150 | for arg in "$@" ; do 151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 153 | 154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 156 | else 157 | eval `echo args$i`="\"$arg\"" 158 | fi 159 | i=`expr $i + 1` 160 | done 161 | case $i in 162 | 0) set -- ;; 163 | 1) set -- "$args0" ;; 164 | 2) set -- "$args0" "$args1" ;; 165 | 3) set -- "$args0" "$args1" "$args2" ;; 166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;; 167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 172 | esac 173 | fi 174 | 175 | # Escape application args 176 | save () { 177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 178 | echo " " 179 | } 180 | APP_ARGS=`save "$@"` 181 | 182 | # Collect all arguments for the java command, following the shell quoting and substitution rules 183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 184 | 185 | exec "$JAVACMD" "$@" 186 | --------------------------------------------------------------------------------