├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── .project ├── .settings └── org.eclipse.buildship.core.prefs ├── .travis.yml ├── LICENSE.txt ├── README.md ├── app ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle ├── fabric.properties ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── caly │ │ └── calyandroid │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── fonts │ │ │ ├── NanumSquareOTFBold.otf │ │ │ ├── NanumSquareOTFExtraBold.otf │ │ │ └── NanumSquareOTFRegular.otf │ │ └── privacy_policy.html │ ├── java │ │ ├── io │ │ │ └── caly │ │ │ │ └── calyandroid │ │ │ │ ├── CalyApplication.java │ │ │ │ ├── activity │ │ │ │ ├── AccountAddActivity.java │ │ │ │ ├── AccountListActivity.java │ │ │ │ ├── ActivityLauncher.java │ │ │ │ ├── DebugActivity.java │ │ │ │ ├── EventListActivity.java │ │ │ │ ├── GuideActivity.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── NoticeActivity.java │ │ │ │ ├── PolicyActivity.java │ │ │ │ ├── RecoListActivity.java │ │ │ │ ├── RecoMapActivity.java │ │ │ │ ├── SettingActivity.java │ │ │ │ ├── SignupActivity.java │ │ │ │ ├── SplashActivity.java │ │ │ │ ├── TestActivity.java │ │ │ │ ├── WebViewActivity.java │ │ │ │ └── base │ │ │ │ │ └── BaseAppCompatActivity.java │ │ │ │ ├── adapter │ │ │ │ ├── AccountAddAdapter.java │ │ │ │ ├── AccountListAdapter.java │ │ │ │ ├── EventListAdapter.java │ │ │ │ ├── GuidePagerAdapter.java │ │ │ │ ├── NoticeListAdapter.java │ │ │ │ ├── RecoMapListAdapter.java │ │ │ │ ├── RecoTabPagerAdapter.java │ │ │ │ ├── RecommendListAdapter.java │ │ │ │ └── SettingListAdapter.java │ │ │ │ ├── contract │ │ │ │ ├── SplashContract.java │ │ │ │ └── base │ │ │ │ │ └── BaseView.java │ │ │ │ ├── exception │ │ │ │ ├── HttpResponseParsingException.java │ │ │ │ └── UnExpectedHttpStatusException.java │ │ │ │ ├── fragment │ │ │ │ ├── GuideItemFragment.java │ │ │ │ ├── RecoListFragment.java │ │ │ │ ├── RecoMapFragment.java │ │ │ │ ├── RecoTabFragment.java │ │ │ │ ├── SettingFragment.java │ │ │ │ ├── SplashFragment.java │ │ │ │ └── base │ │ │ │ │ └── BaseFragment.java │ │ │ │ ├── model │ │ │ │ ├── Category.java │ │ │ │ ├── DeviceType.java │ │ │ │ ├── Gender.java │ │ │ │ ├── LogType.java │ │ │ │ ├── LoginPlatform.java │ │ │ │ ├── RecoState.java │ │ │ │ ├── TrackingType.java │ │ │ │ ├── dataModel │ │ │ │ │ ├── AccountModel.java │ │ │ │ │ ├── BannerModel.java │ │ │ │ │ ├── EventModel.java │ │ │ │ │ ├── NoticeModel.java │ │ │ │ │ ├── RecoListWrapModel.java │ │ │ │ │ ├── RecoModel.java │ │ │ │ │ ├── SettingItemModel.java │ │ │ │ │ └── TestModel.java │ │ │ │ ├── deserializer │ │ │ │ │ ├── EventDeserialize.java │ │ │ │ │ └── RecoStateDeserializer.java │ │ │ │ ├── event │ │ │ │ │ ├── AccountListLoadingEvent.java │ │ │ │ │ ├── AccountListRefreshEvent.java │ │ │ │ │ ├── EventListRefreshEvent.java │ │ │ │ │ ├── GoogleSyncDoneEvent.java │ │ │ │ │ ├── MapPermissionGrantedEvent.java │ │ │ │ │ ├── RecoListLoadStateChangeEvent.java │ │ │ │ │ ├── RecoListScrollEvent.java │ │ │ │ │ ├── RecoMapFilterChangeEvent.java │ │ │ │ │ ├── RecoMoreClickEvent.java │ │ │ │ │ ├── RecoReadyEvent.java │ │ │ │ │ ├── SettingLoadingStateChangeEvent.java │ │ │ │ │ └── TestEvent.java │ │ │ │ ├── orm │ │ │ │ │ └── TokenRecord.java │ │ │ │ └── response │ │ │ │ │ ├── AccountResponse.java │ │ │ │ │ ├── BasicResponse.java │ │ │ │ │ ├── EventResponse.java │ │ │ │ │ ├── NoticeResponse.java │ │ │ │ │ ├── RecoResponse.java │ │ │ │ │ ├── SessionResponse.java │ │ │ │ │ └── SyncResponse.java │ │ │ │ ├── presenter │ │ │ │ ├── SplashPresenter.java │ │ │ │ └── base │ │ │ │ │ ├── BasePresenter.java │ │ │ │ │ └── BasePresenterModel.java │ │ │ │ ├── service │ │ │ │ ├── FirebaseInstanceIDService.java │ │ │ │ ├── FirebaseMessagingService.java │ │ │ │ ├── HttpService.java │ │ │ │ └── LogContentProvider.java │ │ │ │ ├── util │ │ │ │ ├── ApiClient.java │ │ │ │ ├── BusProvider.java │ │ │ │ ├── ConfigClient.java │ │ │ │ ├── Logger.java │ │ │ │ ├── StringFormmater.java │ │ │ │ ├── Util.java │ │ │ │ ├── eventListener │ │ │ │ │ ├── AppLifecycleListener.java │ │ │ │ │ ├── LoggingInterceptor.java │ │ │ │ │ ├── RecyclerItemClickListener.java │ │ │ │ │ └── TextViewLinkHandler.java │ │ │ │ └── tracker │ │ │ │ │ ├── AnalysisTracker.java │ │ │ │ │ └── AppSession.java │ │ │ │ └── view │ │ │ │ ├── FeedbackDialog.java │ │ │ │ ├── GoogleOAuthDialog.java │ │ │ │ ├── LoginDialog.java │ │ │ │ ├── PasswordChangeDialog.java │ │ │ │ └── WithDrawalDialog.java │ │ └── net │ │ │ └── jspiner │ │ │ └── prefer │ │ │ └── Prefer.java │ └── res │ │ ├── anim │ │ ├── slide_in_down.xml │ │ ├── slide_in_left.xml │ │ ├── slide_in_right.xml │ │ ├── slide_in_up.xml │ │ ├── slide_out_down.xml │ │ ├── slide_out_left.xml │ │ ├── slide_out_right.xml │ │ └── slide_out_up.xml │ │ ├── drawable-hdpi │ │ ├── button_normal.9.png │ │ ├── button_press.9.png │ │ ├── cafe.png │ │ ├── callicon_06.png │ │ ├── caly_logo.png │ │ ├── coffee_cup.png │ │ ├── google.png │ │ ├── group.png │ │ ├── group_13.png │ │ ├── group_4.png │ │ ├── group_6.png │ │ ├── group_7.png │ │ ├── guide_01.png │ │ ├── guide_02.png │ │ ├── guide_03.png │ │ ├── ic_access_time_white_48dp.png │ │ ├── ic_add_white_48dp.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_arrow_back_white_48dp.png │ │ ├── ic_checkin.png │ │ ├── ic_checkin_c.png │ │ ├── ic_checkin_map.png │ │ ├── ic_checkin_p.png │ │ ├── ic_checkin_r.png │ │ ├── ic_copyright_black_48dp.png │ │ ├── ic_delete_forever_black_48dp.png │ │ ├── ic_drawer.png │ │ ├── ic_event_black_48dp.png │ │ ├── ic_forward.png │ │ ├── ic_forward_noti.png │ │ ├── ic_keyboard_arrow_down_black_48dp.png │ │ ├── ic_keyboard_arrow_up_black_48dp.png │ │ ├── ic_link_black_48dp.png │ │ ├── ic_list_white_24dp.png │ │ ├── ic_location_on_white_48dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_message.png │ │ ├── ic_more_horiz_white_48dp.png │ │ ├── ic_my_location_black_48dp.png │ │ ├── ic_navigate_before_white_48dp.png │ │ ├── ic_navigate_next_white_48dp.png │ │ ├── ic_new_releases_white_36dp.png │ │ ├── ic_place_black_48dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_rotate.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_settings_white_48dp.png │ │ ├── ic_share_black_48dp.png │ │ ├── ic_share_white_48dp.png │ │ ├── ic_timer.png │ │ ├── ic_warning.png │ │ ├── instagram.png │ │ ├── naver_logo.png │ │ ├── oval_3.png │ │ ├── place.png │ │ ├── question_mark.png │ │ ├── question_mark_1.png │ │ ├── rectangle_3__press.9.png │ │ ├── rectangle_3_copy.9.png │ │ ├── refresh_2.png │ │ ├── retuarnat.png │ │ ├── table.png │ │ ├── today.png │ │ └── trash.png │ │ ├── drawable-mdpi │ │ ├── button_normal.9.png │ │ ├── button_press.9.png │ │ ├── cafe.png │ │ ├── callicon_06.png │ │ ├── caly_logo.png │ │ ├── coffee_cup.png │ │ ├── google.png │ │ ├── group.png │ │ ├── group_13.png │ │ ├── group_4.png │ │ ├── group_6.png │ │ ├── group_7.png │ │ ├── guide_01.png │ │ ├── guide_02.png │ │ ├── guide_03.png │ │ ├── ic_access_time_white_48dp.png │ │ ├── ic_add_white_48dp.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_arrow_back_white_48dp.png │ │ ├── ic_checkin.png │ │ ├── ic_checkin_c.png │ │ ├── ic_checkin_map.png │ │ ├── ic_checkin_p.png │ │ ├── ic_checkin_r.png │ │ ├── ic_copyright_black_48dp.png │ │ ├── ic_delete_forever_black_48dp.png │ │ ├── ic_drawer.png │ │ ├── ic_event_black_48dp.png │ │ ├── ic_forward.png │ │ ├── ic_forward_noti.png │ │ ├── ic_keyboard_arrow_down_black_48dp.png │ │ ├── ic_keyboard_arrow_up_black_48dp.png │ │ ├── ic_link_black_48dp.png │ │ ├── ic_list_white_24dp.png │ │ ├── ic_location_on_white_48dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_message.png │ │ ├── ic_more_horiz_white_48dp.png │ │ ├── ic_my_location_black_48dp.png │ │ ├── ic_navigate_before_white_48dp.png │ │ ├── ic_navigate_next_white_48dp.png │ │ ├── ic_new_releases_white_36dp.png │ │ ├── ic_place_black_48dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_rotate.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_settings_white_48dp.png │ │ ├── ic_share_black_48dp.png │ │ ├── ic_share_white_48dp.png │ │ ├── ic_timer.png │ │ ├── ic_warning.png │ │ ├── instagram.png │ │ ├── naver_logo.png │ │ ├── oval_3.png │ │ ├── place.png │ │ ├── question_mark.png │ │ ├── question_mark_1.png │ │ ├── rectangle_3__press.9.png │ │ ├── rectangle_3_copy.9.png │ │ ├── refresh_2.png │ │ ├── retuarnat.png │ │ ├── table.png │ │ ├── today.png │ │ ├── trash.png │ │ └── triangle.png │ │ ├── drawable-xhdpi │ │ ├── button_normal.9.png │ │ ├── button_press.9.png │ │ ├── cafe.png │ │ ├── callicon_06.png │ │ ├── caly_logo.png │ │ ├── coffee_cup.png │ │ ├── google.png │ │ ├── group.png │ │ ├── group_13.png │ │ ├── group_6.png │ │ ├── group_7.png │ │ ├── guide_01.png │ │ ├── guide_02.png │ │ ├── guide_03.png │ │ ├── ic_access_time_white_48dp.png │ │ ├── ic_add_white_48dp.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_arrow_back_white_48dp.png │ │ ├── ic_checkin.png │ │ ├── ic_checkin_c.png │ │ ├── ic_checkin_map.png │ │ ├── ic_checkin_p.png │ │ ├── ic_checkin_r.png │ │ ├── ic_copyright_black_48dp.png │ │ ├── ic_delete_forever_black_48dp.png │ │ ├── ic_drawer.png │ │ ├── ic_event_black_48dp.png │ │ ├── ic_forward.png │ │ ├── ic_forward_noti.png │ │ ├── ic_keyboard_arrow_down_black_48dp.png │ │ ├── ic_keyboard_arrow_up_black_48dp.png │ │ ├── ic_link_black_48dp.png │ │ ├── ic_list_white_24dp.png │ │ ├── ic_location_on_white_48dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_message.png │ │ ├── ic_more_horiz_white_48dp.png │ │ ├── ic_my_location_black_48dp.png │ │ ├── ic_navigate_before_white_48dp.png │ │ ├── ic_navigate_next_white_48dp.png │ │ ├── ic_new_releases_white_36dp.png │ │ ├── ic_place_black_48dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_rotate.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_settings_white_48dp.png │ │ ├── ic_share_black_48dp.png │ │ ├── ic_share_white_48dp.png │ │ ├── ic_timer.png │ │ ├── ic_warning.png │ │ ├── instagram.png │ │ ├── naver_logo.png │ │ ├── oval_3.png │ │ ├── place.png │ │ ├── question_mark.png │ │ ├── question_mark_1.png │ │ ├── rectangle_3__press.9.png │ │ ├── rectangle_3_copy.9.png │ │ ├── refresh_2.png │ │ ├── retuarnat.png │ │ ├── table.png │ │ ├── today.png │ │ ├── trash.png │ │ └── triangle.png │ │ ├── drawable-xxhdpi │ │ ├── button_normal.9.png │ │ ├── button_press.9.png │ │ ├── cafe.png │ │ ├── callicon_06.png │ │ ├── caly_logo.png │ │ ├── caly_logo_blank.png │ │ ├── coffee_cup.png │ │ ├── g_logo.png │ │ ├── girl.png │ │ ├── google.png │ │ ├── group.png │ │ ├── group_13.png │ │ ├── group_4.png │ │ ├── group_6.png │ │ ├── group_7.png │ │ ├── guide_01.png │ │ ├── guide_02.png │ │ ├── guide_03.png │ │ ├── ic_access_time_white_48dp.png │ │ ├── ic_add_white_48dp.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_arrow_back_white_48dp.png │ │ ├── ic_checkin.png │ │ ├── ic_checkin_c.png │ │ ├── ic_checkin_map.png │ │ ├── ic_checkin_p.png │ │ ├── ic_checkin_r.png │ │ ├── ic_copyright_black_48dp.png │ │ ├── ic_delete_forever_black_48dp.png │ │ ├── ic_drawer.png │ │ ├── ic_event_black_48dp.png │ │ ├── ic_forward.png │ │ ├── ic_forward_noti.png │ │ ├── ic_keyboard_arrow_down_black_48dp.png │ │ ├── ic_keyboard_arrow_up_black_48dp.png │ │ ├── ic_link_black_48dp.png │ │ ├── ic_list_white_24dp.png │ │ ├── ic_location_on_white_48dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_message.png │ │ ├── ic_more_horiz_white_48dp.png │ │ ├── ic_my_location_black_48dp.png │ │ ├── ic_navigate_before_white_48dp.png │ │ ├── ic_navigate_next_white_48dp.png │ │ ├── ic_new_releases_white_36dp.png │ │ ├── ic_place_black_48dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_rotate.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_settings_white_48dp.png │ │ ├── ic_share_black_48dp.png │ │ ├── ic_share_white_48dp.png │ │ ├── ic_timer.png │ │ ├── ic_warning.png │ │ ├── icon_inquiry.png │ │ ├── icon_map.png │ │ ├── img_not_found.png │ │ ├── indicator_active.png │ │ ├── indicator_deactive.png │ │ ├── insta.png │ │ ├── instagram.png │ │ ├── login_background.png │ │ ├── logo_app.png │ │ ├── logo_apple.png │ │ ├── logo_naver.png │ │ ├── naver_logo.png │ │ ├── oval_3.png │ │ ├── place.png │ │ ├── question_mark.png │ │ ├── question_mark_1.png │ │ ├── rectangle_3__press.9.png │ │ ├── rectangle_3_copy.9.png │ │ ├── refresh_2.png │ │ ├── retuarnat.png │ │ ├── table.png │ │ ├── today.png │ │ ├── trash.png │ │ └── triangle.png │ │ ├── drawable-xxxhdpi │ │ ├── background.png │ │ ├── button_normal.9.png │ │ ├── button_press.9.png │ │ ├── cafe.png │ │ ├── callicon_06.png │ │ ├── caly_logo.png │ │ ├── coffee_cup.png │ │ ├── google.png │ │ ├── group.png │ │ ├── group_13.png │ │ ├── group_6.png │ │ ├── group_7.png │ │ ├── guide_01.png │ │ ├── guide_02.png │ │ ├── guide_03.png │ │ ├── ic_access_time_white_48dp.png │ │ ├── ic_add_white_48dp.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_arrow_back_white_48dp.png │ │ ├── ic_checkin.png │ │ ├── ic_checkin_c.png │ │ ├── ic_checkin_map.png │ │ ├── ic_checkin_p.png │ │ ├── ic_checkin_r.png │ │ ├── ic_copyright_black_48dp.png │ │ ├── ic_delete_forever_black_48dp.png │ │ ├── ic_drawer.png │ │ ├── ic_event_black_48dp.png │ │ ├── ic_forward.png │ │ ├── ic_forward_noti.png │ │ ├── ic_keyboard_arrow_down_black_48dp.png │ │ ├── ic_keyboard_arrow_up_black_48dp.png │ │ ├── ic_link_black_48dp.png │ │ ├── ic_list_white_24dp.png │ │ ├── ic_location_on_white_48dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_message.png │ │ ├── ic_more_horiz_white_48dp.png │ │ ├── ic_my_location_black_48dp.png │ │ ├── ic_navigate_before_white_48dp.png │ │ ├── ic_navigate_next_white_48dp.png │ │ ├── ic_new_releases_white_36dp.png │ │ ├── ic_place_black_48dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_rotate.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_settings_white_48dp.png │ │ ├── ic_share_black_48dp.png │ │ ├── ic_share_white_48dp.png │ │ ├── ic_timer.png │ │ ├── ic_warning.png │ │ ├── instagram.png │ │ ├── naver_logo.png │ │ ├── oval_3.png │ │ ├── place.png │ │ ├── question_mark.png │ │ ├── question_mark_1.png │ │ ├── rectangle_3__press.9.png │ │ ├── rectangle_3_copy.9.png │ │ ├── refresh_2.png │ │ ├── retuarnat.png │ │ ├── table.png │ │ ├── today.png │ │ ├── trash.png │ │ └── triangle.png │ │ ├── drawable │ │ ├── btn_login.xml │ │ └── btn_wait_skip.xml │ │ ├── layout │ │ ├── activity_accountadd.xml │ │ ├── activity_accountlist.xml │ │ ├── activity_debug.xml │ │ ├── activity_eventlist.xml │ │ ├── activity_guide.xml │ │ ├── activity_login.xml │ │ ├── activity_map.xml │ │ ├── activity_notice.xml │ │ ├── activity_policy.xml │ │ ├── activity_reco.xml │ │ ├── activity_recomap.xml │ │ ├── activity_setting.xml │ │ ├── activity_signup.xml │ │ ├── activity_splash.xml │ │ ├── activity_test.xml │ │ ├── activity_webview.xml │ │ ├── container_drawer.xml │ │ ├── dialog_change_password.xml │ │ ├── dialog_feedback.xml │ │ ├── dialog_googleoauth.xml │ │ ├── dialog_login.xml │ │ ├── dialog_withdrawal.xml │ │ ├── drawer_bottom.xml │ │ ├── fragment_guide.xml │ │ ├── fragment_reco.xml │ │ ├── fragment_recolist.xml │ │ ├── fragment_recomap.xml │ │ ├── fragment_splash.xml │ │ ├── item_accountadd_header.xml │ │ ├── item_accountlist_header.xml │ │ ├── item_accountlist_row.xml │ │ ├── item_eventlist_row1.xml │ │ ├── item_eventlist_row2.xml │ │ ├── item_eventlist_row3.xml │ │ ├── item_map_marker.xml │ │ ├── item_notice_body.xml │ │ ├── item_notice_header.xml │ │ ├── item_reco_mapitem.xml │ │ ├── item_recolist_row.xml │ │ ├── item_recolist_row_demo.xml │ │ ├── item_setting_row1.xml │ │ ├── item_setting_row2.xml │ │ ├── item_setting_title.xml │ │ ├── progress_loading.xml │ │ └── toolbar.xml │ │ ├── menu │ │ ├── menu_accountlist.xml │ │ ├── menu_eventlist.xml │ │ ├── menu_mapfilter.xml │ │ ├── menu_mapfilter_child.xml │ │ ├── menu_reco.xml │ │ └── menu_recodetail.xml │ │ ├── mipmap-hdpi │ │ ├── app_icon.png │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ ├── app_icon.png │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── app_icon.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ ├── app_icon.png │ │ └── ic_launcher.png │ │ ├── values │ │ ├── colors.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── ecommerse_tracker.xml │ │ ├── global_tracker.xml │ │ ├── remote_config_defaults.xml │ │ └── setting.xml │ └── test │ └── java │ └── io │ └── caly │ └── calyandroid │ └── ExampleUnitTest.java ├── build.gradle ├── calyfactory.pdf ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── imgs ├── guide_1.png ├── guide_2.png └── guide_3.png ├── script ├── build.sh ├── decrypt.sh └── deploy.sh ├── settings.gradle └── travis-encrypt.tgz.enc /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | script/env.sh 3 | 4 | # Created by https://www.gitignore.io/api/android 5 | 6 | ### Android ### 7 | # Built application files 8 | *.apk 9 | *.ap_ 10 | 11 | # Files for the ART/Dalvik VM 12 | *.dex 13 | 14 | # Java class files 15 | *.class 16 | 17 | # Generated files 18 | bin/ 19 | gen/ 20 | out/ 21 | 22 | 23 | # Gradle files 24 | .gradle/ 25 | build/ 26 | 27 | # Local configuration file (sdk path, etc) 28 | local.properties 29 | 30 | # Proguard folder generated by Eclipse 31 | proguard/ 32 | 33 | # Log Files 34 | *.log 35 | 36 | # Android Studio Navigation editor temp files 37 | .navigation/ 38 | 39 | # Android Studio captures folder 40 | captures/ 41 | 42 | # Intellij 43 | *.iml 44 | .idea/workspace.xml 45 | .idea/tasks.xml 46 | .idea/gradle.xml 47 | .idea/libraries 48 | 49 | # Keystore files 50 | *.jks 51 | 52 | # External native build folder generated in Android Studio 2.2 and later 53 | .externalNativeBuild 54 | 55 | # Google Services (e.g. APIs or Firebase) 56 | google-services.json 57 | 58 | #Freeline 59 | freeline.py 60 | freeline/ 61 | freeline_project_description.json 62 | 63 | ### Android Patch ### 64 | gen-external-apklibs 65 | 66 | # End of https://www.gitignore.io/api/android 67 | 68 | ## travis ## 69 | travis-encrypt 70 | travis-encrypt.tgz 71 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CalyAndroid 4 | Project CalyAndroid created by Buildship. 5 | 6 | 7 | 8 | 9 | 10 | org.eclipse.buildship.core.gradleprojectnature 11 | 12 | 13 | -------------------------------------------------------------------------------- /.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) 2 | connection.project.dir= 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # caly-android 2 | ![travis](https://travis-ci.org/CalyFactory/caly-android.svg?branch=dev-jspiner) 3 | ![release](https://img.shields.io/github/release/calyfactory/caly-android/all.svg) 4 | ![contributor](https://img.shields.io/github/contributors/calyfactory/caly-android.svg) 5 | 6 | android caly application 7 | 8 | 9 | 10 | 11 | 12 | you can download CALY in [here](http://bit.ly/calyapp) -------------------------------------------------------------------------------- /app/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | app 4 | Project app created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | org.eclipse.buildship.core.gradleprojectnature 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) 2 | connection.project.dir=.. 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /app/fabric.properties: -------------------------------------------------------------------------------- 1 | #Contains API Secret used to validate your application. Commit to internal source control; avoid making secret public. 2 | #Sun Feb 26 21:54:17 KST 2017 3 | apiSecret=f849f5f82706a5216a704f061e0a7693ad723c9cbae75609292528d98c9fda8b 4 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/jspiner/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/androidTest/java/io/caly/calyandroid/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("io.caly.calyandroid", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/NanumSquareOTFBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/assets/fonts/NanumSquareOTFBold.otf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/NanumSquareOTFExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/assets/fonts/NanumSquareOTFExtraBold.otf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/NanumSquareOTFRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/assets/fonts/NanumSquareOTFRegular.otf -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/activity/ActivityLauncher.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.activity; 2 | 3 | import android.app.Activity; 4 | import android.content.Intent; 5 | import android.os.Bundle; 6 | 7 | import io.caly.calyandroid.BuildConfig; 8 | 9 | /** 10 | * Copyright 2017 JSpiner. All rights reserved. 11 | * 12 | * @author jspiner (jspiner@naver.com) 13 | * @project CalyAndroid 14 | * @since 17. 3. 23 15 | */ 16 | 17 | public class ActivityLauncher extends Activity { 18 | 19 | @Override 20 | protected void onCreate(Bundle savedInstanceState) { 21 | super.onCreate(savedInstanceState); 22 | 23 | init(); 24 | } 25 | 26 | void init(){ 27 | 28 | Intent intent = null; 29 | if(BuildConfig.DEBUG){ 30 | intent = new Intent(this, DebugActivity.class); 31 | } 32 | else{ 33 | intent = new Intent(this, SplashActivity.class); 34 | } 35 | 36 | startActivity(intent); 37 | finish(); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/activity/GuideActivity.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.activity; 2 | 3 | import android.os.Bundle; 4 | import android.support.annotation.Nullable; 5 | import android.support.v4.view.ViewPager; 6 | 7 | import butterknife.Bind; 8 | import butterknife.ButterKnife; 9 | import io.caly.calyandroid.activity.base.BaseAppCompatActivity; 10 | import io.caly.calyandroid.adapter.GuidePagerAdapter; 11 | import io.caly.calyandroid.R; 12 | 13 | /** 14 | * Copyright 2017 JSpiner. All rights reserved. 15 | * 16 | * @author jspiner (jspiner@naver.com) 17 | * @project CalyAndroid 18 | * @since 17. 2. 11 19 | */ 20 | 21 | public class GuideActivity extends BaseAppCompatActivity { 22 | 23 | @Bind(R.id.pager_guide) 24 | ViewPager pagerGuide; 25 | 26 | GuidePagerAdapter guidePagerAdapter; 27 | 28 | @Override 29 | protected void onCreate(@Nullable Bundle savedInstanceState) { 30 | super.onCreate(savedInstanceState); 31 | setContentView(R.layout.activity_guide); 32 | 33 | init(); 34 | } 35 | 36 | void init(){ 37 | ButterKnife.bind(this); 38 | 39 | guidePagerAdapter = new GuidePagerAdapter(getSupportFragmentManager()); 40 | pagerGuide.setAdapter(guidePagerAdapter); 41 | 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/adapter/GuidePagerAdapter.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.adapter; 2 | 3 | 4 | import android.support.v4.app.Fragment; 5 | import android.support.v4.app.FragmentManager; 6 | import android.support.v4.app.FragmentStatePagerAdapter; 7 | 8 | import io.caly.calyandroid.CalyApplication; 9 | import io.caly.calyandroid.fragment.GuideItemFragment; 10 | 11 | /** 12 | * Copyright 2017 JSpiner. All rights reserved. 13 | * 14 | * @author jspiner (jspiner@naver.com) 15 | * @project CalyAndroid 16 | * @since 17. 2. 11 17 | */ 18 | 19 | public class GuidePagerAdapter extends FragmentStatePagerAdapter { 20 | 21 | //로그에 쓰일 tag 22 | private static final String TAG = CalyApplication.class.getSimpleName() + "/" + GuidePagerAdapter.class.getSimpleName(); 23 | 24 | Fragment[] fragmentList; 25 | 26 | FragmentManager fragmentManager; 27 | 28 | public GuidePagerAdapter(FragmentManager fm) { 29 | super(fm); 30 | 31 | this.fragmentManager = fm; 32 | fragmentList = new Fragment[3]; 33 | 34 | fragmentList[0] = new GuideItemFragment().setResourceId(0); 35 | fragmentList[1] = new GuideItemFragment().setResourceId(1); 36 | fragmentList[2] = new GuideItemFragment().setResourceId(2); 37 | } 38 | 39 | @Override 40 | public int getCount() { 41 | return fragmentList.length; 42 | } 43 | 44 | @Override 45 | public Fragment getItem(int position) { 46 | return fragmentList[position]; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/adapter/RecoTabPagerAdapter.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.adapter; 2 | 3 | import android.support.v4.app.Fragment; 4 | import android.support.v4.app.FragmentManager; 5 | import android.support.v4.app.FragmentStatePagerAdapter; 6 | 7 | import io.caly.calyandroid.CalyApplication; 8 | import io.caly.calyandroid.fragment.RecoTabFragment; 9 | import io.caly.calyandroid.model.Category; 10 | import io.caly.calyandroid.model.dataModel.EventModel; 11 | 12 | /** 13 | * Copyright 2017 JSpiner. All rights reserved. 14 | * 15 | * @author jspiner (jspiner@naver.com) 16 | * @project CalyAndroid 17 | * @since 17. 2. 28 18 | */ 19 | 20 | public class RecoTabPagerAdapter extends FragmentStatePagerAdapter { 21 | 22 | //로그에 쓰일 tag 23 | private static final String TAG = CalyApplication.class.getSimpleName() + "/" + RecoTabPagerAdapter.class.getSimpleName(); 24 | 25 | Fragment[] fragmentList; 26 | 27 | public RecoTabPagerAdapter(FragmentManager fm, EventModel eventData) { 28 | super(fm); 29 | 30 | fragmentList= new Fragment[]{ 31 | new RecoTabFragment().setCategory(Category.RESTAURANT).setEvent(eventData), 32 | new RecoTabFragment().setCategory(Category.CAFE).setEvent(eventData), 33 | new RecoTabFragment().setCategory(Category.PLACE).setEvent(eventData) 34 | }; 35 | } 36 | 37 | @Override 38 | public Fragment getItem(int position) { 39 | return fragmentList[position]; 40 | } 41 | 42 | @Override 43 | public int getCount() { 44 | return fragmentList.length; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/contract/SplashContract.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.contract; 2 | 3 | import android.app.Activity; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | 7 | import com.google.android.gms.common.api.GoogleApiClient; 8 | 9 | import io.caly.calyandroid.contract.base.BaseView; 10 | import io.caly.calyandroid.presenter.base.BasePresenterModel; 11 | 12 | /** 13 | * Copyright 2017 JSpiner. All rights reserved. 14 | * 15 | * @author jspiner (jspiner@naver.com) 16 | * @project CalyAndroid 17 | * @since 17. 5. 2 18 | */ 19 | 20 | public class SplashContract { 21 | 22 | public interface View extends BaseView { 23 | void startSplash(); 24 | void startLoginActivity(); 25 | void startGuideActivity(); 26 | void startEventActivity(); 27 | void startUpdateMarketPage(); 28 | void showChangePasswordDialog(); 29 | void startLoginAnimation(); 30 | void changeProgressState(boolean isLoading); 31 | void startSignupActivity(String userId, String userPw, String loginPlatform, String authCode); 32 | } 33 | 34 | public interface Presenter extends BasePresenterModel { 35 | void setStartTime(); 36 | boolean isPermissionGranted(Context context); 37 | void requestVersionCheck(); 38 | void requestPermission(Activity activity); 39 | void requestLoginCheck(String apiKey); 40 | void updateRemoteConfig(Context context); 41 | void initGoogleLogin(Activity activity); 42 | GoogleApiClient getGoogleApiClient(); 43 | void trackingLoginButtonClick(Activity activity, String action); 44 | void procLoginCaldav(String userId, String userPw, String loginPlatform); 45 | void procLoginGoogle(String subject, String authCode); 46 | } 47 | 48 | } 49 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/contract/base/BaseView.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.contract.base; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 5. 2 9 | */ 10 | 11 | public interface BaseView { 12 | 13 | void setPresenter(T presenter); 14 | void showToast(CharSequence text, int duration); 15 | void showToast(int resId, int duration); 16 | void finishActivity(); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/exception/HttpResponseParsingException.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.exception; 2 | 3 | import android.util.Log; 4 | 5 | import java.io.IOException; 6 | 7 | import io.caly.calyandroid.CalyApplication; 8 | import io.caly.calyandroid.util.Logger; 9 | import io.caly.calyandroid.util.Util; 10 | import okhttp3.Request; 11 | import retrofit2.Call; 12 | import retrofit2.Response; 13 | 14 | /** 15 | * Created by jspiner on 2017. 5. 3.. 16 | */ 17 | 18 | public class HttpResponseParsingException extends Exception { 19 | //로그에 쓰일 tag 20 | public final static String TAG = CalyApplication.class.getSimpleName() + "/" + HttpResponseParsingException.class.getSimpleName(); 21 | 22 | public HttpResponseParsingException(Call httpCall, Throwable throwable){ 23 | this(getLogMessage(httpCall, throwable)); 24 | Logger.d(TAG, "HttpResponseParsingException(call, throwable)"); 25 | } 26 | 27 | public HttpResponseParsingException(String msg){ 28 | super(msg); 29 | Logger.d(TAG, "HttpResponseParsingException(msg)"); 30 | } 31 | 32 | private static String getLogMessage(Call httpCall, Throwable throwable){ 33 | Logger.d(TAG, "getLogMessage()"); 34 | StringBuilder builder = new StringBuilder(); 35 | 36 | Request request = httpCall.request(); 37 | 38 | builder.append("request url : " + request.url()); 39 | builder.append("\r\n"); 40 | builder.append("request method : " + request.method()); 41 | builder.append("\r\n"); 42 | builder.append("request body : " + Util.requestBodyToString(request.body())); 43 | builder.append("\r\n"); 44 | 45 | 46 | Logger.d(TAG, builder.toString()); 47 | return builder.toString(); 48 | } 49 | 50 | 51 | } 52 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/fragment/SettingFragment.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.fragment; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.preference.PreferenceFragmentCompat; 5 | 6 | import io.caly.calyandroid.R; 7 | 8 | /** 9 | * Copyright 2017 JSpiner. All rights reserved. 10 | * 11 | * @author jspiner (jspiner@naver.com) 12 | * @project CalyAndroid 13 | * @since 17. 2. 27 14 | */ 15 | 16 | public class SettingFragment extends PreferenceFragmentCompat { 17 | 18 | @Override 19 | public void onCreatePreferences(Bundle bundle, String s) { 20 | addPreferencesFromResource(R.xml.setting); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/Category.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 28 9 | */ 10 | 11 | public enum Category { 12 | RESTAURANT("restaurant"), 13 | CAFE("cafe"), 14 | PLACE("place"); 15 | 16 | public final String value; 17 | 18 | Category(final String value){ 19 | this.value = value; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/DeviceType.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 18 9 | */ 10 | 11 | public enum DeviceType { 12 | 13 | ANDROID(1), 14 | IPHONE(2), 15 | WEB(3); 16 | 17 | public final int value; 18 | 19 | DeviceType(final int value){ 20 | this.value = value; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/Gender.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 18 9 | */ 10 | 11 | public enum Gender { 12 | 13 | MAN(1), 14 | WOMAN(2); 15 | 16 | public final int value; 17 | 18 | Gender(final int value){ 19 | this.value = value; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/LogType.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 18 9 | */ 10 | 11 | public enum LogType { 12 | 13 | //CATEGORY 분류 14 | CATEGORY_VIEW(0), 15 | CATEGORY_CELL(1), 16 | CATEGORY_RECO_MAP_VIEW(2), 17 | CATEGORY_RECO_MAP_CELL(3), 18 | 19 | ACTION_CLICK(0), 20 | ACTION_NONE(-1), 21 | 22 | //Category 가 view일경우 23 | LABEL_EVENT_CELL(0), 24 | LABEL_EVENT_CELL_ANALYZING(1), 25 | LABEL_EVENT_CELL_QUESTIONMARK(2), 26 | 27 | 28 | //Category가 Cell 일경우 29 | LABEL_EVENT_BANNER(0), 30 | LABEL_EVENT_SYNC(1), 31 | LABEL_EVENT_BANNER_CLOSE(2), 32 | LABEL_EVENT_BANNER_SHOWING(3), 33 | 34 | //Cell일경우 35 | LABEL_RECO_DEEPLINK(0), 36 | LABEL_RECO_ITEM_MAP(1), 37 | LABEL_RECO_SHARE_KAKAO_INCELL(2), 38 | LABEL_RECO_SHARE_KAKAO_INBLOG(3), 39 | 40 | //View일겨웅 41 | LABEL_RECO_GOFULLMAP(0), 42 | LABEL_RECO_TAP_RESTAURANT(1), 43 | LABEL_RECO_TAP_CAFE(2), 44 | LABEL_RECO_TAP_PLACE(3), 45 | 46 | //LabelRecoMap 47 | LABEL_RECO_MAP_MY_LOCATION(0), 48 | LABEL_RECO_MAP_FILTER_ALL(1), 49 | LABEL_RECO_MAP_FILTER_RESTAURANT(2), 50 | LABEL_RECO_MAP_FILTER_CAFE(3), 51 | LABEL_RECO_MAP_FILTER_PLACE(4), 52 | 53 | LABEL_RECO_MAP_DEEPLINK(0), 54 | LABEL_RECO_MAP_SHARE_KAKAO_INCELL(1), 55 | 56 | SCREEN_ON_START(1), 57 | SCREEN_ON_STOP (2); 58 | 59 | 60 | 61 | 62 | 63 | public final int value; 64 | 65 | LogType(final int value){ 66 | this.value = value; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/LoginPlatform.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 25 9 | */ 10 | 11 | public enum LoginPlatform { 12 | 13 | CALDAV_NAVER("naver"), 14 | CALDAV_ICAL("ical"), 15 | GOOGLE("google"); 16 | 17 | public final String value; 18 | 19 | LoginPlatform(final String value){ 20 | this.value = value; 21 | } 22 | 23 | public static LoginPlatform getInstance(String code) { 24 | for (LoginPlatform type : LoginPlatform.values()) { 25 | if (type.value.equals(code)) { 26 | return type; 27 | } 28 | } 29 | return null; 30 | } 31 | 32 | 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/RecoState.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | /** 6 | * Copyright 2017 JSpiner. All rights reserved. 7 | * 8 | * @author jspiner (jspiner@naver.com) 9 | * @project CalyAndroid 10 | * @since 17. 3. 5 11 | */ 12 | 13 | public enum RecoState { 14 | 15 | @SerializedName("1") 16 | STATE_BEING_RECOMMEND(1), 17 | @SerializedName("2") 18 | STATE_NOTHING_TO_RECOMMEND(2), 19 | @SerializedName("3") 20 | STATE_DONE_RECOMMEND(3); 21 | 22 | public final int value; 23 | 24 | RecoState(int value){ 25 | this.value = value; 26 | } 27 | 28 | public static RecoState findByAbbr(int value){ 29 | for (RecoState state : values()) { 30 | if (state.value == value){ 31 | return state; 32 | } 33 | } 34 | return null; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/TrackingType.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 28 9 | */ 10 | 11 | public enum TrackingType { 12 | 13 | CLICK("click"); 14 | 15 | public final String value; 16 | 17 | TrackingType(final String value){ 18 | this.value = value; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/dataModel/AccountModel.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.dataModel; 2 | 3 | import com.google.gson.annotations.Expose; 4 | import com.google.gson.annotations.SerializedName; 5 | 6 | import java.util.Date; 7 | 8 | /** 9 | * Copyright 2017 JSpiner. All rights reserved. 10 | * 11 | * @author jspiner (jspiner@naver.com) 12 | * @project CalyAndroid 13 | * @since 17. 2. 22 14 | */ 15 | 16 | public class AccountModel { 17 | 18 | @SerializedName("login_platform") 19 | public String loginPlatform; 20 | 21 | @SerializedName("latestSyncTime") 22 | public Date latestSyncTime; 23 | 24 | @SerializedName("user_id") 25 | public String userId; 26 | 27 | @Expose 28 | public boolean isHeader; 29 | 30 | @Expose 31 | public String title; 32 | 33 | public AccountModel(String title){ 34 | this.title = title; 35 | isHeader = true; 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/dataModel/BannerModel.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.dataModel; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | import java.util.Date; 6 | 7 | /** 8 | * Copyright 2017 JSpiner. All rights reserved. 9 | * 10 | * @author jspiner (jspiner@naver.com) 11 | * @project CalyAndroid 12 | * @since 17. 4. 18 13 | */ 14 | 15 | public class BannerModel { 16 | 17 | @SerializedName("banner_id") 18 | public int banner_id; 19 | 20 | @SerializedName("title") 21 | public String title; 22 | 23 | @SerializedName("activationPeriod") 24 | public Period activationPeriod; 25 | 26 | @SerializedName("action") 27 | public Action action; 28 | 29 | public class Period{ 30 | 31 | @SerializedName("startDate") 32 | public Date startDate; 33 | 34 | @SerializedName("endDate") 35 | public Date endDate; 36 | } 37 | 38 | public class Action{ 39 | 40 | @SerializedName("type") 41 | public String type; 42 | 43 | @SerializedName("to") 44 | public String to; 45 | } 46 | 47 | } 48 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/dataModel/NoticeModel.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.dataModel; 2 | 3 | import com.google.gson.annotations.Expose; 4 | import com.google.gson.annotations.SerializedName; 5 | 6 | import java.util.Date; 7 | 8 | /** 9 | * Created by jspiner on 2017. 3. 4.. 10 | */ 11 | 12 | public class NoticeModel { 13 | 14 | @SerializedName("notice_title") 15 | public String noticeTitle; 16 | 17 | @SerializedName("create_datetime") 18 | public Date createDateTime; 19 | 20 | @SerializedName("notice_description") 21 | public String noticeDescription; 22 | 23 | @Expose 24 | public boolean isHeader = true; 25 | 26 | @Expose 27 | public boolean isExpandabled = false; 28 | 29 | public NoticeModel(String noticeDescription){ 30 | this.noticeDescription = noticeDescription; 31 | isHeader = false; 32 | } 33 | 34 | public NoticeModel(){ 35 | noticeTitle="test1"; 36 | noticeDescription="dd"; 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/dataModel/RecoListWrapModel.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.dataModel; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * Created by jspiner on 2017. 5. 6.. 7 | */ 8 | 9 | public class RecoListWrapModel { 10 | 11 | public List recoList; 12 | 13 | public RecoListWrapModel(List recoList){ 14 | this.recoList = recoList; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/dataModel/RecoModel.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.dataModel; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | /** 6 | * Copyright 2017 JSpiner. All rights reserved. 7 | * 8 | * @author jspiner (jspiner@naver.com) 9 | * @project CalyAndroid 10 | * @since 17. 2. 28 11 | */ 12 | 13 | public class RecoModel { 14 | 15 | @SerializedName("title") 16 | public String title; 17 | 18 | @SerializedName("deep_url") 19 | public String deepUrl; 20 | 21 | @SerializedName("category") 22 | public String category; 23 | 24 | @SerializedName("source_url") 25 | public String sourceUrl; 26 | 27 | @SerializedName("source_user_id") 28 | public String sourceUserId; 29 | 30 | @SerializedName("price") 31 | public int price; 32 | 33 | @SerializedName("reco_hashkey") 34 | public String recoHashKey; 35 | 36 | @SerializedName("region") 37 | public String region; 38 | 39 | @SerializedName("tagNames") 40 | public String tagNames; 41 | 42 | @SerializedName("map_url") 43 | public String mapUrl; 44 | 45 | @SerializedName("distance") 46 | public String distance; 47 | 48 | @SerializedName("event_hashkey") 49 | public String eventHashKey; 50 | 51 | @SerializedName("img_url") 52 | public String imgUrl; 53 | 54 | @SerializedName("lng") 55 | public double lng; 56 | 57 | @SerializedName("lat") 58 | public double lat; 59 | 60 | 61 | 62 | } 63 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/dataModel/SettingItemModel.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.dataModel; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 13 9 | */ 10 | 11 | public class SettingItemModel { 12 | 13 | public boolean isTitle; 14 | public String title; 15 | public String description; 16 | 17 | public SettingItemModel(String title){ 18 | isTitle = true; 19 | this.title = title; 20 | this.description = ""; 21 | } 22 | 23 | public SettingItemModel(String title, String description){ 24 | isTitle = false; 25 | this.title = title; 26 | this.description = description; 27 | 28 | } 29 | 30 | 31 | } 32 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/dataModel/TestModel.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.dataModel; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 12 9 | */ 10 | 11 | public class TestModel { 12 | 13 | public int year; 14 | public int month; 15 | public int day; 16 | public String summary; 17 | public String time; 18 | public String location; 19 | 20 | public TestModel(){ 21 | 22 | } 23 | 24 | public TestModel(int year, int month, int day, String summary, String time, String location){ 25 | this.year = year; 26 | this.month = month; 27 | this.day = day; 28 | this.summary = summary; 29 | this.time = time; 30 | this.location = location; 31 | } 32 | 33 | 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/deserializer/EventDeserialize.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.deserializer; 2 | 3 | import com.google.gson.GsonBuilder; 4 | import com.google.gson.JsonDeserializationContext; 5 | import com.google.gson.JsonDeserializer; 6 | import com.google.gson.JsonElement; 7 | import com.google.gson.JsonParseException; 8 | 9 | import java.lang.reflect.Type; 10 | 11 | import io.caly.calyandroid.CalyApplication; 12 | import io.caly.calyandroid.model.dataModel.EventModel; 13 | 14 | /** 15 | * Copyright 2017 JSpiner. All rights reserved. 16 | * 17 | * @author jspiner (jspiner@naver.com) 18 | * @project CalyAndroid 19 | * @since 17. 2. 21 20 | */ 21 | 22 | public class EventDeserialize implements JsonDeserializer { 23 | 24 | //로그에 쓰일 tag 25 | private static final String TAG = CalyApplication.class.getSimpleName() + "/" + EventDeserialize.class.getSimpleName(); 26 | 27 | @Override 28 | public EventModel deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException { 29 | 30 | EventModel eventModel = new GsonBuilder() 31 | .setDateFormat("yyyy-MM-dd HH:mm:ss") 32 | .create() 33 | .fromJson(json, typeOfT); 34 | 35 | eventModel.setData(); 36 | 37 | return eventModel; 38 | } 39 | 40 | 41 | } 42 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/deserializer/RecoStateDeserializer.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.deserializer; 2 | 3 | import com.google.gson.JsonDeserializationContext; 4 | import com.google.gson.JsonDeserializer; 5 | import com.google.gson.JsonElement; 6 | import com.google.gson.JsonParseException; 7 | 8 | import java.lang.reflect.Type; 9 | 10 | import io.caly.calyandroid.model.RecoState; 11 | 12 | /** 13 | * Copyright 2017 JSpiner. All rights reserved. 14 | * 15 | * @author jspiner (jspiner@naver.com) 16 | * @project CalyAndroid 17 | * @since 17. 3. 5 18 | */ 19 | 20 | public class RecoStateDeserializer implements JsonDeserializer { 21 | @Override 22 | public RecoState deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException { 23 | int typeInt = json.getAsInt(); 24 | return RecoState.findByAbbr(typeInt); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/AccountListLoadingEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 4. 19 9 | */ 10 | 11 | public class AccountListLoadingEvent { 12 | 13 | public boolean enable; 14 | 15 | public AccountListLoadingEvent(boolean enable){ 16 | this.enable = enable; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/AccountListRefreshEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 4. 17 9 | */ 10 | 11 | public class AccountListRefreshEvent { 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/EventListRefreshEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 4. 19 9 | */ 10 | 11 | public class EventListRefreshEvent { 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/GoogleSyncDoneEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 2. 28 9 | */ 10 | 11 | public class GoogleSyncDoneEvent { 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/MapPermissionGrantedEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Created by jspiner on 2017. 4. 29.. 5 | */ 6 | 7 | public class MapPermissionGrantedEvent { 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/RecoListLoadStateChangeEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | import io.caly.calyandroid.model.Category; 4 | import io.caly.calyandroid.model.response.RecoResponse; 5 | import retrofit2.Response; 6 | 7 | /** 8 | * Copyright 2017 JSpiner. All rights reserved. 9 | * 10 | * @author jspiner (jspiner@naver.com) 11 | * @project CalyAndroid 12 | * @since 17. 3. 21 13 | */ 14 | 15 | public class RecoListLoadStateChangeEvent { 16 | 17 | public Category category; 18 | public int dataCount; 19 | public LOADING_STATE loadingState; 20 | public Response response; 21 | 22 | public RecoListLoadStateChangeEvent(Category category, int dataCount, Response response, LOADING_STATE loadingState){ 23 | this.category = category; 24 | this.dataCount = dataCount; 25 | this.response = response; 26 | this.loadingState = loadingState; 27 | } 28 | 29 | public enum LOADING_STATE{ 30 | STATE_LOADING, 31 | STATE_DONE, 32 | STATE_EMPTY, 33 | STATE_ERROR 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/RecoListScrollEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Created by jspiner on 2017. 5. 6.. 5 | */ 6 | 7 | public class RecoListScrollEvent { 8 | 9 | public boolean isUp; 10 | 11 | public RecoListScrollEvent(boolean isUp){ 12 | this.isUp = isUp; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/RecoMapFilterChangeEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 5. 7 9 | */ 10 | 11 | public class RecoMapFilterChangeEvent { 12 | public int index; 13 | 14 | public RecoMapFilterChangeEvent(int index){ 15 | this.index = index; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/RecoMoreClickEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | import io.caly.calyandroid.model.dataModel.RecoModel; 4 | 5 | /** 6 | * Copyright 2017 JSpiner. All rights reserved. 7 | * 8 | * @author jspiner (jspiner@naver.com) 9 | * @project CalyAndroid 10 | * @since 17. 4. 4 11 | */ 12 | 13 | public class RecoMoreClickEvent { 14 | 15 | public RecoModel recoModel; 16 | 17 | public RecoMoreClickEvent(RecoModel recoModel){ 18 | this.recoModel = recoModel; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/RecoReadyEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 3. 21 9 | */ 10 | 11 | public class RecoReadyEvent { 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/SettingLoadingStateChangeEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Created by jspiner on 2017. 4. 11.. 5 | */ 6 | 7 | public class SettingLoadingStateChangeEvent { 8 | 9 | public String text; 10 | public boolean isEnable; 11 | 12 | public SettingLoadingStateChangeEvent(String text, boolean isEnable){ 13 | this.isEnable = isEnable; 14 | this.text = text; 15 | } 16 | 17 | public SettingLoadingStateChangeEvent(boolean isEnable){ 18 | this.isEnable = isEnable; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/event/TestEvent.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.event; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 4. 26 9 | */ 10 | 11 | public class TestEvent { 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/response/AccountResponse.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.response; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | import java.util.List; 6 | 7 | import io.caly.calyandroid.model.dataModel.AccountModel; 8 | 9 | /** 10 | * Copyright 2017 JSpiner. All rights reserved. 11 | * 12 | * @author jspiner (jspiner@naver.com) 13 | * @project CalyAndroid 14 | * @since 17. 2. 22 15 | */ 16 | 17 | public class AccountResponse extends BasicResponse { 18 | 19 | @SerializedName("payload") 20 | public Payload payload; 21 | 22 | public class Payload { 23 | 24 | @SerializedName("data") 25 | public List data; 26 | 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/response/BasicResponse.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.response; 2 | 3 | 4 | import com.google.gson.annotations.SerializedName; 5 | 6 | /** 7 | * Copyright 2017 JSpiner. All rights reserved. 8 | * 9 | * @author jspiner (jspiner@naver.com) 10 | * @project Caly 11 | * @since 17. 2. 11 12 | */ 13 | 14 | public class BasicResponse { 15 | 16 | @SerializedName("code") 17 | public int code; 18 | 19 | 20 | 21 | } 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/response/EventResponse.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.response; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | import java.util.List; 6 | 7 | import io.caly.calyandroid.model.dataModel.EventModel; 8 | 9 | /** 10 | * Copyright 2017 JSpiner. All rights reserved. 11 | * 12 | * @author jspiner (jspiner@naver.com) 13 | * @project CalyAndroid 14 | * @since 17. 2. 20 15 | */ 16 | 17 | public class EventResponse extends BasicResponse { 18 | 19 | @SerializedName("payload") 20 | public Payload payload; 21 | 22 | public class Payload { 23 | 24 | @SerializedName("data") 25 | public List data; 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/response/NoticeResponse.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.response; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | import java.util.List; 6 | 7 | import io.caly.calyandroid.model.dataModel.NoticeModel; 8 | 9 | /** 10 | * Copyright 2017 JSpiner. All rights reserved. 11 | * 12 | * @author jspiner (jspiner@naver.com) 13 | * @project CalyAndroid 14 | * @since 17. 3. 4 15 | */ 16 | 17 | public class NoticeResponse extends BasicResponse { 18 | 19 | @SerializedName("payload") 20 | public Payload payload; 21 | 22 | public class Payload { 23 | 24 | @SerializedName("data") 25 | public List data; 26 | 27 | } 28 | 29 | 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/response/RecoResponse.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.response; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | import java.util.List; 6 | 7 | import io.caly.calyandroid.model.dataModel.RecoModel; 8 | 9 | /** 10 | * Copyright 2017 JSpiner. All rights reserved. 11 | * 12 | * @author jspiner (jspiner@naver.com) 13 | * @project CalyAndroid 14 | * @since 17. 2. 28 15 | */ 16 | 17 | public class RecoResponse extends BasicResponse { 18 | 19 | @SerializedName("payload") 20 | public Payload payload; 21 | 22 | public class Payload { 23 | 24 | @SerializedName("data") 25 | public List data; 26 | 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/response/SessionResponse.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.response; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | /** 6 | * Copyright 2017 JSpiner. All rights reserved. 7 | * 8 | * @author jspiner (jspiner@naver.com) 9 | * @project CalyAndroid 10 | * @since 17. 2. 18 11 | */ 12 | 13 | public class SessionResponse extends BasicResponse { 14 | 15 | @SerializedName("payload") 16 | public Payload payload; 17 | 18 | public class Payload { 19 | 20 | @SerializedName("apikey") 21 | public String apiKey; 22 | 23 | @SerializedName("msg") 24 | public String msg; 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/model/response/SyncResponse.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.model.response; 2 | 3 | import com.google.gson.annotations.SerializedName; 4 | 5 | import java.util.Date; 6 | 7 | /** 8 | * Copyright 2017 JSpiner. All rights reserved. 9 | * 10 | * @author jspiner (jspiner@naver.com) 11 | * @project CalyAndroid 12 | * @since 17. 4. 16 13 | */ 14 | 15 | public class SyncResponse extends BasicResponse { 16 | 17 | @SerializedName("payload") 18 | public Payload payload; 19 | 20 | public class Payload{ 21 | 22 | @SerializedName("data") 23 | public Data data; 24 | 25 | public class Data{ 26 | 27 | @SerializedName("latestSyncTime") 28 | public Date latestSyncTime; 29 | 30 | } 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/presenter/base/BasePresenter.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.presenter.base; 2 | 3 | import io.caly.calyandroid.CalyApplication; 4 | 5 | /** 6 | * Copyright 2017 JSpiner. All rights reserved. 7 | * 8 | * @author jspiner (jspiner@naver.com) 9 | * @project CalyAndroid 10 | * @since 17. 5. 2 11 | */ 12 | 13 | public class BasePresenter { 14 | 15 | //로그에 쓰일 tag 16 | public final String TAG = CalyApplication.class.getSimpleName() + "/" + this.getClass().getSimpleName(); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/presenter/base/BasePresenterModel.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.presenter.base; 2 | 3 | /** 4 | * Copyright 2017 JSpiner. All rights reserved. 5 | * 6 | * @author jspiner (jspiner@naver.com) 7 | * @project CalyAndroid 8 | * @since 17. 5. 2 9 | */ 10 | 11 | public interface BasePresenterModel { 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/util/BusProvider.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.util; 2 | 3 | import android.os.Handler; 4 | import android.os.Looper; 5 | 6 | import com.squareup.otto.Bus; 7 | 8 | /** 9 | * Copyright 2017 JSpiner. All rights reserved. 10 | * 11 | * @author jspiner (jspiner@naver.com) 12 | * @project CalyAndroid 13 | * @since 17. 2. 28 14 | */ 15 | 16 | public class BusProvider { 17 | 18 | private static MainThreadBus bus; 19 | 20 | public synchronized static MainThreadBus getInstance(){ 21 | if(bus == null){ 22 | bus = new MainThreadBus(); 23 | } 24 | return bus; 25 | } 26 | 27 | public static class MainThreadBus extends Bus{ 28 | private final Handler handler = new Handler(Looper.getMainLooper()); 29 | 30 | @Override 31 | public void post(final Object event) { 32 | if(Looper.myLooper() == Looper.getMainLooper()){ 33 | super.post(event); 34 | } 35 | else{ 36 | handler.post(new Runnable() { 37 | @Override 38 | public void run() { 39 | MainThreadBus.super.post(event); 40 | } 41 | }); 42 | } 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/util/ConfigClient.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.util; 2 | 3 | import com.google.firebase.remoteconfig.FirebaseRemoteConfig; 4 | import com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings; 5 | 6 | import io.caly.calyandroid.BuildConfig; 7 | import io.caly.calyandroid.R; 8 | 9 | /** 10 | * Copyright 2017 JSpiner. All rights reserved. 11 | * 12 | * @author jspiner (jspiner@naver.com) 13 | * @project CalyAndroid 14 | * @since 17. 4. 18 15 | */ 16 | 17 | public class ConfigClient { 18 | 19 | public static FirebaseRemoteConfig remoteConfig; 20 | 21 | public static FirebaseRemoteConfig getConfig(){ 22 | if(remoteConfig == null) { 23 | remoteConfig = FirebaseRemoteConfig.getInstance(); 24 | FirebaseRemoteConfigSettings configSettings = new FirebaseRemoteConfigSettings.Builder() 25 | .setDeveloperModeEnabled(BuildConfig.DEBUG) 26 | .build(); 27 | 28 | remoteConfig.setConfigSettings(configSettings); 29 | remoteConfig.setDefaults(R.xml.remote_config_defaults); 30 | } 31 | return remoteConfig; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/util/eventListener/LoggingInterceptor.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.util.eventListener; 2 | 3 | import android.util.Log; 4 | 5 | import io.caly.calyandroid.util.Logger; 6 | 7 | import java.io.IOException; 8 | 9 | import io.caly.calyandroid.CalyApplication; 10 | import io.caly.calyandroid.util.Util; 11 | import okhttp3.Interceptor; 12 | import okhttp3.Request; 13 | import okhttp3.Response; 14 | import okhttp3.ResponseBody; 15 | 16 | /** 17 | * Copyright 2017 JSpiner. All rights reserved. 18 | * 19 | * @author jspiner (jspiner@naver.com) 20 | * @project CalyAndroid 21 | * @since 17. 2. 20 22 | */ 23 | 24 | public class LoggingInterceptor implements Interceptor { 25 | 26 | //로그에 쓰일 tag 27 | private static final String TAG = CalyApplication.class.getSimpleName() + "/" + LoggingInterceptor.class.getSimpleName(); 28 | 29 | @Override 30 | public Response intercept(Chain chain) throws IOException { 31 | Request request = chain.request(); 32 | 33 | long t1 = System.nanoTime(); 34 | Logger.i(TAG, "Send to " + request.url() + "\nbody\n" + Util.requestBodyToString(request.body())); 35 | 36 | Response response = chain.proceed(request); 37 | 38 | long t2 = System.nanoTime(); 39 | 40 | String responseString = new String(response.body().bytes()); 41 | 42 | Logger.i(TAG, "Response " + request.url() + " in " + (t2 - t1)/1000000000f + "\ncode : " + response.code() + "\n" + responseString); 43 | 44 | 45 | return response.newBuilder() 46 | .body(ResponseBody.create(response.body().contentType(), responseString)) 47 | .build(); 48 | 49 | } 50 | 51 | 52 | 53 | } 54 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/util/eventListener/TextViewLinkHandler.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.util.eventListener; 2 | 3 | import android.text.Layout; 4 | import android.text.Spannable; 5 | import android.text.method.LinkMovementMethod; 6 | import android.text.style.URLSpan; 7 | import android.view.MotionEvent; 8 | import android.widget.TextView; 9 | 10 | /** 11 | * Copyright 2017 JSpiner. All rights reserved. 12 | * 13 | * @author jspiner (jspiner@naver.com) 14 | * @project CalyAndroid 15 | * @since 17. 2. 21 16 | */ 17 | 18 | public abstract class TextViewLinkHandler extends LinkMovementMethod { 19 | 20 | @Override 21 | public boolean onTouchEvent(TextView widget, Spannable buffer, MotionEvent event) { 22 | 23 | int x = (int) event.getX(); 24 | int y = (int) event.getY(); 25 | 26 | x -= widget.getTotalPaddingLeft(); 27 | y -= widget.getTotalPaddingTop(); 28 | 29 | x += widget.getScrollX(); 30 | y += widget.getScrollY(); 31 | 32 | Layout layout = widget.getLayout(); 33 | int line = layout.getLineForVertical(y); 34 | int off = layout.getOffsetForHorizontal(line, x); 35 | 36 | URLSpan[] link = buffer.getSpans(off, off, URLSpan.class); 37 | if (link.length != 0) { 38 | widget.setPressed(false); 39 | if (event.getAction() == MotionEvent.ACTION_UP) { 40 | onLinkClick(link[0].getURL()); 41 | return true; 42 | } 43 | } 44 | return false; 45 | } 46 | 47 | abstract public void onLinkClick(String url); 48 | } 49 | -------------------------------------------------------------------------------- /app/src/main/java/io/caly/calyandroid/util/tracker/AppSession.java: -------------------------------------------------------------------------------- 1 | package io.caly.calyandroid.util.tracker; 2 | 3 | import java.util.UUID; 4 | 5 | /** 6 | * Copyright 2017 JSpiner. All rights reserved. 7 | * 8 | * @author jspiner (jspiner@naver.com) 9 | * @project CalyAndroid 10 | * @since 17. 5. 10 11 | */ 12 | 13 | public class AppSession { 14 | 15 | private UUID sessionKey; 16 | private long expireTimeSeconds; 17 | private long expireTime; 18 | 19 | public AppSession(long expireTime){ 20 | this.expireTime = expireTime; 21 | this.expireTimeSeconds = System.currentTimeMillis() / 1000 + expireTime; 22 | generateKey(); 23 | } 24 | 25 | private void generateKey(){ 26 | this.sessionKey = UUID.randomUUID(); 27 | } 28 | 29 | public void refreshKey(){ 30 | this.expireTimeSeconds = System.currentTimeMillis() / 1000 + expireTime; 31 | generateKey(); 32 | } 33 | 34 | public boolean isExpired(){ 35 | return System.currentTimeMillis() / 1000 > expireTimeSeconds; 36 | } 37 | 38 | public UUID getSessionKey(){ 39 | if(isExpired()){ 40 | refreshKey(); 41 | } 42 | return sessionKey; 43 | } 44 | 45 | } -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_down.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_in_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_down.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_out_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/button_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/button_press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/cafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/cafe.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/callicon_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/callicon_06.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/caly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/caly_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/coffee_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/coffee_cup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/google.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/group.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/group_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/group_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/group_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/group_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/group_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/group_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/guide_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/guide_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/guide_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/guide_02.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/guide_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/guide_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_access_time_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_access_time_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_add_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_add_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_arrow_back_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_arrow_back_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_checkin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_checkin_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_checkin_c.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_checkin_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_checkin_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_checkin_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_checkin_p.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_checkin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_checkin_r.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_copyright_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_copyright_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_delete_forever_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_delete_forever_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_event_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_event_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_forward.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_forward_noti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_forward_noti.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_down_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_keyboard_arrow_up_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_link_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_link_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_location_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_location_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_message.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_more_horiz_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_more_horiz_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_my_location_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_my_location_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_navigate_before_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_navigate_before_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_navigate_next_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_navigate_next_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_new_releases_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_new_releases_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_rotate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_share_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_share_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_share_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_share_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_timer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/ic_warning.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/instagram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/naver_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/naver_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/oval_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/oval_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/place.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/question_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/question_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/question_mark_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/question_mark_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/rectangle_3__press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/rectangle_3__press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/rectangle_3_copy.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/rectangle_3_copy.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/refresh_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/refresh_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/retuarnat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/retuarnat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/table.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-hdpi/trash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/button_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/button_press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/cafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/cafe.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/callicon_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/callicon_06.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/caly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/caly_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/coffee_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/coffee_cup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/google.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/group.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/group_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/group_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/group_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/group_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/group_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/group_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/guide_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/guide_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/guide_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/guide_02.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/guide_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/guide_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_access_time_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_access_time_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_add_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_add_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_arrow_back_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_arrow_back_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_checkin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_checkin_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_checkin_c.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_checkin_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_checkin_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_checkin_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_checkin_p.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_checkin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_checkin_r.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_copyright_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_copyright_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_delete_forever_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_delete_forever_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_event_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_event_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_forward.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_forward_noti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_forward_noti.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_down_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_keyboard_arrow_up_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_link_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_link_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_location_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_location_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_message.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_more_horiz_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_more_horiz_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_my_location_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_my_location_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_navigate_before_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_navigate_before_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_navigate_next_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_navigate_next_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_new_releases_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_new_releases_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_rotate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_share_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_share_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_share_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_share_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_timer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/ic_warning.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/instagram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/naver_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/naver_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/oval_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/oval_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/place.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/question_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/question_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/question_mark_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/question_mark_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/rectangle_3__press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/rectangle_3__press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/rectangle_3_copy.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/rectangle_3_copy.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/refresh_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/refresh_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/retuarnat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/retuarnat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/table.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/trash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-mdpi/triangle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/button_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/button_press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/cafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/cafe.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/callicon_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/callicon_06.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/caly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/caly_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/coffee_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/coffee_cup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/google.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/group.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/group_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/group_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/group_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/group_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/guide_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/guide_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/guide_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/guide_02.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/guide_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/guide_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_access_time_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_access_time_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_add_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_add_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_arrow_back_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_arrow_back_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_checkin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_checkin_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_checkin_c.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_checkin_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_checkin_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_checkin_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_checkin_p.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_checkin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_checkin_r.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_copyright_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_copyright_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_delete_forever_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_delete_forever_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_event_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_event_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_forward.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_forward_noti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_forward_noti.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_down_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_keyboard_arrow_up_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_link_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_link_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_location_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_location_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_message.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_more_horiz_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_more_horiz_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_my_location_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_my_location_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_navigate_before_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_navigate_before_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_navigate_next_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_navigate_next_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_new_releases_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_new_releases_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_rotate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_share_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_share_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_share_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_share_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_timer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/ic_warning.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/instagram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/naver_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/naver_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/oval_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/oval_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/place.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/question_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/question_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/question_mark_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/question_mark_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/rectangle_3__press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/rectangle_3__press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/rectangle_3_copy.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/rectangle_3_copy.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/refresh_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/refresh_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/retuarnat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/retuarnat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/table.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/trash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xhdpi/triangle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/button_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/button_press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/cafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/cafe.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/callicon_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/callicon_06.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/caly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/caly_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/caly_logo_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/caly_logo_blank.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/coffee_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/coffee_cup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/g_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/g_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/girl.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/google.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/group.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/group_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/group_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/group_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/group_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/group_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/group_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/guide_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/guide_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/guide_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/guide_02.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/guide_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/guide_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_access_time_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_access_time_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_add_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_add_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_checkin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_checkin_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_checkin_c.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_checkin_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_checkin_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_checkin_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_checkin_p.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_checkin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_checkin_r.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_copyright_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_copyright_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_delete_forever_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_delete_forever_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_event_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_event_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_forward.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_forward_noti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_forward_noti.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_down_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_keyboard_arrow_up_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_link_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_link_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_location_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_location_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_message.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_more_horiz_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_more_horiz_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_my_location_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_my_location_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_navigate_before_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_navigate_before_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_navigate_next_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_navigate_next_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_new_releases_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_new_releases_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_rotate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_share_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_share_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_share_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_share_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_timer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/ic_warning.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_inquiry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/icon_inquiry.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/icon_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/img_not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/img_not_found.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/indicator_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/indicator_active.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/indicator_deactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/indicator_deactive.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/insta.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/instagram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/login_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/login_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/logo_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/logo_app.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/logo_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/logo_apple.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/logo_naver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/logo_naver.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/naver_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/naver_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/oval_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/oval_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/place.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/question_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/question_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/question_mark_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/question_mark_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/rectangle_3__press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/rectangle_3__press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/rectangle_3_copy.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/rectangle_3_copy.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/refresh_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/refresh_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/retuarnat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/retuarnat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/table.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/trash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxhdpi/triangle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/button_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/button_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/button_press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/cafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/cafe.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/callicon_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/callicon_06.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/caly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/caly_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/coffee_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/coffee_cup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/google.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/group.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/group_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/group_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/group_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/group_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/group_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/group_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/guide_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/guide_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/guide_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/guide_02.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/guide_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/guide_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_access_time_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_access_time_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_add_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_add_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_checkin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_checkin_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_checkin_c.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_checkin_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_checkin_map.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_checkin_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_checkin_p.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_checkin_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_checkin_r.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_copyright_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_copyright_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_delete_forever_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_delete_forever_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_event_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_event_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_forward.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_forward_noti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_forward_noti.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_down_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_keyboard_arrow_up_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_link_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_link_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_list_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_location_on_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_location_on_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_message.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_more_horiz_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_more_horiz_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_my_location_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_my_location_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_navigate_before_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_navigate_before_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_navigate_next_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_navigate_next_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_new_releases_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_new_releases_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_rotate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_share_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_share_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_share_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_share_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_timer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/ic_warning.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/instagram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/naver_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/naver_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/oval_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/oval_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/place.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/question_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/question_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/question_mark_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/question_mark_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/rectangle_3__press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/rectangle_3__press.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/rectangle_3_copy.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/rectangle_3_copy.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/refresh_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/refresh_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/retuarnat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/retuarnat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/table.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/today.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/trash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalyFactory/caly-android/643d672f08127fe1e9e13cb8377098df7afd661c/app/src/main/res/drawable-xxxhdpi/triangle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_login.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_wait_skip.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_accountadd.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 10 | 11 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_accountlist.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 12 | 13 | 16 | 17 | 21 | 22 | 23 | 24 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_guide.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_map.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_notice.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | 14 | 15 | 19 | 20 | 25 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_recomap.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_setting.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 12 | 13 | 16 | 17 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_test.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 |