├── .gitignore ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── larvalabs │ │ └── betweenus │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── fonts │ │ │ └── Questrial-Regular.ttf │ ├── java │ │ └── com │ │ │ └── larvalabs │ │ │ └── betweenus │ │ │ ├── AppSettings.java │ │ │ ├── BetweenUsApplication.java │ │ │ ├── SystemAlarmReceiver.java │ │ │ ├── Units.java │ │ │ ├── WidgetAnimation.java │ │ │ ├── WidgetProvider.java │ │ │ ├── activity │ │ │ ├── AboutActivity.java │ │ │ ├── FindingPartnerActivity.java │ │ │ ├── HamburgerMenuActivity.java │ │ │ ├── HowToSetUpWidgetActivity.java │ │ │ ├── IntroActivity.java │ │ │ ├── TouchPhonesActivity.java │ │ │ ├── UnitsActivity.java │ │ │ ├── UserConnectedActivity.java │ │ │ ├── UserDisconnectedActivity.java │ │ │ └── UserInfoActivity.java │ │ │ ├── base │ │ │ └── OnCompleteListener.java │ │ │ ├── client │ │ │ ├── BetweenUsService.java │ │ │ ├── ServerResponse.java │ │ │ └── ServerUtil.java │ │ │ ├── core │ │ │ ├── Constants.java │ │ │ └── DeviceLocation.java │ │ │ ├── events │ │ │ ├── ServerRequestEvent.java │ │ │ ├── ServerResponseEvent.java │ │ │ ├── UserDisconnectedEvent.java │ │ │ ├── UsersConnectedEvent.java │ │ │ └── UsersConnectionFailedEvent.java │ │ │ └── utils │ │ │ ├── AnimUtil.java │ │ │ ├── MathUtil.java │ │ │ ├── TextViewUtil.java │ │ │ └── Utils.java │ └── res │ │ ├── anim │ │ ├── fade_in_fast.xml │ │ ├── fade_out_fast.xml │ │ ├── slide_left_in_faster.xml │ │ ├── slide_left_out_slower.xml │ │ ├── slide_right_in_faster.xml │ │ └── slide_right_out_slower.xml │ │ ├── drawable-xxhdpi │ │ ├── basketball_0.png │ │ ├── basketball_1.png │ │ ├── basketball_10.png │ │ ├── basketball_11.png │ │ ├── basketball_12.png │ │ ├── basketball_13.png │ │ ├── basketball_14.png │ │ ├── basketball_2.png │ │ ├── basketball_3.png │ │ ├── basketball_4.png │ │ ├── basketball_5.png │ │ ├── basketball_6.png │ │ ├── basketball_7.png │ │ ├── basketball_8.png │ │ ├── basketball_9.png │ │ ├── bike_0.png │ │ ├── bike_1.png │ │ ├── bike_10.png │ │ ├── bike_11.png │ │ ├── bike_12.png │ │ ├── bike_13.png │ │ ├── bike_14.png │ │ ├── bike_2.png │ │ ├── bike_3.png │ │ ├── bike_4.png │ │ ├── bike_5.png │ │ ├── bike_6.png │ │ ├── bike_7.png │ │ ├── bike_8.png │ │ ├── bike_9.png │ │ ├── bridge_0000.png │ │ ├── bridge_0001.png │ │ ├── bridge_0002.png │ │ ├── bridge_0003.png │ │ ├── bridge_0004.png │ │ ├── bridge_0005.png │ │ ├── bridge_0006.png │ │ ├── bridge_0007.png │ │ ├── bridge_0008.png │ │ ├── bridge_0009.png │ │ ├── bridge_0010.png │ │ ├── bridge_0011.png │ │ ├── bridge_0012.png │ │ ├── bridge_0013.png │ │ ├── car_0.png │ │ ├── car_1.png │ │ ├── car_10.png │ │ ├── car_11.png │ │ ├── car_12.png │ │ ├── car_13.png │ │ ├── car_14.png │ │ ├── car_2.png │ │ ├── car_3.png │ │ ├── car_4.png │ │ ├── car_5.png │ │ ├── car_6.png │ │ ├── car_7.png │ │ ├── car_8.png │ │ ├── car_9.png │ │ ├── empirestate_0.png │ │ ├── empirestate_1.png │ │ ├── empirestate_10.png │ │ ├── empirestate_11.png │ │ ├── empirestate_12.png │ │ ├── empirestate_13.png │ │ ├── empirestate_2.png │ │ ├── empirestate_3.png │ │ ├── empirestate_4.png │ │ ├── empirestate_5.png │ │ ├── empirestate_6.png │ │ ├── empirestate_7.png │ │ ├── empirestate_8.png │ │ ├── empirestate_9.png │ │ ├── giraffe_0.png │ │ ├── giraffe_1.png │ │ ├── giraffe_10.png │ │ ├── giraffe_11.png │ │ ├── giraffe_12.png │ │ ├── giraffe_13.png │ │ ├── giraffe_14.png │ │ ├── giraffe_15.png │ │ ├── giraffe_16.png │ │ ├── giraffe_17.png │ │ ├── giraffe_18.png │ │ ├── giraffe_19.png │ │ ├── giraffe_2.png │ │ ├── giraffe_20.png │ │ ├── giraffe_3.png │ │ ├── giraffe_4.png │ │ ├── giraffe_5.png │ │ ├── giraffe_6.png │ │ ├── giraffe_7.png │ │ ├── giraffe_8.png │ │ ├── giraffe_9.png │ │ ├── ic_close.png │ │ ├── ic_hamburger.png │ │ ├── icon_google.png │ │ ├── icon_magnify.png │ │ ├── lochness_0.png │ │ ├── lochness_1.png │ │ ├── lochness_10.png │ │ ├── lochness_11.png │ │ ├── lochness_12.png │ │ ├── lochness_13.png │ │ ├── lochness_14.png │ │ ├── lochness_2.png │ │ ├── lochness_3.png │ │ ├── lochness_4.png │ │ ├── lochness_5.png │ │ ├── lochness_6.png │ │ ├── lochness_7.png │ │ ├── lochness_8.png │ │ ├── lochness_9.png │ │ ├── mars_0000.png │ │ ├── mars_0001.png │ │ ├── mars_0002.png │ │ ├── mars_0003.png │ │ ├── mars_0004.png │ │ ├── mars_0005.png │ │ ├── mars_0006.png │ │ ├── mars_0007.png │ │ ├── mars_0008.png │ │ ├── moai_0.png │ │ ├── moai_1.png │ │ ├── moai_10.png │ │ ├── moai_11.png │ │ ├── moai_12.png │ │ ├── moai_13.png │ │ ├── moai_14.png │ │ ├── moai_15.png │ │ ├── moai_16.png │ │ ├── moai_17.png │ │ ├── moai_18.png │ │ ├── moai_19.png │ │ ├── moai_2.png │ │ ├── moai_20.png │ │ ├── moai_21.png │ │ ├── moai_22.png │ │ ├── moai_23.png │ │ ├── moai_24.png │ │ ├── moai_25.png │ │ ├── moai_26.png │ │ ├── moai_27.png │ │ ├── moai_3.png │ │ ├── moai_4.png │ │ ├── moai_5.png │ │ ├── moai_6.png │ │ ├── moai_7.png │ │ ├── moai_8.png │ │ ├── moai_9.png │ │ ├── moon_0.png │ │ ├── moon_1.png │ │ ├── moon_10.png │ │ ├── moon_11.png │ │ ├── moon_12.png │ │ ├── moon_13.png │ │ ├── moon_14.png │ │ ├── moon_15.png │ │ ├── moon_16.png │ │ ├── moon_17.png │ │ ├── moon_18.png │ │ ├── moon_19.png │ │ ├── moon_2.png │ │ ├── moon_3.png │ │ ├── moon_4.png │ │ ├── moon_5.png │ │ ├── moon_6.png │ │ ├── moon_7.png │ │ ├── moon_8.png │ │ ├── moon_9.png │ │ ├── mountain_0000.png │ │ ├── mountain_0001.png │ │ ├── mountain_0002.png │ │ ├── mountain_0003.png │ │ ├── mountain_0004.png │ │ ├── mountain_0005.png │ │ ├── mountain_0006.png │ │ ├── mountain_0007.png │ │ ├── mountain_0008.png │ │ ├── mountain_0009.png │ │ ├── mountain_0010.png │ │ ├── mountain_0011.png │ │ ├── mountain_0012.png │ │ ├── mountain_0013.png │ │ ├── mountain_0014.png │ │ ├── mountain_0015.png │ │ ├── mountain_0016.png │ │ ├── mountain_0017.png │ │ ├── mountain_0018.png │ │ ├── paris_0.png │ │ ├── paris_1.png │ │ ├── paris_10.png │ │ ├── paris_11.png │ │ ├── paris_12.png │ │ ├── paris_13.png │ │ ├── paris_2.png │ │ ├── paris_3.png │ │ ├── paris_4.png │ │ ├── paris_5.png │ │ ├── paris_6.png │ │ ├── paris_7.png │ │ ├── paris_8.png │ │ ├── paris_9.png │ │ ├── pencil_0.png │ │ ├── pencil_1.png │ │ ├── pencil_10.png │ │ ├── pencil_11.png │ │ ├── pencil_12.png │ │ ├── pencil_13.png │ │ ├── pencil_14.png │ │ ├── pencil_15.png │ │ ├── pencil_16.png │ │ ├── pencil_17.png │ │ ├── pencil_18.png │ │ ├── pencil_19.png │ │ ├── pencil_2.png │ │ ├── pencil_20.png │ │ ├── pencil_21.png │ │ ├── pencil_22.png │ │ ├── pencil_23.png │ │ ├── pencil_24.png │ │ ├── pencil_25.png │ │ ├── pencil_26.png │ │ ├── pencil_27.png │ │ ├── pencil_28.png │ │ ├── pencil_29.png │ │ ├── pencil_3.png │ │ ├── pencil_4.png │ │ ├── pencil_5.png │ │ ├── pencil_6.png │ │ ├── pencil_7.png │ │ ├── pencil_8.png │ │ ├── pencil_9.png │ │ ├── phone_0.png │ │ ├── phone_1.png │ │ ├── phone_10.png │ │ ├── phone_11.png │ │ ├── phone_12.png │ │ ├── phone_13.png │ │ ├── phone_14.png │ │ ├── phone_15.png │ │ ├── phone_16.png │ │ ├── phone_17.png │ │ ├── phone_18.png │ │ ├── phone_19.png │ │ ├── phone_2.png │ │ ├── phone_20.png │ │ ├── phone_21.png │ │ ├── phone_22.png │ │ ├── phone_23.png │ │ ├── phone_24.png │ │ ├── phone_25.png │ │ ├── phone_26.png │ │ ├── phone_27.png │ │ ├── phone_28.png │ │ ├── phone_29.png │ │ ├── phone_3.png │ │ ├── phone_30.png │ │ ├── phone_31.png │ │ ├── phone_32.png │ │ ├── phone_4.png │ │ ├── phone_5.png │ │ ├── phone_6.png │ │ ├── phone_7.png │ │ ├── phone_8.png │ │ ├── phone_9.png │ │ ├── pizza_0000.png │ │ ├── pizza_0001.png │ │ ├── pizza_0002.png │ │ ├── pizza_0003.png │ │ ├── pizza_0004.png │ │ ├── pizza_0005.png │ │ ├── pizza_0006.png │ │ ├── pizza_0007.png │ │ ├── pizza_0008.png │ │ ├── plane_0.png │ │ ├── plane_1.png │ │ ├── plane_10.png │ │ ├── plane_11.png │ │ ├── plane_12.png │ │ ├── plane_13.png │ │ ├── plane_14.png │ │ ├── plane_2.png │ │ ├── plane_3.png │ │ ├── plane_4.png │ │ ├── plane_5.png │ │ ├── plane_6.png │ │ ├── plane_7.png │ │ ├── plane_8.png │ │ ├── plane_9.png │ │ ├── pluto_0.png │ │ ├── pluto_1.png │ │ ├── pluto_10.png │ │ ├── pluto_11.png │ │ ├── pluto_12.png │ │ ├── pluto_13.png │ │ ├── pluto_14.png │ │ ├── pluto_15.png │ │ ├── pluto_16.png │ │ ├── pluto_17.png │ │ ├── pluto_18.png │ │ ├── pluto_19.png │ │ ├── pluto_2.png │ │ ├── pluto_3.png │ │ ├── pluto_4.png │ │ ├── pluto_5.png │ │ ├── pluto_6.png │ │ ├── pluto_7.png │ │ ├── pluto_8.png │ │ ├── pluto_9.png │ │ ├── pyramid_0.png │ │ ├── pyramid_1.png │ │ ├── pyramid_10.png │ │ ├── pyramid_11.png │ │ ├── pyramid_12.png │ │ ├── pyramid_13.png │ │ ├── pyramid_14.png │ │ ├── pyramid_15.png │ │ ├── pyramid_16.png │ │ ├── pyramid_17.png │ │ ├── pyramid_18.png │ │ ├── pyramid_19.png │ │ ├── pyramid_2.png │ │ ├── pyramid_20.png │ │ ├── pyramid_21.png │ │ ├── pyramid_22.png │ │ ├── pyramid_23.png │ │ ├── pyramid_3.png │ │ ├── pyramid_4.png │ │ ├── pyramid_5.png │ │ ├── pyramid_6.png │ │ ├── pyramid_7.png │ │ ├── pyramid_8.png │ │ ├── pyramid_9.png │ │ ├── soccer_0.png │ │ ├── soccer_1.png │ │ ├── soccer_10.png │ │ ├── soccer_11.png │ │ ├── soccer_12.png │ │ ├── soccer_13.png │ │ ├── soccer_14.png │ │ ├── soccer_2.png │ │ ├── soccer_3.png │ │ ├── soccer_4.png │ │ ├── soccer_5.png │ │ ├── soccer_6.png │ │ ├── soccer_7.png │ │ ├── soccer_8.png │ │ ├── soccer_9.png │ │ ├── stopsign_0.png │ │ ├── stopsign_1.png │ │ ├── stopsign_2.png │ │ ├── stopsign_3.png │ │ ├── stopsign_4.png │ │ ├── stopsign_5.png │ │ ├── stopsign_6.png │ │ ├── stopsign_7.png │ │ ├── stopsign_8.png │ │ ├── stopsign_9.png │ │ ├── tree_0.png │ │ ├── tree_1.png │ │ ├── tree_10.png │ │ ├── tree_11.png │ │ ├── tree_12.png │ │ ├── tree_13.png │ │ ├── tree_14.png │ │ ├── tree_15.png │ │ ├── tree_16.png │ │ ├── tree_17.png │ │ ├── tree_18.png │ │ ├── tree_19.png │ │ ├── tree_2.png │ │ ├── tree_20.png │ │ ├── tree_21.png │ │ ├── tree_22.png │ │ ├── tree_23.png │ │ ├── tree_3.png │ │ ├── tree_4.png │ │ ├── tree_5.png │ │ ├── tree_6.png │ │ ├── tree_7.png │ │ ├── tree_8.png │ │ ├── tree_9.png │ │ ├── watch_0.png │ │ ├── watch_1.png │ │ ├── watch_10.png │ │ ├── watch_11.png │ │ ├── watch_12.png │ │ ├── watch_13.png │ │ ├── watch_14.png │ │ ├── watch_15.png │ │ ├── watch_16.png │ │ ├── watch_17.png │ │ ├── watch_18.png │ │ ├── watch_19.png │ │ ├── watch_2.png │ │ ├── watch_20.png │ │ ├── watch_21.png │ │ ├── watch_22.png │ │ ├── watch_23.png │ │ ├── watch_24.png │ │ ├── watch_3.png │ │ ├── watch_4.png │ │ ├── watch_5.png │ │ ├── watch_6.png │ │ ├── watch_7.png │ │ ├── watch_8.png │ │ ├── watch_9.png │ │ ├── whale_0.png │ │ ├── whale_1.png │ │ ├── whale_2.png │ │ ├── whale_3.png │ │ ├── whale_4.png │ │ ├── whale_5.png │ │ ├── whale_6.png │ │ ├── whale_7.png │ │ ├── widgethelp_0.png │ │ ├── widgethelp_1.png │ │ ├── widgethelp_10.png │ │ ├── widgethelp_11.png │ │ ├── widgethelp_12.png │ │ ├── widgethelp_13.png │ │ ├── widgethelp_14.png │ │ ├── widgethelp_15.png │ │ ├── widgethelp_16.png │ │ ├── widgethelp_17.png │ │ ├── widgethelp_18.png │ │ ├── widgethelp_19.png │ │ ├── widgethelp_2.png │ │ ├── widgethelp_20.png │ │ ├── widgethelp_21.png │ │ ├── widgethelp_3.png │ │ ├── widgethelp_4.png │ │ ├── widgethelp_5.png │ │ ├── widgethelp_6.png │ │ ├── widgethelp_7.png │ │ ├── widgethelp_8.png │ │ ├── widgethelp_9.png │ │ └── work │ │ │ ├── Device.gif.000 │ │ │ ├── Device.gif.001 │ │ │ ├── Device.gif.002 │ │ │ ├── Device.gif.003 │ │ │ ├── Device.gif.004 │ │ │ ├── Device.gif.005 │ │ │ ├── Device.gif.006 │ │ │ ├── Device.gif.007 │ │ │ ├── Device.gif.008 │ │ │ ├── Device.gif.009 │ │ │ ├── Device.gif.010 │ │ │ ├── Device.gif.011 │ │ │ ├── Device.gif.012 │ │ │ ├── Device.gif.013 │ │ │ ├── Device.gif.014 │ │ │ ├── Device.gif.015 │ │ │ ├── Device.gif.016 │ │ │ ├── Device.gif.017 │ │ │ ├── Device.gif.018 │ │ │ ├── Device.gif.019 │ │ │ ├── Device.gif.020 │ │ │ ├── Device.gif.021 │ │ │ ├── Device.gif.022 │ │ │ ├── Device.gif.023 │ │ │ ├── Device.gif.024 │ │ │ ├── Device.gif.025 │ │ │ ├── Device.gif.026 │ │ │ ├── Device.gif.027 │ │ │ ├── Device.gif.028 │ │ │ ├── Device.gif.029 │ │ │ ├── Device.gif.030 │ │ │ ├── Device.gif.031 │ │ │ ├── Device.gif.032 │ │ │ ├── phone_0.png │ │ │ ├── phone_1.png │ │ │ ├── phone_10.png │ │ │ ├── phone_11.png │ │ │ ├── phone_12.png │ │ │ ├── phone_13.png │ │ │ ├── phone_14.png │ │ │ ├── phone_15.png │ │ │ ├── phone_16.png │ │ │ ├── phone_17.png │ │ │ ├── phone_18.png │ │ │ ├── phone_19.png │ │ │ ├── phone_2.png │ │ │ ├── phone_20.png │ │ │ ├── phone_21.png │ │ │ ├── phone_22.png │ │ │ ├── phone_23.png │ │ │ ├── phone_24.png │ │ │ ├── phone_25.png │ │ │ ├── phone_26.png │ │ │ ├── phone_27.png │ │ │ ├── phone_28.png │ │ │ ├── phone_29.png │ │ │ ├── phone_3.png │ │ │ ├── phone_30.png │ │ │ ├── phone_31.png │ │ │ ├── phone_32.png │ │ │ ├── phone_4.png │ │ │ ├── phone_5.png │ │ │ ├── phone_6.png │ │ │ ├── phone_7.png │ │ │ ├── phone_8.png │ │ │ └── phone_9.png │ │ ├── drawable-xxxhdpi │ │ ├── about.png │ │ ├── activity_units.png │ │ ├── betweenus_text.png │ │ ├── bg_welcome.jpg │ │ ├── bu_inapp_units_01.png │ │ ├── bu_inapp_units_02.png │ │ ├── bu_inapp_units_03.png │ │ ├── bu_inapp_units_04.png │ │ ├── bu_inapp_units_05.png │ │ ├── bu_inapp_units_06.png │ │ ├── bu_inapp_units_07.png │ │ ├── bu_inapp_units_08.png │ │ ├── bu_inapp_units_09.png │ │ ├── bu_inapp_units_10.png │ │ ├── bu_inapp_units_11.png │ │ ├── bu_inapp_units_12.png │ │ ├── bu_inapp_units_13.png │ │ ├── bu_inapp_units_14.png │ │ ├── bu_inapp_units_15.png │ │ ├── bu_inapp_units_16.png │ │ ├── bu_inapp_units_17.png │ │ ├── bu_inapp_units_18.png │ │ ├── bu_inapp_units_airplane.png │ │ ├── bu_inapp_units_easterhead.png │ │ ├── bu_inapp_units_hotdog.png │ │ ├── bu_inapp_units_paperclip.png │ │ ├── bu_inapp_units_phone.png │ │ ├── bu_inapp_units_stopsign.png │ │ ├── bu_inapp_units_watch.png │ │ ├── bu_inapp_units_whale.png │ │ ├── bu_units_01.png │ │ ├── bu_units_02.png │ │ ├── bu_units_03.png │ │ ├── bu_units_04.png │ │ ├── bu_units_05.png │ │ ├── bu_units_06.png │ │ ├── bu_units_07.png │ │ ├── bu_units_08.png │ │ ├── bu_units_09.png │ │ ├── bu_units_10.png │ │ ├── bu_units_11.png │ │ ├── bu_units_12.png │ │ ├── bu_units_13.png │ │ ├── bu_units_14.png │ │ ├── bu_units_15.png │ │ ├── bu_units_16.png │ │ ├── bu_units_17.png │ │ ├── bu_units_18.png │ │ ├── bu_units_airplane.png │ │ ├── bu_units_easterhead.png │ │ ├── bu_units_hotdog.png │ │ ├── bu_units_paperclip.png │ │ ├── bu_units_phone.png │ │ ├── bu_units_stopsign.png │ │ ├── bu_units_watch.png │ │ ├── bu_units_whale.png │ │ ├── fg_welcome.png │ │ ├── finding_partner_0000.png │ │ ├── finding_partner_0001.png │ │ ├── finding_partner_0002.png │ │ ├── finding_partner_0003.png │ │ ├── pairing_0000.png │ │ ├── pairing_0001.png │ │ ├── pairing_0002.png │ │ ├── pairing_0003.png │ │ ├── pairing_0004.png │ │ ├── pairing_0005.png │ │ ├── pairing_0006.png │ │ ├── pairing_0007.png │ │ ├── pairing_0008.png │ │ ├── pairing_0009.png │ │ ├── pairing_0010.png │ │ ├── pairing_0011.png │ │ ├── pairing_0012.png │ │ ├── pairing_0013.png │ │ ├── pairing_0014.png │ │ ├── pairing_0015.png │ │ ├── pairing_0016.png │ │ ├── pairing_0017.png │ │ ├── pairing_0018.png │ │ ├── pairing_0019.png │ │ ├── pairing_0020.png │ │ ├── pairing_0021.png │ │ ├── pairing_0022.png │ │ ├── pairing_0023.png │ │ ├── pairing_0024.png │ │ ├── pairing_0025.png │ │ ├── pairing_0026.png │ │ ├── pairing_0027.png │ │ ├── pairing_0028.png │ │ ├── pairing_0029.png │ │ ├── user_connected.png │ │ ├── user_disconnected.png │ │ ├── user_info.png │ │ ├── widget_connect_to_partner.png │ │ ├── widget_ic_refresh.png │ │ ├── widget_loading.png │ │ ├── widget_users_disconnected.png │ │ └── x_button.png │ │ ├── drawable │ │ ├── btn_bg_focused.xml │ │ ├── btn_bg_normal.xml │ │ ├── btn_bg_pressed.xml │ │ ├── btn_selector.xml │ │ ├── finding_partner.xml │ │ ├── pairing.xml │ │ ├── widget_bg.xml │ │ └── widgethelp.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_finding_partner.xml │ │ ├── activity_hamburgermenu.xml │ │ ├── activity_howtosetwidget.xml │ │ ├── activity_pairing.xml │ │ ├── activity_phones_touch.xml │ │ ├── activity_units.xml │ │ ├── activity_user_connected.xml │ │ ├── activity_user_disconnected.xml │ │ ├── activity_user_info.xml │ │ ├── activity_welcome.xml │ │ ├── header.xml │ │ ├── widget.xml │ │ ├── widget_disconnected.xml │ │ ├── widget_idle.xml │ │ ├── widget_largeimage_desc.xml │ │ ├── widget_loading.xml │ │ └── widget_unit_info.xml │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── unitanimations.xml │ │ └── values.xml │ │ └── xml │ │ └── widget_provider.xml │ └── test │ └── java │ └── com │ └── larvalabs │ └── betweenus │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── readme.md ├── settings.gradle └── store-assets ├── app_icon-01.png ├── bu_screens-01.png ├── bu_screens-02.png ├── bu_screens-03.png ├── bu_screens-04.png └── feature_image.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/.gitignore -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/larvalabs/betweenus/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/androidTest/java/com/larvalabs/betweenus/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Questrial-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/assets/fonts/Questrial-Regular.ttf -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/AppSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/AppSettings.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/BetweenUsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/BetweenUsApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/SystemAlarmReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/SystemAlarmReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/Units.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/Units.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/WidgetAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/WidgetAnimation.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/WidgetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/WidgetProvider.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/AboutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/AboutActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/FindingPartnerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/FindingPartnerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/HamburgerMenuActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/HamburgerMenuActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/HowToSetUpWidgetActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/HowToSetUpWidgetActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/IntroActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/IntroActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/TouchPhonesActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/TouchPhonesActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/UnitsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/UnitsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/UserConnectedActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/UserConnectedActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/UserDisconnectedActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/UserDisconnectedActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/activity/UserInfoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/activity/UserInfoActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/base/OnCompleteListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/base/OnCompleteListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/client/BetweenUsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/client/BetweenUsService.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/client/ServerResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/client/ServerResponse.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/client/ServerUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/client/ServerUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/core/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/core/Constants.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/core/DeviceLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/core/DeviceLocation.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/events/ServerRequestEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/events/ServerRequestEvent.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/events/ServerResponseEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/events/ServerResponseEvent.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/events/UserDisconnectedEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/events/UserDisconnectedEvent.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/events/UsersConnectedEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/events/UsersConnectedEvent.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/events/UsersConnectionFailedEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/events/UsersConnectionFailedEvent.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/utils/AnimUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/utils/AnimUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/utils/MathUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/utils/MathUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/utils/TextViewUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/utils/TextViewUtil.java -------------------------------------------------------------------------------- /app/src/main/java/com/larvalabs/betweenus/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/java/com/larvalabs/betweenus/utils/Utils.java -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_in_fast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/anim/fade_in_fast.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_out_fast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/anim/fade_out_fast.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_left_in_faster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/anim/slide_left_in_faster.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_left_out_slower.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/anim/slide_left_out_slower.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_right_in_faster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/anim/slide_right_in_faster.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_right_out_slower.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/anim/slide_right_out_slower.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/basketball_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/basketball_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bike_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bike_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0000.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0001.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0002.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0003.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0004.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0005.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0006.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0007.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0008.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0009.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0010.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0011.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0012.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bridge_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/bridge_0013.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/car_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/car_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/empirestate_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/empirestate_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/giraffe_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/giraffe_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/ic_close.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/ic_hamburger.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/icon_google.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/icon_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/icon_magnify.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/lochness_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/lochness_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0000.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0001.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0002.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0003.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0004.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0005.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0006.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0007.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mars_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mars_0008.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_25.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_26.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_27.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moai_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moai_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moon_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/moon_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0000.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0001.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0002.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0003.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0004.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0005.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0006.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0007.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0008.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0009.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0010.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0011.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0012.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0013.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0014.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0015.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0016.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0017.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/mountain_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/mountain_0018.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/paris_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/paris_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_25.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_26.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_27.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_28.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_29.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pencil_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pencil_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_25.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_26.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_27.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_28.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_29.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_30.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_31.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_32.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/phone_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/phone_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0000.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0001.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0002.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0003.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0004.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0005.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0006.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0007.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pizza_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pizza_0008.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/plane_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/plane_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pluto_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pluto_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/pyramid_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/pyramid_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/soccer_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/soccer_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/stopsign_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/stopsign_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tree_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/tree_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/watch_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/watch_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whale_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/whale_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whale_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/whale_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whale_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/whale_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whale_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/whale_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whale_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/whale_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whale_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/whale_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whale_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/whale_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/whale_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/whale_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/widgethelp_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/widgethelp_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.000 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.001 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.002 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.003 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.004 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.005 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.006 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.007 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.008 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.009 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.010 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.011 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.012 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.013 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.014 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.015 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.016 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.017 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.018 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.019 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.020 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.021 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.022 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.023 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.024 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.025 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.026: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.026 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.027: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.027 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.028: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.028 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.029: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.029 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.030 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.031: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.031 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/Device.gif.032: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/Device.gif.032 -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_25.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_26.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_27.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_28.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_29.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_30.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_31.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_32.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/work/phone_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxhdpi/work/phone_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/activity_units.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/activity_units.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/betweenus_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/betweenus_text.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bg_welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bg_welcome.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_02.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_04.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_05.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_06.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_07.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_08.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_09.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_airplane.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_easterhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_easterhead.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_hotdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_hotdog.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_paperclip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_stopsign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_stopsign.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_watch.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_inapp_units_whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_inapp_units_whale.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_02.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_04.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_05.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_06.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_07.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_08.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_09.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_airplane.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_easterhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_easterhead.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_hotdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_hotdog.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_paperclip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_stopsign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_stopsign.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_watch.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/bu_units_whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/bu_units_whale.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/fg_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/fg_welcome.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/finding_partner_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/finding_partner_0000.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/finding_partner_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/finding_partner_0001.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/finding_partner_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/finding_partner_0002.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/finding_partner_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/finding_partner_0003.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0000.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0001.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0002.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0003.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0004.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0005.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0006.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0007.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0008.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0009.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0010.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0011.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0012.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0013.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0014.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0015.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0016.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0017.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0018.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0019.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0020.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0021.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0022.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0023.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0024.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0025.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0026.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0027.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0028.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/pairing_0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/pairing_0029.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/user_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/user_connected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/user_disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/user_disconnected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/user_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/user_info.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/widget_connect_to_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/widget_connect_to_partner.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/widget_ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/widget_ic_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/widget_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/widget_loading.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/widget_users_disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/widget_users_disconnected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/x_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable-xxxhdpi/x_button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_bg_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable/btn_bg_focused.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_bg_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable/btn_bg_normal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_bg_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable/btn_bg_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable/btn_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/finding_partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable/finding_partner.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/pairing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable/pairing.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable/widget_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widgethelp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/drawable/widgethelp.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_finding_partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_finding_partner.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_hamburgermenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_hamburgermenu.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_howtosetwidget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_howtosetwidget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pairing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_pairing.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_phones_touch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_phones_touch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_units.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_user_connected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_user_connected.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_user_disconnected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_user_disconnected.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_user_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_user_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/activity_welcome.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_disconnected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/widget_disconnected.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_idle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/widget_idle.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_largeimage_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/widget_largeimage_desc.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/widget_loading.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_unit_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/layout/widget_unit_info.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/unitanimations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/values/unitanimations.xml -------------------------------------------------------------------------------- /app/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/values/values.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/main/res/xml/widget_provider.xml -------------------------------------------------------------------------------- /app/src/test/java/com/larvalabs/betweenus/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/app/src/test/java/com/larvalabs/betweenus/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/gradlew.bat -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/readme.md -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /store-assets/app_icon-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/store-assets/app_icon-01.png -------------------------------------------------------------------------------- /store-assets/bu_screens-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/store-assets/bu_screens-01.png -------------------------------------------------------------------------------- /store-assets/bu_screens-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/store-assets/bu_screens-02.png -------------------------------------------------------------------------------- /store-assets/bu_screens-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/store-assets/bu_screens-03.png -------------------------------------------------------------------------------- /store-assets/bu_screens-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/store-assets/bu_screens-04.png -------------------------------------------------------------------------------- /store-assets/feature_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larvalabs/betweenus/HEAD/store-assets/feature_image.png --------------------------------------------------------------------------------