├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── libraries │ ├── LeonidsLib_1_3_1.xml │ ├── animated_vector_drawable_23_2_0.xml │ ├── appcompat_v7_23_2_0.xml │ ├── design_23_2_0.xml │ ├── hamcrest_core_1_3.xml │ ├── junit_4_12.xml │ ├── library_1_0_1.xml │ ├── library_1_1_3.xml │ ├── library_2_4_0.xml │ ├── play_services_ads_8_4_0.xml │ ├── play_services_appindexing_8_4_0.xml │ ├── play_services_base_8_4_0.xml │ ├── play_services_basement_8_4_0.xml │ ├── play_services_drive_8_4_0.xml │ ├── play_services_games_8_4_0.xml │ ├── play_services_plus_8_4_0.xml │ ├── recyclerview_v7_23_2_0.xml │ ├── support_annotations_23_2_0.xml │ ├── support_v4_23_2_0.xml │ └── support_vector_drawable_23_2_0.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── vcs.xml └── workspace.xml ├── BaseGameUtils ├── .gitignore ├── BaseGameUtils.iml ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── google │ │ └── example │ │ └── games │ │ └── basegameutils │ │ ├── BaseGameActivity.java │ │ ├── BaseGameUtils.java │ │ ├── GameHelper.java │ │ └── GameHelperUtils.java │ └── res │ └── values │ ├── gamehelper_strings.xml │ └── strings.xml ├── FixMath.iml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── pl │ │ └── hypeapp │ │ └── fixmath │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── pl │ │ │ └── hypeapp │ │ │ └── fixmath │ │ │ ├── BitmapManager.java │ │ │ ├── Calculations.java │ │ │ ├── ChooseTimeChallenge.java │ │ │ ├── FragmentAchivement.java │ │ │ ├── FragmentLevelPage1.java │ │ │ ├── FragmentLevelPage2.java │ │ │ ├── FragmentLevelPage3.java │ │ │ ├── FragmentLevelPage4.java │ │ │ ├── FragmentPlay.java │ │ │ ├── FragmentSettings.java │ │ │ ├── FragmentTimeAttack.java │ │ │ ├── ImageUtil.java │ │ │ ├── Keyboard2.java │ │ │ ├── Level.java │ │ │ ├── LevelMenuActivity.java │ │ │ ├── LevelPagerAdapter.java │ │ │ ├── Logic.java │ │ │ ├── MenuActivity.java │ │ │ ├── MyProgress.java │ │ │ ├── PagerAdapter.java │ │ │ ├── PlayActivity.java │ │ │ ├── SFXManager.java │ │ │ ├── SettingsActivity.java │ │ │ ├── SplashScreenActivity.java │ │ │ ├── TimeAttackActivity.java │ │ │ ├── TimeKeyboard.java │ │ │ └── TutorialActivity.java │ └── res │ │ ├── drawable-hdpi │ │ ├── achivement_button.png │ │ ├── achivement_small_button.png │ │ ├── arcade_background.png │ │ ├── arcade_level_complete_window.png │ │ ├── backspace_button.png │ │ ├── hamburger_03.png │ │ ├── hamburger_03_03.png │ │ ├── keyboard_close_button.png │ │ ├── kwadrat.png │ │ ├── kwadrat_blue.png │ │ ├── kwadrat_f.png │ │ ├── kwadrat_ramka.png │ │ ├── leaderboard_button.png │ │ ├── level_background.png │ │ ├── level_choosing_btn.png │ │ ├── logo_menu.png │ │ ├── logo_s.png │ │ ├── menu_background.png │ │ ├── nextlevel_btn.png │ │ ├── okat.png │ │ ├── okat_ramka.png │ │ ├── okrag.png │ │ ├── okrag_ramka.png │ │ ├── okrag_z.png │ │ ├── play_button.png │ │ ├── play_button_loggin.png │ │ ├── play_button_to_loggin.png │ │ ├── question.png │ │ ├── question_ramka.png │ │ ├── repeat_level_btn.png │ │ ├── romb.png │ │ ├── romb_f.png │ │ ├── romb_f_ramka.png │ │ ├── romb_green.png │ │ ├── romb_ramka.png │ │ ├── settings_button.png │ │ ├── skat.png │ │ ├── skat_ramka.png │ │ ├── splash_screen.png │ │ ├── time_attack_background_kwadrat.png │ │ ├── time_attack_background_kwadrat_blue.png │ │ ├── time_attack_background_kwadrat_f.png │ │ ├── time_attack_background_normal.png │ │ ├── time_attack_background_okat.png │ │ ├── time_attack_background_okrag.png │ │ ├── time_attack_background_question.png │ │ ├── time_attack_background_romb.png │ │ ├── time_attack_background_romb_f.png │ │ ├── time_attack_background_romb_green.png │ │ ├── time_attack_background_skat.png │ │ ├── time_attack_button.png │ │ ├── timeattac_choose_challenge.png │ │ └── timeattack_level_complete_window.png │ │ ├── drawable-ldpi │ │ ├── achivement_button.png │ │ ├── achivement_small_button.png │ │ ├── arcade_background.png │ │ ├── arcade_level_complete_window.png │ │ ├── backspace_button.png │ │ ├── hamburger_03.png │ │ ├── hamburger_03_03.png │ │ ├── keyboard_close_button.png │ │ ├── kwadrat.png │ │ ├── kwadrat_blue.png │ │ ├── kwadrat_f.png │ │ ├── kwadrat_ramka.png │ │ ├── leaderboard_button.png │ │ ├── level_background.png │ │ ├── level_button.png │ │ ├── level_button_closed.png │ │ ├── level_choosing_btn.png │ │ ├── levelcorrect_button.png │ │ ├── logo_menu.png │ │ ├── logo_s.png │ │ ├── menu_background.png │ │ ├── nextlevel_btn.png │ │ ├── okat.png │ │ ├── okat_ramka.png │ │ ├── okrag.png │ │ ├── okrag_ramka.png │ │ ├── okrag_z.png │ │ ├── play_button.png │ │ ├── play_button_loggin.png │ │ ├── play_button_to_loggin.png │ │ ├── question.png │ │ ├── question_ramka.png │ │ ├── repeat_level_btn.png │ │ ├── romb.png │ │ ├── romb_f.png │ │ ├── romb_f_ramka.png │ │ ├── romb_green.png │ │ ├── romb_ramka.png │ │ ├── settings_button.png │ │ ├── skat.png │ │ ├── skat_ramka.png │ │ ├── splash_screen.png │ │ ├── time_attack_background_kwadrat.png │ │ ├── time_attack_background_kwadrat_blue.png │ │ ├── time_attack_background_kwadrat_f.png │ │ ├── time_attack_background_normal.png │ │ ├── time_attack_background_okat.png │ │ ├── time_attack_background_okrag.png │ │ ├── time_attack_background_question.png │ │ ├── time_attack_background_romb.png │ │ ├── time_attack_background_romb_f.png │ │ ├── time_attack_background_romb_green.png │ │ ├── time_attack_background_skat.png │ │ ├── time_attack_button.png │ │ ├── timeattac_choose_challenge.png │ │ └── timeattack_level_complete_window.png │ │ ├── drawable-mdpi │ │ ├── achivement_button.png │ │ ├── achivement_small_button.png │ │ ├── arcade_background.png │ │ ├── arcade_level_complete_window.png │ │ ├── backspace_button.png │ │ ├── hamburger_03.png │ │ ├── hamburger_03_03.png │ │ ├── keyboard_close_button.png │ │ ├── kwadrat.png │ │ ├── kwadrat_blue.png │ │ ├── kwadrat_f.png │ │ ├── kwadrat_ramka.png │ │ ├── leaderboard_button.png │ │ ├── level_background.png │ │ ├── level_button.png │ │ ├── level_button_closed.png │ │ ├── level_choosing_btn.png │ │ ├── levelcorrect_button.png │ │ ├── logo_menu.png │ │ ├── logo_s.png │ │ ├── menu_background.png │ │ ├── nextlevel_btn.png │ │ ├── okat.png │ │ ├── okat_ramka.png │ │ ├── okrag.png │ │ ├── okrag_ramka.png │ │ ├── okrag_z.png │ │ ├── play_button.png │ │ ├── play_button_loggin.png │ │ ├── play_button_to_loggin.png │ │ ├── question.png │ │ ├── question_ramka.png │ │ ├── repeat_level_btn.png │ │ ├── romb.png │ │ ├── romb_f.png │ │ ├── romb_f_ramka.png │ │ ├── romb_green.png │ │ ├── romb_ramka.png │ │ ├── settings_button.png │ │ ├── skat.png │ │ ├── skat_ramka.png │ │ ├── splash_screen.png │ │ ├── time_attack_background_kwadrat.png │ │ ├── time_attack_background_kwadrat_blue.png │ │ ├── time_attack_background_kwadrat_f.png │ │ ├── time_attack_background_normal.png │ │ ├── time_attack_background_okat.png │ │ ├── time_attack_background_okrag.png │ │ ├── time_attack_background_question.png │ │ ├── time_attack_background_romb.png │ │ ├── time_attack_background_romb_f.png │ │ ├── time_attack_background_romb_green.png │ │ ├── time_attack_background_skat.png │ │ ├── time_attack_button.png │ │ ├── timeattac_choose_challenge.png │ │ └── timeattack_level_complete_window.png │ │ ├── drawable-nodpi │ │ ├── aaas.png │ │ ├── correct.png │ │ ├── gray_dot.png │ │ ├── level_button.png │ │ ├── level_button_closed.png │ │ ├── levelcorrect_button.png │ │ ├── ok_button.png │ │ ├── pause_btn.png │ │ ├── play_btn.png │ │ ├── pointer_kwadrat.png │ │ ├── pointer_kwadrat_blue.png │ │ ├── pointer_kwadrat_blue_rotated.png │ │ ├── pointer_kwadrat_f.png │ │ ├── pointer_kwadrat_f_rotated.png │ │ ├── pointer_kwadrat_rotated.png │ │ ├── pointer_okat.png │ │ ├── pointer_okat_rotated.png │ │ ├── pointer_okrag.png │ │ ├── pointer_okrag_rotated.png │ │ ├── pointer_question.png │ │ ├── pointer_question_rotated.png │ │ ├── pointer_romb.png │ │ ├── pointer_romb_green.png │ │ ├── pointer_romb_green_rotated.png │ │ ├── pointer_romb_rotated.png │ │ ├── pointer_rombf.png │ │ ├── pointer_rombf_rotated.png │ │ ├── pointer_skat.png │ │ ├── pointer_skat_rotated.png │ │ ├── share_button.png │ │ ├── star_white.png │ │ ├── transparent_for_corrects.png │ │ ├── tutorial.png │ │ └── yellow_dot.png │ │ ├── drawable-xhdpi │ │ ├── achivement_button.png │ │ ├── achivement_small_button.png │ │ ├── arcade_background.png │ │ ├── arcade_level_complete_window.png │ │ ├── backspace_button.png │ │ ├── hamburger_03.png │ │ ├── hamburger_03_03.png │ │ ├── keyboard_close_button.png │ │ ├── kwadrat.png │ │ ├── kwadrat_blue.png │ │ ├── kwadrat_f.png │ │ ├── kwadrat_ramka.png │ │ ├── leaderboard_button.png │ │ ├── level_background.png │ │ ├── level_button.png │ │ ├── level_button_closed.png │ │ ├── level_choosing_btn.png │ │ ├── levelcorrect_button.png │ │ ├── logo_menu.png │ │ ├── logo_s.png │ │ ├── menu_background.png │ │ ├── nextlevel_btn.png │ │ ├── okat.png │ │ ├── okat_ramka.png │ │ ├── okrag.png │ │ ├── okrag_ramka.png │ │ ├── okrag_z.png │ │ ├── play_button.png │ │ ├── play_button_loggin.png │ │ ├── play_button_to_loggin.png │ │ ├── pointer_kwadrat.png │ │ ├── pointer_kwadrat_blue.png │ │ ├── pointer_kwadrat_blue_rotated.png │ │ ├── pointer_kwadrat_f.png │ │ ├── pointer_kwadrat_f_rotated.png │ │ ├── pointer_kwadrat_rotated.png │ │ ├── pointer_okat.png │ │ ├── pointer_okat_rotated.png │ │ ├── pointer_okrag.png │ │ ├── pointer_okrag_rotated.png │ │ ├── pointer_question.png │ │ ├── pointer_question_rotated.png │ │ ├── pointer_romb.png │ │ ├── pointer_romb_green.png │ │ ├── pointer_romb_green_rotated.png │ │ ├── pointer_romb_rotated.png │ │ ├── pointer_rombf.png │ │ ├── pointer_rombf_rotated.png │ │ ├── pointer_skat.png │ │ ├── pointer_skat_rotated.png │ │ ├── question.png │ │ ├── question_ramka.png │ │ ├── repeat_level_btn.png │ │ ├── romb.png │ │ ├── romb_f.png │ │ ├── romb_f_ramka.png │ │ ├── romb_green.png │ │ ├── romb_ramka.png │ │ ├── settings_button.png │ │ ├── skat.png │ │ ├── skat_ramka.png │ │ ├── splash_screen.png │ │ ├── time_attack_background_kwadrat.png │ │ ├── time_attack_background_kwadrat_blue.png │ │ ├── time_attack_background_kwadrat_f.png │ │ ├── time_attack_background_normal.png │ │ ├── time_attack_background_okat.png │ │ ├── time_attack_background_okrag.png │ │ ├── time_attack_background_question.png │ │ ├── time_attack_background_romb.png │ │ ├── time_attack_background_romb_f.png │ │ ├── time_attack_background_romb_green.png │ │ ├── time_attack_background_skat.png │ │ ├── time_attack_button.png │ │ ├── timeattac_choose_challenge.png │ │ └── timeattack_level_complete_window.png │ │ ├── drawable-xxhdpi │ │ ├── level_button.png │ │ ├── level_button_closed.png │ │ ├── levelcorrect_button.png │ │ ├── pointer_kwadrat.png │ │ ├── pointer_kwadrat_blue.png │ │ ├── pointer_kwadrat_blue_rotated.png │ │ ├── pointer_kwadrat_f.png │ │ ├── pointer_kwadrat_f_rotated.png │ │ ├── pointer_kwadrat_rotated.png │ │ ├── pointer_okat.png │ │ ├── pointer_okat_rotated.png │ │ ├── pointer_okrag.png │ │ ├── pointer_okrag_rotated.png │ │ ├── pointer_question.png │ │ ├── pointer_question_rotated.png │ │ ├── pointer_romb.png │ │ ├── pointer_romb_green.png │ │ ├── pointer_romb_green_rotated.png │ │ ├── pointer_romb_rotated.png │ │ ├── pointer_rombf.png │ │ └── pointer_rombf_rotated.png │ │ ├── layout-normal │ │ └── activity_play.xml │ │ ├── layout │ │ ├── achivement_fragment.xml │ │ ├── activity_choose_time_challenge.xml │ │ ├── activity_level_menu.xml │ │ ├── activity_menu.xml │ │ ├── activity_settings.xml │ │ ├── activity_splash_screen.xml │ │ ├── level_page_four_fragment.xml │ │ ├── level_page_one_fragment.xml │ │ ├── level_page_three_fragment.xml │ │ ├── level_page_two_fragment.xml │ │ ├── play_fragment.xml │ │ ├── settings_fragment.xml │ │ ├── time_attack_fragment.xml │ │ ├── time_attack_layout.xml │ │ └── tutorial_layout.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── raw │ │ ├── close_keyboard_sfx.wav │ │ ├── correct_line_sfx.wav │ │ ├── error_keyboard_sfx.wav │ │ ├── keyboard_backspace_sfx.wav │ │ ├── keyboard_click_sfx.wav │ │ ├── new_background_sfx.wav │ │ ├── new_line_figure_click_sfx.wav │ │ ├── same_line_figure_click_sfx.wav │ │ └── timer_sfx.wav │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ └── strings.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── pl │ └── hypeapp │ └── fixmath │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | FixMath -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/LeonidsLib_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/LeonidsLib_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/animated_vector_drawable_23_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/animated_vector_drawable_23_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_23_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/appcompat_v7_23_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/design_23_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/design_23_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/junit_4_12.xml -------------------------------------------------------------------------------- /.idea/libraries/library_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/library_1_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/library_1_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/library_1_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/library_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/library_2_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_ads_8_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/play_services_ads_8_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_appindexing_8_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/play_services_appindexing_8_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_base_8_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/play_services_base_8_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_basement_8_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/play_services_basement_8_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_drive_8_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/play_services_drive_8_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_games_8_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/play_services_games_8_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_plus_8_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/play_services_plus_8_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/recyclerview_v7_23_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/recyclerview_v7_23_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_23_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/support_annotations_23_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_23_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/support_v4_23_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_vector_drawable_23_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/libraries/support_vector_drawable_23_2_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /BaseGameUtils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/.gitignore -------------------------------------------------------------------------------- /BaseGameUtils/BaseGameUtils.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/BaseGameUtils.iml -------------------------------------------------------------------------------- /BaseGameUtils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/build.gradle -------------------------------------------------------------------------------- /BaseGameUtils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /BaseGameUtils/src/main/java/com/google/example/games/basegameutils/BaseGameActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/src/main/java/com/google/example/games/basegameutils/BaseGameActivity.java -------------------------------------------------------------------------------- /BaseGameUtils/src/main/java/com/google/example/games/basegameutils/BaseGameUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/src/main/java/com/google/example/games/basegameutils/BaseGameUtils.java -------------------------------------------------------------------------------- /BaseGameUtils/src/main/java/com/google/example/games/basegameutils/GameHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/src/main/java/com/google/example/games/basegameutils/GameHelper.java -------------------------------------------------------------------------------- /BaseGameUtils/src/main/java/com/google/example/games/basegameutils/GameHelperUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/src/main/java/com/google/example/games/basegameutils/GameHelperUtils.java -------------------------------------------------------------------------------- /BaseGameUtils/src/main/res/values/gamehelper_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/src/main/res/values/gamehelper_strings.xml -------------------------------------------------------------------------------- /BaseGameUtils/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/BaseGameUtils/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /FixMath.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/FixMath.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/pl/hypeapp/fixmath/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/androidTest/java/pl/hypeapp/fixmath/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/BitmapManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/BitmapManager.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/Calculations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/Calculations.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/ChooseTimeChallenge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/ChooseTimeChallenge.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/FragmentAchivement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/FragmentAchivement.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/FragmentLevelPage1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/FragmentLevelPage1.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/FragmentLevelPage2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/FragmentLevelPage2.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/FragmentLevelPage3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/FragmentLevelPage3.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/FragmentLevelPage4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/FragmentLevelPage4.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/FragmentPlay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/FragmentPlay.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/FragmentSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/FragmentSettings.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/FragmentTimeAttack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/FragmentTimeAttack.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/ImageUtil.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/Keyboard2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/Keyboard2.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/Level.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/Level.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/LevelMenuActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/LevelMenuActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/LevelPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/LevelPagerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/Logic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/Logic.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/MenuActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/MenuActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/MyProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/MyProgress.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/PagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/PagerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/PlayActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/PlayActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/SFXManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/SFXManager.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/SplashScreenActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/SplashScreenActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/TimeAttackActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/TimeAttackActivity.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/TimeKeyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/TimeKeyboard.java -------------------------------------------------------------------------------- /app/src/main/java/pl/hypeapp/fixmath/TutorialActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/java/pl/hypeapp/fixmath/TutorialActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/achivement_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/achivement_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/achivement_small_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/achivement_small_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/arcade_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/arcade_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/arcade_level_complete_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/arcade_level_complete_window.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/backspace_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/backspace_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/hamburger_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/hamburger_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/hamburger_03_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/hamburger_03_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/keyboard_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/keyboard_close_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/kwadrat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/kwadrat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/leaderboard_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/leaderboard_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/level_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/level_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/level_choosing_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/level_choosing_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/logo_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/logo_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/logo_s.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menu_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/menu_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/nextlevel_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/nextlevel_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/okat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/okat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/okrag_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/okrag_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/okrag_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/okrag_z.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/play_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/play_button_loggin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/play_button_loggin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/play_button_to_loggin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/play_button_to_loggin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/question_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/question_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/repeat_level_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/repeat_level_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/romb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/romb_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/romb_f_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/romb_f_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/romb_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/romb_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/settings_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/settings_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/skat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/skat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/splash_screen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_romb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_romb_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_background_skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_background_skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/time_attack_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/time_attack_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/timeattac_choose_challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/timeattac_choose_challenge.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/timeattack_level_complete_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-hdpi/timeattack_level_complete_window.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/achivement_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/achivement_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/achivement_small_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/achivement_small_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/arcade_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/arcade_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/arcade_level_complete_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/arcade_level_complete_window.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/backspace_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/backspace_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/hamburger_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/hamburger_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/hamburger_03_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/hamburger_03_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/keyboard_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/keyboard_close_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/kwadrat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/kwadrat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/leaderboard_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/leaderboard_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/level_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/level_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/level_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/level_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/level_button_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/level_button_closed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/level_choosing_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/level_choosing_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/levelcorrect_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/levelcorrect_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/logo_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/logo_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/logo_s.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/menu_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/menu_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/nextlevel_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/nextlevel_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/okat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/okat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/okrag_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/okrag_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/okrag_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/okrag_z.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/play_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/play_button_loggin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/play_button_loggin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/play_button_to_loggin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/play_button_to_loggin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/question_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/question_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/repeat_level_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/repeat_level_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/romb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/romb_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/romb_f_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/romb_f_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/romb_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/romb_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/settings_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/settings_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/skat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/skat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/splash_screen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_romb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_romb_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_background_skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_background_skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/time_attack_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/time_attack_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/timeattac_choose_challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/timeattac_choose_challenge.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/timeattack_level_complete_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-ldpi/timeattack_level_complete_window.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/achivement_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/achivement_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/achivement_small_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/achivement_small_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/arcade_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/arcade_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/arcade_level_complete_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/arcade_level_complete_window.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/backspace_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/backspace_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/hamburger_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/hamburger_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/hamburger_03_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/hamburger_03_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/keyboard_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/keyboard_close_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/kwadrat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/kwadrat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/leaderboard_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/leaderboard_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/level_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/level_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/level_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/level_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/level_button_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/level_button_closed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/level_choosing_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/level_choosing_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/levelcorrect_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/levelcorrect_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/logo_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/logo_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/logo_s.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/menu_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/menu_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/nextlevel_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/nextlevel_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/okat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/okat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/okrag_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/okrag_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/okrag_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/okrag_z.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/play_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/play_button_loggin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/play_button_loggin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/play_button_to_loggin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/play_button_to_loggin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/question_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/question_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/repeat_level_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/repeat_level_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/romb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/romb_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/romb_f_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/romb_f_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/romb_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/romb_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/settings_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/settings_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/skat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/skat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/splash_screen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_romb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_romb_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_background_skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_background_skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/time_attack_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/time_attack_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/timeattac_choose_challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/timeattac_choose_challenge.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/timeattack_level_complete_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-mdpi/timeattack_level_complete_window.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/aaas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/aaas.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/correct.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/gray_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/gray_dot.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/level_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/level_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/level_button_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/level_button_closed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/levelcorrect_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/levelcorrect_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/ok_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/ok_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pause_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pause_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/play_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/play_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_kwadrat_blue_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_kwadrat_blue_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_kwadrat_f_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_kwadrat_f_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_kwadrat_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_kwadrat_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_okat_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_okat_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_okrag_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_okrag_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_question_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_question_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_romb_green_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_romb_green_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_romb_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_romb_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_rombf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_rombf.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_rombf_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_rombf_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/pointer_skat_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/pointer_skat_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/share_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/share_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/star_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/star_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/transparent_for_corrects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/transparent_for_corrects.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/tutorial.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/yellow_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-nodpi/yellow_dot.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/achivement_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/achivement_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/achivement_small_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/achivement_small_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/arcade_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/arcade_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/arcade_level_complete_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/arcade_level_complete_window.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/backspace_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/backspace_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/hamburger_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/hamburger_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/hamburger_03_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/hamburger_03_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/keyboard_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/keyboard_close_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/kwadrat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/kwadrat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/leaderboard_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/leaderboard_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/level_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/level_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/level_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/level_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/level_button_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/level_button_closed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/level_choosing_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/level_choosing_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/levelcorrect_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/levelcorrect_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/logo_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/logo_s.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/menu_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/menu_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/nextlevel_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/nextlevel_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/okat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/okat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/okrag_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/okrag_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/okrag_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/okrag_z.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/play_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/play_button_loggin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/play_button_loggin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/play_button_to_loggin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/play_button_to_loggin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_kwadrat_blue_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_kwadrat_blue_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_kwadrat_f_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_kwadrat_f_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_kwadrat_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_kwadrat_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_okat_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_okat_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_okrag_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_okrag_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_question_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_question_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_romb_green_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_romb_green_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_romb_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_romb_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_rombf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_rombf.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_rombf_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_rombf_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pointer_skat_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/pointer_skat_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/question_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/question_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/repeat_level_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/repeat_level_btn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/romb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/romb_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/romb_f_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/romb_f_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/romb_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/romb_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/settings_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/settings_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/skat_ramka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/skat_ramka.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/splash_screen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_romb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_romb_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_background_skat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_background_skat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/time_attack_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/time_attack_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/timeattac_choose_challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/timeattac_choose_challenge.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/timeattack_level_complete_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xhdpi/timeattack_level_complete_window.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/level_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/level_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/level_button_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/level_button_closed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/levelcorrect_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/levelcorrect_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_kwadrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_kwadrat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_kwadrat_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_kwadrat_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_kwadrat_blue_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_kwadrat_blue_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_kwadrat_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_kwadrat_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_kwadrat_f_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_kwadrat_f_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_kwadrat_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_kwadrat_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_okat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_okat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_okat_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_okat_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_okrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_okrag.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_okrag_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_okrag_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_question.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_question_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_question_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_romb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_romb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_romb_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_romb_green.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_romb_green_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_romb_green_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_romb_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_romb_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_rombf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_rombf.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pointer_rombf_rotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/drawable-xxhdpi/pointer_rombf_rotated.png -------------------------------------------------------------------------------- /app/src/main/res/layout-normal/activity_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout-normal/activity_play.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/achivement_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/achivement_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_choose_time_challenge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/activity_choose_time_challenge.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_level_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/activity_level_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/activity_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/activity_splash_screen.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/level_page_four_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/level_page_four_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/level_page_one_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/level_page_one_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/level_page_three_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/level_page_three_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/level_page_two_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/level_page_two_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/play_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/play_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/settings_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/settings_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/time_attack_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/time_attack_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/time_attack_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/time_attack_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tutorial_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/layout/tutorial_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/raw/close_keyboard_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/close_keyboard_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/correct_line_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/correct_line_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/error_keyboard_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/error_keyboard_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/keyboard_backspace_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/keyboard_backspace_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/keyboard_click_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/keyboard_click_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/new_background_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/new_background_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/new_line_figure_click_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/new_line_figure_click_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/same_line_figure_click_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/same_line_figure_click_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/raw/timer_sfx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/raw/timer_sfx.wav -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values-pl-rPL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/pl/hypeapp/fixmath/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/app/src/test/java/pl/hypeapp/fixmath/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypeapps/FixMath/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':BaseGameUtils' 2 | --------------------------------------------------------------------------------