├── .all-contributorsrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── dummy-google-services.json ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── bebetterprogrammer │ │ └── tictactoe │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── winner_anim.json │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── bebetterprogrammer │ │ │ └── tictactoe │ │ │ ├── activities │ │ │ ├── BaseActivity.kt │ │ │ ├── GamePlayActivity.kt │ │ │ ├── HomePageActivity.kt │ │ │ ├── MusicService.kt │ │ │ ├── PlayWithFriendActivity.kt │ │ │ └── PlayWithJarvisActivity.kt │ │ │ └── utils │ │ │ ├── GamePlayUtility.kt │ │ │ ├── GetPosition.kt │ │ │ └── Result.kt │ └── res │ │ ├── anim │ │ ├── fade_in.xml │ │ ├── result_fade_in.xml │ │ ├── result_fade_out.xml │ │ └── vibrate.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_circle_secondary.xml │ │ ├── ic_circle_white.xml │ │ ├── ic_cross_secondary.xml │ │ ├── ic_cross_white.xml │ │ ├── ic_cross_yellow.xml │ │ ├── ic_game_board.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_music_off.xml │ │ ├── ic_music_on.xml │ │ ├── ic_rating.xml │ │ ├── ic_setting_secondary.xml │ │ ├── ic_settings.xml │ │ ├── ic_share.xml │ │ ├── ic_trophy_golden.xml │ │ ├── ic_trophy_grey.xml │ │ ├── ic_trophy_lost.xml │ │ ├── ic_trophy_tie.xml │ │ ├── ic_trophy_won.xml │ │ ├── layout_bg.xml │ │ ├── layout_button.xml │ │ ├── layout_dialog.xml │ │ ├── layout_difficulty_button.xml │ │ ├── layout_difficulty_button_secondary.xml │ │ ├── layout_play_button.xml │ │ └── layout_quit_button.xml │ │ ├── font │ │ ├── righteous.ttf │ │ └── snell_round_hand.ttf │ │ ├── layout │ │ ├── activity_gameplay.xml │ │ ├── activity_home_page.xml │ │ ├── activity_play_with_friend.xml │ │ ├── activity_play_with_jarvis.xml │ │ └── result_dialog.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── cartoon_pop_mouth_004.mp3 │ │ ├── cartoon_pop_small_lid.mp3 │ │ ├── game_designed_bubble_pop_03.mp3 │ │ ├── game_sound_double_short_generic_click_pop_002.mp3 │ │ ├── game_sound_double_short_generic_click_pop_003.mp3 │ │ ├── game_sound_single_short_generic_click_pop.mp3 │ │ └── sky_puzzle.mp3 │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── bebetterprogrammer │ └── tictactoe │ └── ExampleUnitTest.kt ├── design ├── .DS_Store ├── playstore │ ├── Cover.png │ ├── Cover_5x.png │ ├── SS_1.png │ ├── SS_2.png │ ├── SS_3.png │ ├── SS_4.png │ └── SS_5.png ├── v1.0 │ └── plan │ │ ├── 1.Home.png │ │ ├── 10.VsFriendTie.png │ │ ├── 2.VsJarvisSetup.png │ │ ├── 3.VsJarvisPlay.png │ │ ├── 4.VsJarvisWon.png │ │ ├── 5.VsJarvisTie.png │ │ ├── 6.VsJarvisLost.png │ │ ├── 7.VsFriendSetup.png │ │ ├── 8.VsFriendPlay.png │ │ └── 9.VsFriendWon.png └── videos │ └── v1.0.mp4 ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/dummy-google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/dummy-google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/bebetterprogrammer/tictactoe/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/androidTest/java/com/bebetterprogrammer/tictactoe/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/winner_anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/assets/winner_anim.json -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/activities/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/activities/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/activities/GamePlayActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/activities/GamePlayActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/activities/HomePageActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/activities/HomePageActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/activities/MusicService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/activities/MusicService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/activities/PlayWithFriendActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/activities/PlayWithFriendActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/activities/PlayWithJarvisActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/activities/PlayWithJarvisActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/utils/GamePlayUtility.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/utils/GamePlayUtility.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/utils/GetPosition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/utils/GetPosition.kt -------------------------------------------------------------------------------- /app/src/main/java/com/bebetterprogrammer/tictactoe/utils/Result.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/java/com/bebetterprogrammer/tictactoe/utils/Result.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/result_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/anim/result_fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/result_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/anim/result_fade_out.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/vibrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/anim/vibrate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_circle_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_circle_secondary.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_circle_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_circle_white.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cross_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_cross_secondary.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cross_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_cross_white.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cross_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_cross_yellow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_game_board.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_game_board.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_music_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_music_off.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_music_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_music_on.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_rating.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_rating.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_setting_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_setting_secondary.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trophy_golden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_trophy_golden.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trophy_grey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_trophy_grey.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trophy_lost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_trophy_lost.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trophy_tie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_trophy_tie.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_trophy_won.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/ic_trophy_won.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/layout_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/layout_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/layout_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_difficulty_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/layout_difficulty_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_difficulty_button_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/layout_difficulty_button_secondary.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_play_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/layout_play_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_quit_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/drawable/layout_quit_button.xml -------------------------------------------------------------------------------- /app/src/main/res/font/righteous.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/font/righteous.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/snell_round_hand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/font/snell_round_hand.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gameplay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/layout/activity_gameplay.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_home_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/layout/activity_home_page.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_play_with_friend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/layout/activity_play_with_friend.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_play_with_jarvis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/layout/activity_play_with_jarvis.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/result_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/layout/result_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/cartoon_pop_mouth_004.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/raw/cartoon_pop_mouth_004.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/cartoon_pop_small_lid.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/raw/cartoon_pop_small_lid.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/game_designed_bubble_pop_03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/raw/game_designed_bubble_pop_03.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/game_sound_double_short_generic_click_pop_002.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/raw/game_sound_double_short_generic_click_pop_002.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/game_sound_double_short_generic_click_pop_003.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/raw/game_sound_double_short_generic_click_pop_003.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/game_sound_single_short_generic_click_pop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/raw/game_sound_single_short_generic_click_pop.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/sky_puzzle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/raw/sky_puzzle.mp3 -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/bebetterprogrammer/tictactoe/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/app/src/test/java/com/bebetterprogrammer/tictactoe/ExampleUnitTest.kt -------------------------------------------------------------------------------- /design/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/.DS_Store -------------------------------------------------------------------------------- /design/playstore/Cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/playstore/Cover.png -------------------------------------------------------------------------------- /design/playstore/Cover_5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/playstore/Cover_5x.png -------------------------------------------------------------------------------- /design/playstore/SS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/playstore/SS_1.png -------------------------------------------------------------------------------- /design/playstore/SS_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/playstore/SS_2.png -------------------------------------------------------------------------------- /design/playstore/SS_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/playstore/SS_3.png -------------------------------------------------------------------------------- /design/playstore/SS_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/playstore/SS_4.png -------------------------------------------------------------------------------- /design/playstore/SS_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/playstore/SS_5.png -------------------------------------------------------------------------------- /design/v1.0/plan/1.Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/1.Home.png -------------------------------------------------------------------------------- /design/v1.0/plan/10.VsFriendTie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/10.VsFriendTie.png -------------------------------------------------------------------------------- /design/v1.0/plan/2.VsJarvisSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/2.VsJarvisSetup.png -------------------------------------------------------------------------------- /design/v1.0/plan/3.VsJarvisPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/3.VsJarvisPlay.png -------------------------------------------------------------------------------- /design/v1.0/plan/4.VsJarvisWon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/4.VsJarvisWon.png -------------------------------------------------------------------------------- /design/v1.0/plan/5.VsJarvisTie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/5.VsJarvisTie.png -------------------------------------------------------------------------------- /design/v1.0/plan/6.VsJarvisLost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/6.VsJarvisLost.png -------------------------------------------------------------------------------- /design/v1.0/plan/7.VsFriendSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/7.VsFriendSetup.png -------------------------------------------------------------------------------- /design/v1.0/plan/8.VsFriendPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/8.VsFriendPlay.png -------------------------------------------------------------------------------- /design/v1.0/plan/9.VsFriendWon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/v1.0/plan/9.VsFriendWon.png -------------------------------------------------------------------------------- /design/videos/v1.0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/design/videos/v1.0.mp4 -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Better-Programmer/Tic-Tac-Toe/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='Tic Tac Toe' 2 | include ':app' 3 | --------------------------------------------------------------------------------