├── app ├── .gitignore ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── drawables.xml │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── styles.xml │ │ │ └── colors.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_drawer.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_splash.png │ │ │ ├── icon_drawer.png │ │ │ ├── splash_icon.png │ │ │ ├── icon_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_drawer.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_splash.png │ │ │ ├── icon_drawer.png │ │ │ ├── splash_icon.png │ │ │ ├── icon_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_drawer.png │ │ │ ├── ic_splash.png │ │ │ ├── ic_launcher.png │ │ │ ├── icon_drawer.png │ │ │ ├── splash_icon.png │ │ │ ├── icon_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_drawer.png │ │ │ ├── ic_splash.png │ │ │ ├── ic_launcher.png │ │ │ ├── icon_drawer.png │ │ │ ├── splash_icon.png │ │ │ ├── icon_launcher.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ ├── drawable-hdpi │ │ │ ├── ic_cpu_easy.png │ │ │ ├── ic_cpu_hard.png │ │ │ └── ic_info_black_24dp.png │ │ ├── drawable-mdpi │ │ │ ├── ic_cpu_easy.png │ │ │ ├── ic_cpu_hard.png │ │ │ ├── ic_info_black_24dp.png │ │ │ ├── ic_people_black_24px.png │ │ │ └── ic_person_black_24px.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_drawer.png │ │ │ ├── ic_splash.png │ │ │ ├── ic_launcher.png │ │ │ ├── icon_drawer.png │ │ │ ├── icon_launcher.png │ │ │ ├── splash_icon.png │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ └── ic_launcher_adaptive_fore.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_cpu_easy.png │ │ │ ├── ic_cpu_hard.png │ │ │ ├── ic_info_black_24dp.png │ │ │ ├── ic_trophy_black_48dp.png │ │ │ ├── ic_trophy_award_black_48dp.png │ │ │ └── splash_screen.xml │ │ ├── drawable-xxhdpi │ │ │ ├── ic_cpu_easy.png │ │ │ ├── ic_cpu_hard.png │ │ │ └── ic_info_black_24dp.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_cpu_easy.png │ │ │ ├── ic_cpu_hard.png │ │ │ └── ic_info_black_24dp.png │ │ ├── drawable │ │ │ ├── secuso_logo_blau_blau.png │ │ │ ├── privacyfriendlyappslogo.png │ │ │ ├── button_normal.xml │ │ │ ├── button_disabled.xml │ │ │ ├── button_fullwidth.xml │ │ │ ├── ic_menu_home.xml │ │ │ ├── ic_keyboard_arrow_left_black_24dp.xml │ │ │ ├── ic_keyboard_arrow_right_black_24dp.xml │ │ │ ├── ic_menu_tutorial.xml │ │ │ ├── ic_menu_info.xml │ │ │ ├── ship_front_right.xml │ │ │ ├── ship_front_down.xml │ │ │ ├── ship_front_left.xml │ │ │ ├── ship_front_up.xml │ │ │ ├── ship_middle_right.xml │ │ │ ├── ship_middle_down.xml │ │ │ ├── ship_middle_left.xml │ │ │ ├── ship_middle_up.xml │ │ │ ├── ship_back_right.xml │ │ │ ├── ship_back_up.xml │ │ │ ├── ship_back_down.xml │ │ │ ├── ship_back_left.xml │ │ │ ├── ic_menu_help.xml │ │ │ ├── arrow_down_black.xml │ │ │ ├── arrow_left_black.xml │ │ │ ├── arrow_right_black.xml │ │ │ ├── arrow_up_black.xml │ │ │ ├── arrow_rotate_right_black.xml │ │ │ ├── arrow_rotate_left_black.xml │ │ │ └── ic_menu_settings.xml │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ ├── values-v21 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ ├── layout │ │ │ ├── fragment_size_main.xml │ │ │ ├── placement_dialog.xml │ │ │ ├── placement_invalid_dialog.xml │ │ │ ├── toolbar.xml │ │ │ ├── placement_switch_player_dialog.xml │ │ │ ├── help_dialog.xml │ │ │ ├── game_dialog.xml │ │ │ ├── fragment_mode_main.xml │ │ │ ├── tutorial_slide1.xml │ │ │ ├── nav_header_main.xml │ │ │ ├── activity_tutorial.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_ship_set.xml │ │ │ ├── activity_place_ship.xml │ │ │ ├── activity_help.xml │ │ │ ├── lose_dialog.xml │ │ │ ├── tutorial_slide2.xml │ │ │ ├── activity_game_content.xml │ │ │ ├── activity_game.xml │ │ │ ├── content_place_ship.xml │ │ │ ├── win_dialog.xml │ │ │ └── activity_about.xml │ │ ├── layout-land │ │ │ ├── fragment_size_main.xml │ │ │ ├── fragment_mode_main.xml │ │ │ ├── activity_game_content.xml │ │ │ ├── content_place_ship.xml │ │ │ ├── win_dialog.xml │ │ │ ├── content_main.xml │ │ │ └── activity_about.xml │ │ ├── menu │ │ │ └── activity_main_drawer.xml │ │ ├── xml │ │ │ └── help.xml │ │ ├── layout-xlarge │ │ │ ├── activity_about.xml │ │ │ └── content_main.xml │ │ └── layout-xlarge-land │ │ │ └── activity_about.xml │ │ ├── java │ │ └── org │ │ │ └── secuso │ │ │ └── privacyfriendlybattleship │ │ │ ├── game │ │ │ ├── Direction.kt │ │ │ ├── GridSize.kt │ │ │ ├── BattleshipsTimer.kt │ │ │ ├── GameMode.kt │ │ │ ├── GameGrid.kt │ │ │ └── GameCell.kt │ │ │ ├── ui │ │ │ ├── SplashActivity.kt │ │ │ ├── HelpActivity.kt │ │ │ ├── GameActivityLayoutProvider.kt │ │ │ ├── AboutActivity.kt │ │ │ ├── AppCompatPreferenceActivity.kt │ │ │ └── GameGridAdapter.kt │ │ │ └── util │ │ │ └── PrefManager.kt │ │ └── AndroidManifest.xml ├── lint.xml ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── fastlane └── metadata │ └── android │ ├── de-DE │ ├── title.txt │ ├── short_description.txt │ ├── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ └── 2.png │ └── full_description.txt │ └── en-US │ ├── title.txt │ ├── short_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ └── 2.png │ └── full_description.txt ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── .gitignore ├── .github └── workflows │ ├── changelog.yml │ ├── ci.yml │ └── android-test.yml ├── CHANGELOG.md ├── gradlew.bat └── CONTRIBUTING.md /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Schiffe versenken (Privacy Friendly) -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Battleship Game (Privacy Friendly) -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | (SECUSO) Play the battleship game on your smartphone without ads or permissions. -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | (SECUSO) Spiele "Schiffe versenken" bequem auf dem Smartphone, ohne Werbung oder Berechtigungen. -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | android.enableJetifier=true 2 | android.useAndroidX=true 3 | android.nonTransitiveRClass=false 4 | android.nonFinalResIds=false 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-hdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-hdpi/icon_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-hdpi/splash_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-mdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-mdpi/icon_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-mdpi/splash_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cpu_easy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-hdpi/ic_cpu_easy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cpu_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-hdpi/ic_cpu_hard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cpu_easy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-mdpi/ic_cpu_easy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cpu_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-mdpi/ic_cpu_hard.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-hdpi/icon_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-mdpi/icon_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xhdpi/icon_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xhdpi/splash_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxhdpi/icon_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxhdpi/splash_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cpu_easy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xhdpi/ic_cpu_easy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cpu_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xhdpi/ic_cpu_hard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cpu_easy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xxhdpi/ic_cpu_easy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cpu_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xxhdpi/ic_cpu_hard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cpu_easy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cpu_easy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cpu_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cpu_hard.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xhdpi/icon_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxhdpi/icon_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxxhdpi/icon_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxxhdpi/icon_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxxhdpi/splash_icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/fastlane/metadata/android/de-DE/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/secuso_logo_blau_blau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable/secuso_logo_blau_blau.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-hdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-mdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/privacyfriendlyappslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable/privacyfriendlyappslogo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_people_black_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-mdpi/ic_people_black_24px.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_person_black_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-mdpi/ic_person_black_24px.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_trophy_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xhdpi/ic_trophy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_trophy_award_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecUSo/privacy-friendly-battleship/HEAD/app/src/main/res/drawable-xhdpi/ic_trophy_award_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_fullwidth.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_home.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_arrow_left_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_arrow_right_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_tutorial.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/splash_screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_info.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_front_right.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_front_down.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_front_left.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_front_up.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_middle_right.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_middle_down.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_middle_left.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_middle_up.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_back_right.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_back_up.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_back_down.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ship_back_left.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | /*/build/ 3 | 4 | # Crashlytics configuations 5 | com_crashlytics_export_strings.xml 6 | 7 | # Local configuration file (sdk path, etc) 8 | local.properties 9 | 10 | # Gradle generated files 11 | .gradle/ 12 | 13 | # Signing files 14 | .signing/ 15 | 16 | # User-specific configurations 17 | .idea/* 18 | *.iml 19 | 20 | # OS-specific files 21 | .DS_Store 22 | .DS_Store? 23 | ._* 24 | .Spotlight-V100 25 | .Trashes 26 | ehthumbs.db 27 | Thumbs.db 28 | 29 | # Documents 30 | *.pdf 31 | *.doc 32 | *.docx 33 | *.odt 34 | 35 | build/ 36 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_help.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_down_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_left_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_right_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_up_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- 1 | name: Changelog Generation 2 | 3 | on: 4 | release: 5 | types: [published] 6 | workflow_dispatch: 7 | 8 | jobs: 9 | changelog: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v3 13 | with: 14 | submodules: 'recursive' 15 | ref: master 16 | - uses: rhysd/changelog-from-release/action@v3 17 | with: 18 | file: CHANGELOG.md 19 | pull_request: true 20 | github_token: ${{ secrets.GITHUB_TOKEN }} 21 | commit_summary_template: 'update changelog for %s changes' 22 | args: -l 2 23 | header: | 24 | # Changelog 25 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_size_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 160dp 4 | 5 | 16dp 6 | 16dp 7 | 8 | 30dp 9 | 20dp 10 | 120dp 11 | 30dp 12 | 16dp 13 | 40dp 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout-land/fragment_size_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/layout/placement_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 11 | 15 | 16 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/yonjuni/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/main/res/layout/placement_invalid_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 11 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/toolbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/placement_switch_player_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 11 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_rotate_right_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_rotate_left_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 16 | 17 | 21 | 22 |