├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── appfcc ├── .gitignore ├── RELEASES │ ├── 1.109 │ │ └── FCC.apk │ ├── 1.110 │ │ └── FCC.apk │ ├── 1.111 │ │ └── FCC.apk │ ├── 1.112 │ │ └── FCC.apk │ ├── 1.113 │ │ └── FCC.apk │ ├── 1.114 │ │ └── FCC.apk │ ├── 1.115 │ │ └── FCC.apk │ ├── 1.116 │ │ └── FCC.apk │ ├── 1.117 │ │ └── FCC.apk │ ├── 1.118 │ │ └── FCC.apk │ ├── 1.122 │ │ └── FCC.apk │ └── 1.123 │ │ └── FCC.apk ├── build.gradle ├── docs │ └── legacy │ │ ├── build_instructions.txt │ │ ├── release_check_list.txt │ │ ├── specification_readme.txt │ │ ├── storyboard_readme.txt │ │ └── todo.txt ├── keystore │ └── fcc.keystore ├── proguard-rules.pro ├── scripts │ ├── do_get_database_from_emulator.sh │ ├── do_make_release.sh │ └── do_push_database_to_emulator.sh └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── samknows │ │ └── fcc │ │ ├── ExampleInstrumentedTest.kt │ │ └── FirstTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── Schedule_FCC.xml │ │ ├── notice1.htm │ │ ├── notice2.htm │ │ ├── notice3.htm │ │ ├── terms_of_use.htm │ │ └── typewriter.ttf │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── samknows │ │ │ ├── fcc │ │ │ └── FCCApplication.java │ │ │ └── ska │ │ │ └── activity │ │ │ └── SKAMainAndTermsAndConditionsActivity.java │ └── res │ │ ├── anim │ │ ├── slide_down.xml │ │ ├── slide_up.xml │ │ ├── transition_in.xml │ │ └── transition_out.xml │ │ ├── drawable-hdpi │ │ ├── btn.9.png │ │ ├── btn_active.9.png │ │ ├── btn_default_disabled_focused_holo_light.9.png │ │ ├── btn_default_disabled_holo_light.9.png │ │ ├── btn_default_focused_holo_light.9.png │ │ ├── btn_default_normal_holo_light.9.png │ │ ├── btn_login.png │ │ ├── ic_menu_info_details.png │ │ ├── ic_menu_refresh.png │ │ ├── icon.png │ │ └── icon_notification.png │ │ ├── drawable-ldpi │ │ ├── btn.9.png │ │ ├── btn_active.9.png │ │ ├── btn_default_disabled_focused_holo_light.9.png │ │ ├── btn_default_disabled_holo_light.9.png │ │ ├── btn_default_focused_holo_light.9.png │ │ ├── btn_default_normal_holo_light.9.png │ │ ├── btn_default_pressed_holo_light.9.png │ │ ├── btn_login.png │ │ ├── ic_menu_info_details.png │ │ ├── ic_menu_refresh.png │ │ ├── icon.png │ │ └── icon_notification.png │ │ ├── drawable-mdpi │ │ ├── btn.9.png │ │ ├── btn_active.9.png │ │ ├── btn_default_disabled_focused_holo_light.9.png │ │ ├── btn_default_disabled_holo_light.9.png │ │ ├── btn_default_focused_holo_light.9.png │ │ ├── btn_default_normal_holo_light.9.png │ │ ├── btn_default_pressed_holo_light.9.png │ │ ├── btn_login.png │ │ ├── ic_menu_info_details.png │ │ ├── ic_menu_refresh.png │ │ ├── icon.png │ │ └── icon_notification.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── btn.9.png │ │ ├── btn_active.9.png │ │ ├── btn_default_disabled_focused_holo_light.9.png │ │ ├── btn_default_disabled_holo_light.9.png │ │ ├── btn_default_focused_holo_light.9.png │ │ ├── btn_default_normal_holo_light.9.png │ │ ├── btn_default_pressed_holo_light.9.png │ │ ├── btn_login.png │ │ ├── icon.png │ │ └── icon_notification.png │ │ ├── drawable-xxhdpi │ │ ├── icon.png │ │ └── icon_notification.png │ │ ├── drawable-xxxhdpi │ │ ├── icon.png │ │ └── icon_notification.png │ │ ├── drawable │ │ ├── alert_icon.png │ │ ├── arrow_down.xml │ │ ├── arrow_right.xml │ │ ├── arrow_up.xml │ │ ├── black_alpha.png │ │ ├── blueprogress.xml │ │ ├── btn.9.png │ │ ├── btn_active.9.png │ │ ├── btn_closed.png │ │ ├── btn_closed_pressed.png │ │ ├── btn_closed_selector.xml │ │ ├── btn_down.png │ │ ├── btn_left.png │ │ ├── btn_login.png │ │ ├── btn_normal_notpressed.xml │ │ ├── btn_normal_selector.xml │ │ ├── btn_open.png │ │ ├── btn_open_pressed.png │ │ ├── btn_open_selector.xml │ │ ├── btn_right.png │ │ ├── btn_run.png │ │ ├── btn_run_now_notpressed.xml │ │ ├── btn_run_now_selector.xml │ │ ├── btn_toggle.png │ │ ├── btn_up.png │ │ ├── calendar.png │ │ ├── calendar_notpressed.xml │ │ ├── calendar_selector.xml │ │ ├── cell_phone_icon.png │ │ ├── check.png │ │ ├── circle.png │ │ ├── ic_avatar_generic.png │ │ ├── ic_launcher_background.xml │ │ ├── ic_menu_info_details.png │ │ ├── ic_menu_refresh.png │ │ ├── icon.png │ │ ├── icon_notification.png │ │ ├── icon_right.png │ │ ├── input_background.png │ │ ├── measurement_icon.png │ │ ├── network_type.png │ │ ├── network_type_notpressed.xml │ │ ├── network_type_selector.xml │ │ ├── page_corner_blank.png │ │ ├── page_turn_left.png │ │ ├── page_turn_right.png │ │ ├── pagedrop.png │ │ ├── play.png │ │ ├── run_now_button_selector.xml │ │ ├── table_black_border.xml │ │ ├── table_green_border.xml │ │ ├── table_grey_border.xml │ │ ├── table_grey_row.xml │ │ ├── table_red_border.xml │ │ └── wifiservice.png │ │ ├── layout │ │ ├── ska_main_and_terms_and_conditions_activity.xml │ │ └── ska_terms_of_use_activity.xml │ │ ├── menu │ │ └── ska_main_results_activity_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ └── properties │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ └── preferences.xml │ └── test │ └── java │ └── com │ └── samknows │ └── fcc │ └── ExampleUnitTest.kt ├── docs └── screengrabs │ ├── skandroid-fcc_export_json.png │ ├── skandroid-fcc_metrics_running.png │ ├── skandroid-fcc_permissions_manually_granted_via_settings.png │ └── skandroid-fcc_twitter_works_2018-09-07.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/README.md -------------------------------------------------------------------------------- /appfcc/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appfcc/RELEASES/1.109/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.109/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.110/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.110/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.111/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.111/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.112/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.112/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.113/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.113/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.114/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.114/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.115/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.115/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.116/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.116/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.117/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.117/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.118/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.118/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.122/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.122/FCC.apk -------------------------------------------------------------------------------- /appfcc/RELEASES/1.123/FCC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/RELEASES/1.123/FCC.apk -------------------------------------------------------------------------------- /appfcc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/build.gradle -------------------------------------------------------------------------------- /appfcc/docs/legacy/build_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/docs/legacy/build_instructions.txt -------------------------------------------------------------------------------- /appfcc/docs/legacy/release_check_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/docs/legacy/release_check_list.txt -------------------------------------------------------------------------------- /appfcc/docs/legacy/specification_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/docs/legacy/specification_readme.txt -------------------------------------------------------------------------------- /appfcc/docs/legacy/storyboard_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/docs/legacy/storyboard_readme.txt -------------------------------------------------------------------------------- /appfcc/docs/legacy/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/docs/legacy/todo.txt -------------------------------------------------------------------------------- /appfcc/keystore/fcc.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/keystore/fcc.keystore -------------------------------------------------------------------------------- /appfcc/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/proguard-rules.pro -------------------------------------------------------------------------------- /appfcc/scripts/do_get_database_from_emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/scripts/do_get_database_from_emulator.sh -------------------------------------------------------------------------------- /appfcc/scripts/do_make_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/scripts/do_make_release.sh -------------------------------------------------------------------------------- /appfcc/scripts/do_push_database_to_emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/scripts/do_push_database_to_emulator.sh -------------------------------------------------------------------------------- /appfcc/src/androidTest/java/com/samknows/fcc/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/androidTest/java/com/samknows/fcc/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /appfcc/src/androidTest/java/com/samknows/fcc/FirstTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/androidTest/java/com/samknows/fcc/FirstTest.java -------------------------------------------------------------------------------- /appfcc/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /appfcc/src/main/assets/Schedule_FCC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/assets/Schedule_FCC.xml -------------------------------------------------------------------------------- /appfcc/src/main/assets/notice1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/assets/notice1.htm -------------------------------------------------------------------------------- /appfcc/src/main/assets/notice2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/assets/notice2.htm -------------------------------------------------------------------------------- /appfcc/src/main/assets/notice3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/assets/notice3.htm -------------------------------------------------------------------------------- /appfcc/src/main/assets/terms_of_use.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/assets/terms_of_use.htm -------------------------------------------------------------------------------- /appfcc/src/main/assets/typewriter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/assets/typewriter.ttf -------------------------------------------------------------------------------- /appfcc/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /appfcc/src/main/java/com/samknows/fcc/FCCApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/java/com/samknows/fcc/FCCApplication.java -------------------------------------------------------------------------------- /appfcc/src/main/java/com/samknows/ska/activity/SKAMainAndTermsAndConditionsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/java/com/samknows/ska/activity/SKAMainAndTermsAndConditionsActivity.java -------------------------------------------------------------------------------- /appfcc/src/main/res/anim/slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/anim/slide_down.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/anim/slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/anim/slide_up.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/anim/transition_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/anim/transition_in.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/anim/transition_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/anim/transition_out.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/btn.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/btn.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/btn_active.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/btn_active.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/btn_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/btn_login.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/ic_menu_info_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/ic_menu_info_details.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-hdpi/icon_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-hdpi/icon_notification.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/btn.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/btn.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/btn_active.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/btn_active.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/btn_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/btn_login.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/ic_menu_info_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/ic_menu_info_details.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-ldpi/icon_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-ldpi/icon_notification.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/btn.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/btn.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/btn_active.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/btn_active.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/btn_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/btn_login.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/ic_menu_info_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/ic_menu_info_details.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-mdpi/icon_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-mdpi/icon_notification.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/btn.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/btn.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/btn_active.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/btn_active.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/btn_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/btn_login.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xhdpi/icon_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xhdpi/icon_notification.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xxhdpi/icon_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xxhdpi/icon_notification.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable-xxxhdpi/icon_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable-xxxhdpi/icon_notification.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/alert_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/alert_icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/arrow_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/arrow_down.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/arrow_right.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/arrow_up.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/black_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/black_alpha.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/blueprogress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/blueprogress.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_active.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_active.9.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_closed.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_closed_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_closed_pressed.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_closed_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_closed_selector.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_down.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_left.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_login.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_normal_notpressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_normal_notpressed.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_normal_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_normal_selector.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_open.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_open_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_open_pressed.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_open_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_open_selector.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_right.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_run.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_run_now_notpressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_run_now_notpressed.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_run_now_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_run_now_selector.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_toggle.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/btn_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/btn_up.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/calendar.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/calendar_notpressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/calendar_notpressed.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/calendar_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/calendar_selector.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/cell_phone_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/cell_phone_icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/check.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/circle.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/ic_avatar_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/ic_avatar_generic.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/ic_menu_info_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/ic_menu_info_details.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/ic_menu_refresh.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/icon_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/icon_notification.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/icon_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/icon_right.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/input_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/input_background.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/measurement_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/measurement_icon.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/network_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/network_type.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/network_type_notpressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/network_type_notpressed.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/network_type_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/network_type_selector.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/page_corner_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/page_corner_blank.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/page_turn_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/page_turn_left.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/page_turn_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/page_turn_right.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/pagedrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/pagedrop.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/play.png -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/run_now_button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/run_now_button_selector.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/table_black_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/table_black_border.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/table_green_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/table_green_border.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/table_grey_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/table_grey_border.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/table_grey_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/table_grey_row.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/table_red_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/table_red_border.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/drawable/wifiservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/drawable/wifiservice.png -------------------------------------------------------------------------------- /appfcc/src/main/res/layout/ska_main_and_terms_and_conditions_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/layout/ska_main_and_terms_and_conditions_activity.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/layout/ska_terms_of_use_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/layout/ska_terms_of_use_activity.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/menu/ska_main_results_activity_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/menu/ska_main_results_activity_menu.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /appfcc/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appfcc/src/main/res/raw/properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/raw/properties -------------------------------------------------------------------------------- /appfcc/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /appfcc/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /appfcc/src/test/java/com/samknows/fcc/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/appfcc/src/test/java/com/samknows/fcc/ExampleUnitTest.kt -------------------------------------------------------------------------------- /docs/screengrabs/skandroid-fcc_export_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/docs/screengrabs/skandroid-fcc_export_json.png -------------------------------------------------------------------------------- /docs/screengrabs/skandroid-fcc_metrics_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/docs/screengrabs/skandroid-fcc_metrics_running.png -------------------------------------------------------------------------------- /docs/screengrabs/skandroid-fcc_permissions_manually_granted_via_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/docs/screengrabs/skandroid-fcc_permissions_manually_granted_via_settings.png -------------------------------------------------------------------------------- /docs/screengrabs/skandroid-fcc_twitter_works_2018-09-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/docs/screengrabs/skandroid-fcc_twitter_works_2018-09-07.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKnows/skandroid-fcc/HEAD/settings.gradle --------------------------------------------------------------------------------