├── .gitignore ├── Engine ├── build.gradle ├── proguard-project.txt ├── project.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── stylingandroid │ │ └── presenter │ │ └── engine │ │ ├── AppState.java │ │ ├── display │ │ ├── DisplayInfoHelper.java │ │ ├── DisplayPresentation.java │ │ └── StandaloneDisplayActivity.java │ │ └── presentation │ │ ├── AnimatedImageView.java │ │ ├── ConstraintSlideLayout.java │ │ ├── DisplayLayout.java │ │ ├── FilteredImageView.java │ │ ├── GraphicalLayout.java │ │ ├── HighlightedTextView.java │ │ ├── PhaseContainer.java │ │ ├── Phaseable.java │ │ ├── PhaseableLinearLayout.java │ │ ├── PhaseableView.java │ │ ├── PhasedLayout.java │ │ ├── Phaser.java │ │ ├── PorterDuffImageView.java │ │ ├── ShapedImageView.java │ │ ├── SlideLayout.java │ │ ├── TransitionLayout.java │ │ └── TweetNotes.kt │ ├── presentations │ ├── animations │ │ ├── anim │ │ │ ├── inter_accel.xml │ │ │ ├── inter_accel_decel.xml │ │ │ ├── inter_antic.xml │ │ │ ├── inter_antic_over.xml │ │ │ ├── inter_bounce.xml │ │ │ ├── inter_decel.xml │ │ │ ├── inter_linear.xml │ │ │ ├── inter_over.xml │ │ │ ├── layout_anim.xml │ │ │ ├── layout_item_anim.xml │ │ │ ├── text1.xml │ │ │ ├── text2.xml │ │ │ ├── text3.xml │ │ │ ├── text4.xml │ │ │ ├── text5.xml │ │ │ ├── text6.xml │ │ │ ├── text7.xml │ │ │ ├── text8.xml │ │ │ ├── text9.xml │ │ │ ├── view1a.xml │ │ │ └── view1b.xml │ │ ├── animator │ │ │ └── saturation.xml │ │ ├── drawable-hdpi │ │ │ ├── sa120.png │ │ │ ├── sa180.png │ │ │ ├── sa240.png │ │ │ ├── sa300.png │ │ │ └── sa60.png │ │ ├── drawable-mdpi │ │ │ ├── sa120.png │ │ │ ├── sa180.png │ │ │ ├── sa240.png │ │ │ ├── sa300.png │ │ │ ├── sa60.png │ │ │ └── sa_fade.png │ │ ├── drawable │ │ │ ├── cell.xml │ │ │ ├── cell_bottom.xml │ │ │ ├── cell_bottom_end.xml │ │ │ ├── cell_end.xml │ │ │ ├── header.xml │ │ │ ├── header_end.xml │ │ │ ├── header_start.xml │ │ │ ├── rotate.xml │ │ │ └── tween_list.xml │ │ ├── layout │ │ │ ├── anim_drawables1.xml │ │ │ ├── anim_drawables2.xml │ │ │ ├── anim_end.xml │ │ │ ├── anim_final.xml │ │ │ ├── anim_interpolators1.xml │ │ │ ├── anim_interpolators2.xml │ │ │ ├── anim_interpolators3.xml │ │ │ ├── anim_property1.xml │ │ │ ├── anim_property2.xml │ │ │ ├── anim_questions.xml │ │ │ ├── anim_title.xml │ │ │ ├── anim_types.xml │ │ │ ├── anim_using_view1.xml │ │ │ ├── anim_using_view2.xml │ │ │ ├── anim_using_view3.xml │ │ │ ├── anim_using_view4.xml │ │ │ ├── anim_view1.xml │ │ │ ├── anim_view2.xml │ │ │ ├── anim_view2a.xml │ │ │ ├── anim_view3.xml │ │ │ ├── anim_what.xml │ │ │ └── anim_why.xml │ │ └── values │ │ │ ├── anim_tweets_notes.xml │ │ │ ├── arrays.xml │ │ │ └── strings_view.xml │ ├── graphicalmagic │ │ ├── anim │ │ │ ├── alpha_slidein.xml │ │ │ └── layout.xml │ │ ├── drawable-mdpi │ │ │ ├── porterduff_dst.png │ │ │ ├── porterduff_dst_trans.png │ │ │ ├── porterduff_src.png │ │ │ └── porterduff_src_trans.png │ │ ├── drawable-tvdpi │ │ │ ├── porterduff_dst.png │ │ │ ├── porterduff_dst_trans.png │ │ │ ├── porterduff_src.png │ │ │ └── porterduff_src_trans.png │ │ ├── drawable-xhdpi │ │ │ ├── allison.png │ │ │ ├── betty.jpg │ │ │ ├── broadstairs.jpg │ │ │ ├── broadstairs_border.jpg │ │ │ ├── checkerboard_tile.png │ │ │ ├── porterduff_dst.png │ │ │ ├── porterduff_dst_trans.png │ │ │ ├── porterduff_src.png │ │ │ └── porterduff_src_trans.png │ │ ├── drawable │ │ │ ├── border_filled.xml │ │ │ ├── bullet.xml │ │ │ └── checkerboard.xml │ │ ├── layout │ │ │ ├── gm_allison.xml │ │ │ ├── gm_desaturate1.xml │ │ │ ├── gm_desaturate1a.xml │ │ │ ├── gm_desaturate1b.xml │ │ │ ├── gm_desaturate1c.xml │ │ │ ├── gm_desaturate2.xml │ │ │ ├── gm_desaturate2a.xml │ │ │ ├── gm_desaturate2b.xml │ │ │ ├── gm_desaturate2c.xml │ │ │ ├── gm_desaturate2d.xml │ │ │ ├── gm_desaturate2e.xml │ │ │ ├── gm_desaturate2f.xml │ │ │ ├── gm_desaturate2g.xml │ │ │ ├── gm_desaturate3.xml │ │ │ ├── gm_desaturate4.xml │ │ │ ├── gm_end.xml │ │ │ ├── gm_flatten1.xml │ │ │ ├── gm_flatten1a.xml │ │ │ ├── gm_flatten1b.xml │ │ │ ├── gm_flatten1c.xml │ │ │ ├── gm_flatten2.xml │ │ │ ├── gm_flatten2a.xml │ │ │ ├── gm_flatten2b.xml │ │ │ ├── gm_flatten2c.xml │ │ │ ├── gm_flatten2d.xml │ │ │ ├── gm_flatten2e.xml │ │ │ ├── gm_flatten2f.xml │ │ │ ├── gm_flatten2g.xml │ │ │ ├── gm_flatten2h.xml │ │ │ ├── gm_flatten2i.xml │ │ │ ├── gm_flatten2j.xml │ │ │ ├── gm_intro.xml │ │ │ ├── gm_minsdk.xml │ │ │ ├── gm_questions.xml │ │ │ ├── gm_renderscript1.xml │ │ │ ├── gm_renderscript1a.xml │ │ │ ├── gm_renderscript1b.xml │ │ │ ├── gm_renderscript1c.xml │ │ │ ├── gm_renderscript2.xml │ │ │ ├── gm_renderscript3.xml │ │ │ ├── gm_renderscript4.xml │ │ │ ├── gm_renderscript5.xml │ │ │ ├── gm_renderscript6.xml │ │ │ ├── gm_shader1.xml │ │ │ ├── gm_shader1a.xml │ │ │ ├── gm_shader1b.xml │ │ │ ├── gm_shader1c.xml │ │ │ ├── gm_shader2.xml │ │ │ ├── gm_shader2a.xml │ │ │ ├── gm_shader2b.xml │ │ │ ├── gm_shader2c.xml │ │ │ ├── gm_shader2d.xml │ │ │ ├── gm_shader3.xml │ │ │ ├── gm_shader4.xml │ │ │ ├── gm_shapes1.xml │ │ │ ├── gm_shapes1a.xml │ │ │ ├── gm_shapes1b.xml │ │ │ ├── gm_shapes1c.xml │ │ │ ├── gm_shapes2.xml │ │ │ ├── gm_shapes2a.xml │ │ │ ├── gm_shapes2b.xml │ │ │ ├── gm_shapes2c.xml │ │ │ ├── gm_shapes2d.xml │ │ │ ├── gm_shapes2e.xml │ │ │ ├── gm_test.xml │ │ │ ├── gm_test2.xml │ │ │ ├── gm_test2a.xml │ │ │ ├── gm_test3.xml │ │ │ ├── gm_title.xml │ │ │ ├── gm_why.xml │ │ │ ├── gm_xfermodes1.xml │ │ │ ├── gm_xfermodes2.xml │ │ │ ├── gm_xfermodes3.xml │ │ │ └── gm_xfermodes4.xml │ │ ├── transition │ │ │ ├── auto.xml │ │ │ ├── flatten.xml │ │ │ └── none.xml │ │ ├── values-xlarge │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── code.xml │ │ │ ├── colours.xml │ │ │ ├── dimens.xml │ │ │ └── gm_tweets_notes.xml │ ├── layouts │ │ ├── layout │ │ │ ├── layouts_attack1a.xml │ │ │ ├── layouts_attack2a.xml │ │ │ ├── layouts_attack2b.xml │ │ │ ├── layouts_attack2c.xml │ │ │ ├── layouts_attack2d.xml │ │ │ ├── layouts_attack3a.xml │ │ │ ├── layouts_attack3b.xml │ │ │ ├── layouts_attack3c.xml │ │ │ ├── layouts_attack3d.xml │ │ │ ├── layouts_attack4a.xml │ │ │ ├── layouts_attack4b.xml │ │ │ ├── layouts_attack4c.xml │ │ │ ├── layouts_attack4d.xml │ │ │ ├── layouts_attack5a.xml │ │ │ ├── layouts_attack5b.xml │ │ │ ├── layouts_end.xml │ │ │ ├── layouts_framelayout.xml │ │ │ ├── layouts_gridlayout1.xml │ │ │ ├── layouts_gridlayout2a.xml │ │ │ ├── layouts_gridlayout2b.xml │ │ │ ├── layouts_gridlayout2c.xml │ │ │ ├── layouts_gridlayout2d.xml │ │ │ ├── layouts_gridlayout2e.xml │ │ │ ├── layouts_gridlayout2f.xml │ │ │ ├── layouts_gridlayout2g.xml │ │ │ ├── layouts_important.xml │ │ │ ├── layouts_layouttips.xml │ │ │ ├── layouts_linearlayout.xml │ │ │ ├── layouts_outline.xml │ │ │ ├── layouts_questions.xml │ │ │ ├── layouts_relativelayout.xml │ │ │ ├── layouts_tablelayout.xml │ │ │ └── layouts_title.xml │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── dimens.xml │ │ │ └── ids.xml │ ├── move │ │ ├── anim │ │ │ ├── diagonalleftbottom.xml │ │ │ ├── diagonalrightbottom.xml │ │ │ ├── diagonalrighttop.xml │ │ │ ├── fast_grow.xml │ │ │ ├── fast_shrink.xml │ │ │ ├── grow.xml │ │ │ ├── pushin.xml │ │ │ ├── revealx.xml │ │ │ ├── slow_slideinleft.xml │ │ │ ├── slow_slideinright.xml │ │ │ └── smooth_slideinright.xml │ │ ├── animator │ │ │ └── scratch.xml │ │ ├── drawable │ │ │ ├── boat.xml │ │ │ ├── bullet_animated.xml │ │ │ ├── bullet_static.xml │ │ │ ├── check_animated.xml │ │ │ ├── clippy.jpg │ │ │ ├── cross_animated.xml │ │ │ ├── double_sea_fill.xml │ │ │ ├── double_sea_wifi.xml │ │ │ ├── full_wifi.xml │ │ │ ├── ic_check.xml │ │ │ ├── ic_cross.xml │ │ │ ├── move_cv_background.xml │ │ │ ├── move_cv_full_forward.xml │ │ │ ├── move_cv_full_reverse.xml │ │ │ ├── move_cv_mic.xml │ │ │ ├── move_cv_mic1_forward.xml │ │ │ ├── move_cv_mic1_reverse.xml │ │ │ ├── move_cv_mic2_forward.xml │ │ │ ├── move_cv_mic2_reverse.xml │ │ │ ├── move_cv_mic3_forward.xml │ │ │ ├── move_cv_mic3_reverse.xml │ │ │ ├── move_cv_square_forward.xml │ │ │ ├── move_cv_square_reverse.xml │ │ │ ├── move_cv_stand_forward.xml │ │ │ ├── move_cv_stand_reverse.xml │ │ │ ├── move_cv_stop.xml │ │ │ ├── move_fill_boat3a.xml │ │ │ ├── move_fill_boat3b.xml │ │ │ ├── move_fill_rectangle1.xml │ │ │ ├── move_fill_rectangle2a.xml │ │ │ ├── move_fill_rectangle2b.xml │ │ │ ├── move_fill_rectangle2c.xml │ │ │ ├── move_fill_sea4a.xml │ │ │ ├── move_fill_sea4b.xml │ │ │ ├── move_fill_sea4c.xml │ │ │ ├── move_fill_sea4d.xml │ │ │ ├── move_fill_sea4e.xml │ │ │ ├── move_fill_sea5a.xml │ │ │ ├── move_fill_sea5b.xml │ │ │ ├── move_fill_sea5c.xml │ │ │ ├── move_fill_sea5d.xml │ │ │ ├── move_fill_sea6a.xml │ │ │ ├── move_fill_sea6b.xml │ │ │ ├── move_fill_sea6c.xml │ │ │ ├── move_fill_sea6d.xml │ │ │ ├── move_fill_sea6e.xml │ │ │ ├── move_fill_sea7a.xml │ │ │ ├── move_fill_sea7b.xml │ │ │ ├── move_interpolator_accelerate.xml │ │ │ ├── move_interpolator_accelerate_decelerate.xml │ │ │ ├── move_interpolator_anticipate.xml │ │ │ ├── move_interpolator_bounce.xml │ │ │ ├── move_interpolator_decelerate.xml │ │ │ ├── move_interpolator_linear.xml │ │ │ ├── move_interpolator_overshoot.xml │ │ │ ├── scratch.xml │ │ │ ├── scratch2.xml │ │ │ ├── sea_wifi.xml │ │ │ ├── simple_fill.xml │ │ │ ├── simple_sea_fill.xml │ │ │ ├── wobble_fill.xml │ │ │ └── wobble_sea_fill.xml │ │ ├── layout │ │ │ ├── move_cv1.xml │ │ │ ├── move_cv1a.xml │ │ │ ├── move_cv1b.xml │ │ │ ├── move_cv2.xml │ │ │ ├── move_donts.xml │ │ │ ├── move_dos.xml │ │ │ ├── move_end.xml │ │ │ ├── move_fill1.xml │ │ │ ├── move_fill2.xml │ │ │ ├── move_fill3.xml │ │ │ ├── move_fill4.xml │ │ │ ├── move_fill5.xml │ │ │ ├── move_fill6.xml │ │ │ ├── move_fill7.xml │ │ │ ├── move_fill7a.xml │ │ │ ├── move_fill7b.xml │ │ │ ├── move_interpolators_accelerate.xml │ │ │ ├── move_interpolators_accelerate_decelerate.xml │ │ │ ├── move_interpolators_anticipate.xml │ │ │ ├── move_interpolators_bounce.xml │ │ │ ├── move_interpolators_custom.xml │ │ │ ├── move_interpolators_decelerate.xml │ │ │ ├── move_interpolators_intro.xml │ │ │ ├── move_interpolators_linear.xml │ │ │ ├── move_interpolators_overshoot.xml │ │ │ ├── move_intro.xml │ │ │ ├── move_scratch.xml │ │ │ ├── move_title.xml │ │ │ ├── move_title2.xml │ │ │ └── move_transition.xml │ │ ├── transition │ │ │ └── move.xml │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── colours.xml │ │ │ ├── dimens.xml │ │ │ ├── move_tweets_notes.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── theme │ │ ├── drawable │ │ │ ├── colour_resources.png │ │ │ ├── hairy_mark.jpg │ │ │ ├── textview_docs.webp │ │ │ └── textview_docs_focus.webp │ │ ├── layout │ │ │ ├── theme_apply.xml │ │ │ ├── theme_apply1.xml │ │ │ ├── theme_apply2.xml │ │ │ ├── theme_apply3.xml │ │ │ ├── theme_apply4.xml │ │ │ ├── theme_apply5.xml │ │ │ ├── theme_apply6.xml │ │ │ ├── theme_apply7.xml │ │ │ ├── theme_case_study.xml │ │ │ ├── theme_case_study1.xml │ │ │ ├── theme_case_study2.xml │ │ │ ├── theme_case_study3.xml │ │ │ ├── theme_case_study4.xml │ │ │ ├── theme_case_study5.xml │ │ │ ├── theme_case_study6.xml │ │ │ ├── theme_case_study7.xml │ │ │ ├── theme_case_study8.xml │ │ │ ├── theme_custom_view.xml │ │ │ ├── theme_custom_view1.xml │ │ │ ├── theme_custom_view2.xml │ │ │ ├── theme_custom_view3.xml │ │ │ ├── theme_custom_view4.xml │ │ │ ├── theme_end.xml │ │ │ ├── theme_end_title.xml │ │ │ ├── theme_intro.xml │ │ │ ├── theme_naming.xml │ │ │ ├── theme_naming1.xml │ │ │ ├── theme_naming2.xml │ │ │ ├── theme_naming3.xml │ │ │ ├── theme_naming4.xml │ │ │ ├── theme_naming5.xml │ │ │ ├── theme_naming6.xml │ │ │ ├── theme_naming7.xml │ │ │ ├── theme_overlay.xml │ │ │ ├── theme_questions.xml │ │ │ ├── theme_style.xml │ │ │ ├── theme_style1.xml │ │ │ ├── theme_style2.xml │ │ │ ├── theme_style_example.xml │ │ │ ├── theme_style_example1.xml │ │ │ ├── theme_style_example2.xml │ │ │ ├── theme_style_example3.xml │ │ │ ├── theme_style_example4.xml │ │ │ ├── theme_style_example5.xml │ │ │ ├── theme_style_example6.xml │ │ │ ├── theme_style_example7.xml │ │ │ ├── theme_style_example8.xml │ │ │ ├── theme_style_example9.xml │ │ │ ├── theme_text_appearance_span.xml │ │ │ ├── theme_text_view_docs.xml │ │ │ ├── theme_theme.xml │ │ │ ├── theme_theme1.xml │ │ │ ├── theme_theme10.xml │ │ │ ├── theme_theme11.xml │ │ │ ├── theme_theme12.xml │ │ │ ├── theme_theme2.xml │ │ │ ├── theme_theme3.xml │ │ │ ├── theme_theme4.xml │ │ │ ├── theme_theme5.xml │ │ │ ├── theme_theme6.xml │ │ │ ├── theme_theme7.xml │ │ │ ├── theme_theme8.xml │ │ │ ├── theme_theme9.xml │ │ │ ├── theme_title.xml │ │ │ ├── theme_types.xml │ │ │ └── theme_types_style1.xml │ │ ├── transition │ │ │ └── theme.xml │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── colours.xml │ │ │ ├── dimens.xml │ │ │ ├── styles.xml │ │ │ └── theme_tweet_notes.xml │ ├── vectors │ │ ├── animator │ │ │ ├── plus_to_minus.xml │ │ │ ├── rotate_clockwise.xml │ │ │ ├── shrug.xml │ │ │ ├── svg_animated2.xml │ │ │ ├── svg_animated4.xml │ │ │ ├── svg_animated5.xml │ │ │ ├── svg_animated6.xml │ │ │ ├── svg_animated6f_square.xml │ │ │ ├── svg_animated6f_triangle.xml │ │ │ ├── svg_animated6g_square.xml │ │ │ ├── svg_animated6g_triangle.xml │ │ │ ├── svg_animated6h_square.xml │ │ │ ├── svg_animated6i_square.xml │ │ │ ├── svg_animated6i_triangle.xml │ │ │ ├── svg_animated7.xml │ │ │ ├── svg_animated8a.xml │ │ │ ├── svg_path2b.xml │ │ │ ├── svg_path2c.xml │ │ │ ├── svg_path2d.xml │ │ │ ├── svg_path2e.xml │ │ │ ├── svg_path2f.xml │ │ │ └── svg_path3k.xml │ │ ├── drawable │ │ │ ├── animated_isometric.xml │ │ │ ├── isometric.xml │ │ │ ├── plus.xml │ │ │ ├── plus_animated.xml │ │ │ ├── svg_android.xml │ │ │ ├── svg_android_animated.xml │ │ │ ├── svg_animated2.xml │ │ │ ├── svg_animated2_animated.xml │ │ │ ├── svg_animated4.xml │ │ │ ├── svg_animated4_animated.xml │ │ │ ├── svg_animated5.xml │ │ │ ├── svg_animated5_animated.xml │ │ │ ├── svg_animated6.xml │ │ │ ├── svg_animated6_animated.xml │ │ │ ├── svg_animated6e.xml │ │ │ ├── svg_animated6f.xml │ │ │ ├── svg_animated6f_animated.xml │ │ │ ├── svg_animated6g.xml │ │ │ ├── svg_animated6g_animated.xml │ │ │ ├── svg_animated6h.xml │ │ │ ├── svg_animated6h_animated.xml │ │ │ ├── svg_animated6i.xml │ │ │ ├── svg_animated6i_animated.xml │ │ │ ├── svg_animated6start.xml │ │ │ ├── svg_animated7.xml │ │ │ ├── svg_animated7_animated.xml │ │ │ ├── svg_animated8.xml │ │ │ ├── svg_animated8_animated.xml │ │ │ ├── svg_path1b.xml │ │ │ ├── svg_path1c.xml │ │ │ ├── svg_path2a.xml │ │ │ ├── svg_path2b.xml │ │ │ ├── svg_path2b_animated.xml │ │ │ ├── svg_path2c.xml │ │ │ ├── svg_path2c_animated.xml │ │ │ ├── svg_path2d.xml │ │ │ ├── svg_path2d_animated.xml │ │ │ ├── svg_path2e.xml │ │ │ ├── svg_path2e_animated.xml │ │ │ ├── svg_path2f.xml │ │ │ ├── svg_path2f_animated.xml │ │ │ ├── svg_path3e.xml │ │ │ ├── svg_path3f.xml │ │ │ ├── svg_path3h.xml │ │ │ ├── svg_path3i.xml │ │ │ ├── svg_path3j.xml │ │ │ ├── svg_path3k.xml │ │ │ └── svg_path3k_animated.xml │ │ ├── layout │ │ │ ├── vectors_allison.xml │ │ │ ├── vectors_end.xml │ │ │ ├── vectors_intro.xml │ │ │ ├── vectors_questions.xml │ │ │ ├── vectors_svg_animated1.xml │ │ │ ├── vectors_svg_animated10.xml │ │ │ ├── vectors_svg_animated11.xml │ │ │ ├── vectors_svg_animated1a.xml │ │ │ ├── vectors_svg_animated1b.xml │ │ │ ├── vectors_svg_animated1c.xml │ │ │ ├── vectors_svg_animated2.xml │ │ │ ├── vectors_svg_animated3.xml │ │ │ ├── vectors_svg_animated3a.xml │ │ │ ├── vectors_svg_animated3b.xml │ │ │ ├── vectors_svg_animated4.xml │ │ │ ├── vectors_svg_animated5.xml │ │ │ ├── vectors_svg_animated6.xml │ │ │ ├── vectors_svg_animated6a.xml │ │ │ ├── vectors_svg_animated6b.xml │ │ │ ├── vectors_svg_animated6c.xml │ │ │ ├── vectors_svg_animated6d.xml │ │ │ ├── vectors_svg_animated6e.xml │ │ │ ├── vectors_svg_animated7.xml │ │ │ ├── vectors_svg_animated8.xml │ │ │ ├── vectors_svg_animated8a.xml │ │ │ ├── vectors_svg_animated8b.xml │ │ │ ├── vectors_svg_animated9.xml │ │ │ ├── vectors_svg_path1.xml │ │ │ ├── vectors_svg_path1a.xml │ │ │ ├── vectors_svg_path1b.xml │ │ │ ├── vectors_svg_path1c.xml │ │ │ ├── vectors_svg_path1d.xml │ │ │ ├── vectors_svg_path2.xml │ │ │ ├── vectors_svg_path3.xml │ │ │ ├── vectors_svg_path3a.xml │ │ │ ├── vectors_svg_path3b.xml │ │ │ ├── vectors_svg_path3c.xml │ │ │ ├── vectors_svg_path3d.xml │ │ │ ├── vectors_svg_path3e.xml │ │ │ ├── vectors_svg_path3f.xml │ │ │ ├── vectors_svg_path3g.xml │ │ │ ├── vectors_svg_path3h.xml │ │ │ ├── vectors_svg_path3i.xml │ │ │ ├── vectors_svg_path3j.xml │ │ │ ├── vectors_svg_path3k.xml │ │ │ ├── vectors_svg_path3l.xml │ │ │ └── vectors_title.xml │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── code.xml │ │ │ ├── dimens.xml │ │ │ └── vectors_tweets_notes.xml │ └── vectors2 │ │ ├── anim │ │ └── stamp.xml │ │ ├── animator │ │ ├── vectors2_alpha.xml │ │ ├── vectors2_grow.xml │ │ ├── vectors2_rotate.xml │ │ ├── vectors2_rotate_anticlockwise_linear.xml │ │ ├── vectors2_rotate_clockwise_linear.xml │ │ ├── vectors2_rotate_linear.xml │ │ ├── vectors2_trim.xml │ │ └── vectors2_trim_short.xml │ │ ├── drawable │ │ ├── ic_stop_black_24dp.xml │ │ ├── round_rect.xml │ │ ├── vectors2_donut_arrows.xml │ │ ├── vectors2_donut_arrows_animated.xml │ │ ├── vectors2_donut_arrows_different.xml │ │ ├── vectors2_donut_arrows_different_animated.xml │ │ ├── vectors2_donut_arrows_same.xml │ │ ├── vectors2_donut_arrows_same_animated.xml │ │ ├── vectors2_donut_circles2.xml │ │ ├── vectors2_donut_circles2_animated.xml │ │ ├── vectors2_donut_dot1.xml │ │ ├── vectors2_donut_dot1a.xml │ │ ├── vectors2_donut_dot1a_animated.xml │ │ ├── vectors2_donut_dot1b.xml │ │ ├── vectors2_donut_dot1b_animated.xml │ │ ├── vectors2_donut_dot1c.xml │ │ ├── vectors2_donut_dot1c_animated.xml │ │ ├── vectors2_donut_dot1d.xml │ │ ├── vectors2_donut_dot1e.xml │ │ ├── vectors2_donut_dot1e_animated.xml │ │ ├── vectors2_donut_dot1f.xml │ │ ├── vectors2_donut_dot1f_animated.xml │ │ ├── vectors2_donut_dot1g.xml │ │ ├── vectors2_donut_dot1g_animated.xml │ │ ├── vectors2_donut_dot1h.xml │ │ ├── vectors2_donut_dot1h_animated.xml │ │ ├── vectors2_donut_dot1i.xml │ │ ├── vectors2_donut_dot1i_animated.xml │ │ ├── vectors2_donut_dot1j.xml │ │ ├── vectors2_donut_dot1j_animated.xml │ │ ├── vectors2_donut_dot2.xml │ │ ├── vectors2_donut_dot2_grey.xml │ │ ├── vectors2_donut_dot2a.xml │ │ ├── vectors2_donut_dot2a_animated.xml │ │ ├── vectors2_donut_dot2b.xml │ │ ├── vectors2_donut_dot2b_animated.xml │ │ ├── vectors2_donut_dot2c.xml │ │ ├── vectors2_donut_dot2c_animated.xml │ │ ├── vectors2_donut_dot2d.xml │ │ ├── vectors2_donut_dot2e.xml │ │ ├── vectors2_donut_dot2e_animated.xml │ │ ├── vectors2_donut_dot2f.xml │ │ ├── vectors2_donut_dot2f_animated.xml │ │ ├── vectors2_donut_dot2g.xml │ │ ├── vectors2_donut_dot2g_animated.xml │ │ ├── vectors2_donut_dot2h.xml │ │ ├── vectors2_donut_dot2h_animated.xml │ │ ├── vectors2_donut_dot2i.xml │ │ ├── vectors2_donut_dot2i_animated.xml │ │ ├── vectors2_donut_dot2j.xml │ │ ├── vectors2_donut_dot2j_animated.xml │ │ ├── vectors2_donut_dot3.xml │ │ ├── vectors2_donut_dot3a.xml │ │ ├── vectors2_donut_dot3a_animated.xml │ │ ├── vectors2_donut_dot3b.xml │ │ ├── vectors2_donut_dot3b_animated.xml │ │ ├── vectors2_donut_dot3c.xml │ │ ├── vectors2_donut_dot3c_animated.xml │ │ ├── vectors2_donut_dot3d.xml │ │ ├── vectors2_donut_dot3d_animated.xml │ │ ├── vectors2_donut_dot4a.xml │ │ ├── vectors2_donut_dot4a_animated.xml │ │ ├── vectors2_donut_even_odd.xml │ │ ├── vectors2_donut_inner.xml │ │ ├── vectors2_donut_inner_animated.xml │ │ ├── vectors2_donut_non_zero_different.xml │ │ ├── vectors2_donut_non_zero_same.xml │ │ ├── vectors2_donut_outer.xml │ │ ├── vectors2_donut_outer_animated.xml │ │ ├── vectors2_donut_stroke.xml │ │ ├── vectors2_donut_stroke_large.xml │ │ ├── vectors2_even_odd.xml │ │ ├── vectors2_gradient_faded.xml │ │ ├── vectors2_gradient_fill_white.xml │ │ ├── vectors2_gradient_outline.xml │ │ ├── vectors2_gradient_outline_fade_in.xml │ │ ├── vectors2_gradient_outline_fade_out.xml │ │ ├── vectors2_gradient_outline_faded.xml │ │ ├── vectors2_gradient_outline_faded_animated.xml │ │ ├── vectors2_linear_gradient.xml │ │ ├── vectors2_linear_gradient_animated.xml │ │ ├── vectors2_linear_gradient_diagonal.xml │ │ ├── vectors2_linear_gradient_diagonal_animated.xml │ │ ├── vectors2_linear_gradient_end.xml │ │ ├── vectors2_linear_gradient_end_animated.xml │ │ ├── vectors2_linear_gradient_fade_in.xml │ │ ├── vectors2_linear_gradient_fade_out.xml │ │ ├── vectors2_linear_gradient_faded.xml │ │ ├── vectors2_linear_gradient_faded_animated.xml │ │ ├── vectors2_linear_gradient_line.xml │ │ ├── vectors2_linear_gradient_line_animated.xml │ │ ├── vectors2_linear_gradient_line_diagonal.xml │ │ ├── vectors2_linear_gradient_line_diagonal_animated.xml │ │ ├── vectors2_linear_gradient_start.xml │ │ ├── vectors2_linear_gradient_start_animated.xml │ │ ├── vectors2_moon.xml │ │ ├── vectors2_moon2sun.xml │ │ ├── vectors2_non_zero.xml │ │ ├── vectors2_radial_gradient.xml │ │ ├── vectors2_radial_gradient_animated.xml │ │ ├── vectors2_radial_gradient_full.xml │ │ ├── vectors2_radial_gradient_grow.xml │ │ ├── vectors2_radial_gradient_radius.xml │ │ ├── vectors2_radial_gradient_radius_grow.xml │ │ ├── vectors2_square.xml │ │ ├── vectors2_square2_animated.xml │ │ ├── vectors2_square_animated.xml │ │ ├── vectors2_square_white.xml │ │ ├── vectors2_sun.xml │ │ ├── vectors2_sun2moon.xml │ │ ├── vectors2_sun2moon_reverse.xml │ │ ├── vectors2_sun_arc_end.xml │ │ ├── vectors2_sun_arc_path.xml │ │ ├── vectors2_sun_arc_radius.xml │ │ ├── vectors2_sun_arc_radius1.xml │ │ ├── vectors2_sun_arc_radius2.xml │ │ ├── vectors2_sun_arc_radius3.xml │ │ ├── vectors2_sun_arc_radius4.xml │ │ ├── vectors2_sun_arc_radius5.xml │ │ ├── vectors2_sun_arc_radius6.xml │ │ ├── vectors2_sun_arc_radius7.xml │ │ ├── vectors2_sun_arc_radius8.xml │ │ ├── vectors2_sun_arc_start.xml │ │ ├── vectors2_sun_bezier.xml │ │ ├── vectors2_sun_bezier1.xml │ │ ├── vectors2_sun_bezier2.xml │ │ ├── vectors2_sun_bezier3.xml │ │ ├── vectors2_sun_bezier4.xml │ │ ├── vectors2_sun_bezier5.xml │ │ ├── vectors2_sun_bezier6.xml │ │ ├── vectors2_sun_bezier7.xml │ │ ├── vectors2_sun_fill.xml │ │ ├── vectors2_sun_moon_background.xml │ │ ├── vectors2_sun_moon_background_animated.xml │ │ ├── vectors2_sun_moon_ray.xml │ │ ├── vectors2_sun_moon_ray_animated.xml │ │ ├── vectors2_sun_moon_ray_animated1.xml │ │ ├── vectors2_sun_moon_ray_animated2.xml │ │ ├── vectors2_sun_moon_ray_animated3.xml │ │ ├── vectors2_sun_moon_ray_show.xml │ │ ├── vectors2_sun_moon_ray_zoom.xml │ │ ├── vectors2_sun_moon_rays.xml │ │ ├── vectors2_sun_moon_rays_fade.xml │ │ ├── vectors2_sun_moon_rays_rotate.xml │ │ ├── vectors2_sun_moon_rays_rotate_grow.xml │ │ ├── vectors2_sun_moon_rays_show.xml │ │ ├── vectors2_sun_moon_sun.xml │ │ ├── vectors2_sun_moon_sun_arc.xml │ │ ├── vectors2_sweep_gradient.xml │ │ ├── vectors2_sweep_gradient2.xml │ │ ├── vectors2_sweep_gradient2_animated.xml │ │ ├── vectors2_sweep_gradient2_masked.xml │ │ ├── vectors2_sweep_gradient_animated.xml │ │ └── vectors2_sweep_gradient_masked.xml │ │ ├── layout │ │ ├── vectors2_end.xml │ │ ├── vectors2_end_title.xml │ │ ├── vectors2_fill_windings1.xml │ │ ├── vectors2_fill_windings1a.xml │ │ ├── vectors2_fill_windings1b.xml │ │ ├── vectors2_fill_windings1c.xml │ │ ├── vectors2_fill_windings1d.xml │ │ ├── vectors2_fill_windings1e.xml │ │ ├── vectors2_fill_windings1f.xml │ │ ├── vectors2_fill_windings1g.xml │ │ ├── vectors2_fill_windings1h.xml │ │ ├── vectors2_fill_windings1i.xml │ │ ├── vectors2_fill_windings1j.xml │ │ ├── vectors2_fill_windings2.xml │ │ ├── vectors2_fill_windings3.xml │ │ ├── vectors2_fill_windings4.xml │ │ ├── vectors2_gradients1.xml │ │ ├── vectors2_gradients1a.xml │ │ ├── vectors2_gradients1b.xml │ │ ├── vectors2_gradients2.xml │ │ ├── vectors2_gradients2a.xml │ │ ├── vectors2_gradients2b.xml │ │ ├── vectors2_gradients3.xml │ │ ├── vectors2_gradients4.xml │ │ ├── vectors2_gradients4a.xml │ │ ├── vectors2_gradients4b.xml │ │ ├── vectors2_gradients4c.xml │ │ ├── vectors2_gradients4d.xml │ │ ├── vectors2_gradients4e.xml │ │ ├── vectors2_gradients5.xml │ │ ├── vectors2_gradients6.xml │ │ ├── vectors2_gradients6a.xml │ │ ├── vectors2_gradients6b.xml │ │ ├── vectors2_gradients6c.xml │ │ ├── vectors2_gradients6d.xml │ │ ├── vectors2_gradients6e.xml │ │ ├── vectors2_gradients6f.xml │ │ ├── vectors2_gradients7.xml │ │ ├── vectors2_gradients8.xml │ │ ├── vectors2_gradients8a.xml │ │ ├── vectors2_gradients8b.xml │ │ ├── vectors2_gradients9.xml │ │ ├── vectors2_gradients_8.xml │ │ ├── vectors2_inline_complex_resources1.xml │ │ ├── vectors2_inline_complex_resources1a.xml │ │ ├── vectors2_inline_complex_resources1b.xml │ │ ├── vectors2_inline_complex_resources1c.xml │ │ ├── vectors2_inline_complex_resources1d.xml │ │ ├── vectors2_inline_complex_resources2.xml │ │ ├── vectors2_inline_complex_resources3.xml │ │ ├── vectors2_inline_complex_resources9.xml │ │ ├── vectors2_intro.xml │ │ ├── vectors2_questions.xml │ │ ├── vectors2_sum_moon1.xml │ │ ├── vectors2_sun_moon1.xml │ │ ├── vectors2_sun_moon1a.xml │ │ ├── vectors2_sun_moon1b.xml │ │ ├── vectors2_sun_moon2.xml │ │ ├── vectors2_sun_moon2a.xml │ │ ├── vectors2_sun_moon2b.xml │ │ ├── vectors2_sun_moon2c.xml │ │ ├── vectors2_sun_moon2d.xml │ │ ├── vectors2_sun_moon2e.xml │ │ ├── vectors2_sun_moon2f.xml │ │ ├── vectors2_sun_moon2g.xml │ │ ├── vectors2_sun_moon2h.xml │ │ ├── vectors2_sun_moon2i.xml │ │ ├── vectors2_sun_moon2j.xml │ │ ├── vectors2_sun_moon2k.xml │ │ ├── vectors2_sun_moon3.xml │ │ ├── vectors2_sun_moon4.xml │ │ ├── vectors2_sun_moon5.xml │ │ ├── vectors2_sun_moon5a.xml │ │ ├── vectors2_sun_moon5b.xml │ │ └── vectors2_title.xml │ │ └── values │ │ ├── arrays.xml │ │ ├── styles.xml │ │ ├── vectors2_code.xml │ │ └── vectors2_tweet_notes.xml │ └── res │ ├── anim │ ├── fadein.xml │ ├── fadeout.xml │ ├── hold.xml │ ├── none.xml │ ├── scrollupin.xml │ ├── scrollupout.xml │ ├── slidedownleft.xml │ ├── slidedownleftdouble.xml │ ├── slideinleft.xml │ ├── slideinright.xml │ ├── slideoutleft.xml │ ├── slideoutright.xml │ ├── slideupright.xml │ ├── slideuprightdouble.xml │ └── zoomin.xml │ ├── drawable-hdpi │ ├── ic_launcher.png │ ├── question.png │ └── sa.png │ ├── drawable-large │ └── header_default.9.png │ ├── drawable-ldpi │ └── ic_launcher.png │ ├── drawable-mdpi │ ├── header_default.9.png │ ├── ic_launcher.png │ └── sa.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable │ ├── border.xml │ ├── border_highlight.xml │ ├── clock_bgd.xml │ ├── display_background.xml │ ├── greader.jpg │ ├── header_default_orig.png │ └── popup_background.xml │ ├── font │ └── bowlby_one_sc.xml │ ├── layout │ └── display.xml │ ├── values-hdpi │ └── strings.xml │ ├── values-large-hdpi │ └── dimens.xml │ ├── values-large-tvdpi │ └── dimens.xml │ ├── values-large │ └── strings.xml │ ├── values-ldpi │ └── strings.xml │ ├── values-mdpi │ └── strings.xml │ ├── values-normal │ └── strings.xml │ ├── values-small │ └── strings.xml │ ├── values-tvdpi │ └── strings.xml │ ├── values-xhdpi │ └── strings.xml │ ├── values-xlarge │ ├── bools.xml │ ├── dimens.xml │ ├── display_styles.xml │ └── strings.xml │ ├── values-xxhdpi │ └── strings.xml │ └── values │ ├── arrays.xml │ ├── attrs.xml │ ├── bools.xml │ ├── colors.xml │ ├── dimens.xml │ ├── display_styles.xml │ ├── font_certs.xml │ ├── ids.xml │ ├── preloaded_fonts.xml │ ├── strings.xml │ ├── strings_attack.xml │ ├── strings_gridlayout.xml │ ├── strings_notes.xml │ └── strings_tweets.xml ├── LICENSE.txt ├── PresenterLite ├── build.gradle ├── project.properties ├── res │ ├── drawable │ │ └── icon.png │ └── values │ │ └── strings.xml └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── stylingandroid │ │ └── presenter │ │ └── lite │ │ └── PresentationChooserActivity.java │ └── res │ ├── layout │ └── chooser.xml │ └── values │ ├── strings.xml │ └── themes.xml ├── README.md ├── config ├── checkstyle │ └── checkstyle.xml ├── findbugs │ └── excludeFilter.xml ├── lint │ └── config.xml └── static_analysis.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/.gitignore -------------------------------------------------------------------------------- /Engine/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/build.gradle -------------------------------------------------------------------------------- /Engine/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/proguard-project.txt -------------------------------------------------------------------------------- /Engine/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/project.properties -------------------------------------------------------------------------------- /Engine/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Engine/src/main/java/com/stylingandroid/presenter/engine/AppState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/java/com/stylingandroid/presenter/engine/AppState.java -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/inter_accel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/inter_accel.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/inter_accel_decel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/inter_accel_decel.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/inter_antic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/inter_antic.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/inter_antic_over.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/inter_antic_over.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/inter_bounce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/inter_bounce.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/inter_decel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/inter_decel.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/inter_linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/inter_linear.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/inter_over.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/inter_over.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/layout_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/layout_anim.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/layout_item_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/layout_item_anim.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text8.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/text9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/text9.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/view1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/view1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/anim/view1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/anim/view1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/animator/saturation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/animator/saturation.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-hdpi/sa120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-hdpi/sa120.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-hdpi/sa180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-hdpi/sa180.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-hdpi/sa240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-hdpi/sa240.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-hdpi/sa300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-hdpi/sa300.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-hdpi/sa60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-hdpi/sa60.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-mdpi/sa120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-mdpi/sa120.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-mdpi/sa180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-mdpi/sa180.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-mdpi/sa240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-mdpi/sa240.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-mdpi/sa300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-mdpi/sa300.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-mdpi/sa60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-mdpi/sa60.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable-mdpi/sa_fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable-mdpi/sa_fade.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/cell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/cell.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/cell_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/cell_bottom.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/cell_bottom_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/cell_bottom_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/cell_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/cell_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/header.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/header_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/header_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/header_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/header_start.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/rotate.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/drawable/tween_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/drawable/tween_list.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_drawables1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_drawables1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_drawables2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_drawables2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_final.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_interpolators1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_interpolators1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_interpolators2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_interpolators2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_interpolators3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_interpolators3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_property1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_property1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_property2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_property2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_questions.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_types.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_using_view1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_using_view1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_using_view2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_using_view2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_using_view3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_using_view3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_using_view4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_using_view4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_view1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_view1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_view2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_view2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_view2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_view2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_view3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_view3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_what.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_what.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/layout/anim_why.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/layout/anim_why.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/values/anim_tweets_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/values/anim_tweets_notes.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/values/arrays.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/animations/values/strings_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/animations/values/strings_view.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/anim/alpha_slidein.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/anim/alpha_slidein.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/anim/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/anim/layout.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/drawable-xhdpi/allison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/drawable-xhdpi/allison.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/drawable-xhdpi/betty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/drawable-xhdpi/betty.jpg -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/drawable/border_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/drawable/border_filled.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/drawable/bullet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/drawable/bullet.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/drawable/checkerboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/drawable/checkerboard.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_allison.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_allison.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate2g.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_desaturate4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2g.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2h.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2i.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_flatten2j.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_intro.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_minsdk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_minsdk.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_questions.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_renderscript6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shader4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shader4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_shapes2e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_test.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_test2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_test2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_test2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_test3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_why.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_why.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_xfermodes1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_xfermodes1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_xfermodes2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_xfermodes2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_xfermodes3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_xfermodes3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/layout/gm_xfermodes4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/layout/gm_xfermodes4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/transition/auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/transition/auto.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/transition/flatten.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/transition/flatten.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/transition/none.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/transition/none.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/values/arrays.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/values/code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/values/code.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/values/colours.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/values/colours.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/values/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/graphicalmagic/values/gm_tweets_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/graphicalmagic/values/gm_tweets_notes.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack3a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack3a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack3b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack3b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack3c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack3c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack3d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack3d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack4a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack4a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack4b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack4b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack4c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack4c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack4d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack4d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack5a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack5a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_attack5b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_attack5b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_framelayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_framelayout.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_gridlayout1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_gridlayout1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_gridlayout2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_gridlayout2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_gridlayout2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_gridlayout2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_gridlayout2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_gridlayout2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_gridlayout2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_gridlayout2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_gridlayout2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_gridlayout2e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_gridlayout2f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_gridlayout2f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_gridlayout2g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_gridlayout2g.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_important.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_important.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_layouttips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_layouttips.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_linearlayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_linearlayout.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_outline.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_questions.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_relativelayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_relativelayout.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_tablelayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_tablelayout.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/layout/layouts_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/layout/layouts_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/values/arrays.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/values/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/layouts/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/layouts/values/ids.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/diagonalleftbottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/diagonalleftbottom.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/diagonalrightbottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/diagonalrightbottom.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/diagonalrighttop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/diagonalrighttop.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/fast_grow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/fast_grow.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/fast_shrink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/fast_shrink.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/grow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/grow.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/pushin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/pushin.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/revealx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/revealx.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/slow_slideinleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/slow_slideinleft.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/slow_slideinright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/slow_slideinright.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/anim/smooth_slideinright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/anim/smooth_slideinright.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/animator/scratch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/animator/scratch.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/boat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/boat.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/bullet_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/bullet_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/bullet_static.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/bullet_static.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/check_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/check_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/clippy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/clippy.jpg -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/cross_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/cross_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/double_sea_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/double_sea_fill.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/double_sea_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/double_sea_wifi.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/full_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/full_wifi.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/ic_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/ic_check.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/ic_cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/ic_cross.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_background.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_full_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_full_forward.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_full_reverse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_full_reverse.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_mic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_mic.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_mic1_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_mic1_forward.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_mic1_reverse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_mic1_reverse.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_mic2_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_mic2_forward.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_mic2_reverse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_mic2_reverse.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_mic3_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_mic3_forward.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_mic3_reverse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_mic3_reverse.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_square_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_square_forward.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_square_reverse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_square_reverse.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_stand_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_stand_forward.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_stand_reverse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_stand_reverse.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_cv_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_cv_stop.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_boat3a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_boat3a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_boat3b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_boat3b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_rectangle1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_rectangle1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_rectangle2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_rectangle2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_rectangle2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_rectangle2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_rectangle2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_rectangle2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea4a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea4a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea4b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea4b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea4c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea4c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea4d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea4d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea4e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea4e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea5a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea5a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea5b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea5b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea5c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea5c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea5d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea5d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea6a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea6a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea6b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea6b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea6c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea6c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea6d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea6d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea6e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea6e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea7a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea7a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_fill_sea7b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_fill_sea7b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_interpolator_bounce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_interpolator_bounce.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/move_interpolator_linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/move_interpolator_linear.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/scratch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/scratch.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/scratch2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/scratch2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/sea_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/sea_wifi.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/simple_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/simple_fill.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/simple_sea_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/simple_sea_fill.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/wobble_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/wobble_fill.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/drawable/wobble_sea_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/drawable/wobble_sea_fill.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_cv1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_cv1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_cv1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_cv1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_cv1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_cv1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_cv2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_cv2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_donts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_donts.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_dos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_dos.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill7a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill7a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_fill7b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_fill7b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_interpolators_bounce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_interpolators_bounce.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_interpolators_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_interpolators_custom.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_interpolators_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_interpolators_intro.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_interpolators_linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_interpolators_linear.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_interpolators_overshoot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_interpolators_overshoot.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_intro.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_scratch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_scratch.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_title2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_title2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/layout/move_transition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/layout/move_transition.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/transition/move.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/transition/move.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/values/arrays.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/values/colours.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/values/colours.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/values/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/values/move_tweets_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/values/move_tweets_notes.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/values/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/move/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/move/values/styles.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/drawable/colour_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/drawable/colour_resources.png -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/drawable/hairy_mark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/drawable/hairy_mark.jpg -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/drawable/textview_docs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/drawable/textview_docs.webp -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/drawable/textview_docs_focus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/drawable/textview_docs_focus.webp -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_apply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_apply.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_apply1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_apply1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_apply2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_apply2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_apply3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_apply3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_apply4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_apply4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_apply5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_apply5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_apply6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_apply6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_apply7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_apply7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_case_study8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_case_study8.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_custom_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_custom_view.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_custom_view1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_custom_view1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_custom_view2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_custom_view2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_custom_view3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_custom_view3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_custom_view4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_custom_view4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_end_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_end_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_intro.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_naming.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_naming.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_naming1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_naming1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_naming2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_naming2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_naming3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_naming3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_naming4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_naming4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_naming5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_naming5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_naming6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_naming6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_naming7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_naming7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_overlay.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_questions.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example8.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_style_example9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_style_example9.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_text_appearance_span.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_text_appearance_span.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_text_view_docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_text_view_docs.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme10.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme11.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme12.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme8.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_theme9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_theme9.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_types.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/layout/theme_types_style1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/layout/theme_types_style1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/transition/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/transition/theme.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/values/arrays.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/values/colours.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/values/colours.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/values/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/values/styles.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/theme/values/theme_tweet_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/theme/values/theme_tweet_notes.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/plus_to_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/plus_to_minus.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/rotate_clockwise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/rotate_clockwise.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/shrug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/shrug.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated6f_square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated6f_square.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated6f_triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated6f_triangle.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated6g_square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated6g_square.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated6g_triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated6g_triangle.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated6h_square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated6h_square.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated6i_square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated6i_square.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated6i_triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated6i_triangle.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_animated8a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_animated8a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_path2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_path2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_path2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_path2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_path2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_path2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_path2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_path2e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_path2f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_path2f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/animator/svg_path3k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/animator/svg_path3k.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/animated_isometric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/animated_isometric.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/isometric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/isometric.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/plus.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/plus_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/plus_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_android.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_android_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_android_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated2_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated2_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated4_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated4_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated5_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated5_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6f_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6f_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6g.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6g_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6g_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6h.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6h_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6h_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6i.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6i_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6i_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated6start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated6start.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated7_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated7_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_animated8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_animated8.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2b_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2b_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2c_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2c_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2d_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2d_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2e_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2e_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path2f_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path2f_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path3e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path3e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path3f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path3f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path3h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path3h.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path3i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path3i.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path3j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path3j.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path3k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path3k.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/drawable/svg_path3k_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/drawable/svg_path3k_animated.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_allison.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_allison.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_intro.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_questions.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated10.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated11.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated3a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated3a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated3b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated3b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated6a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated6a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated6b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated6b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated6c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated6c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated6d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated6d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated6e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated6e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated8.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated8a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated8a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated8b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated8b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_animated9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_animated9.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path1d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path1d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3g.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3h.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3i.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3j.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3k.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_svg_path3l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_svg_path3l.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/layout/vectors_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/layout/vectors_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/values/arrays.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/values/code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/values/code.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/values/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors/values/vectors_tweets_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors/values/vectors_tweets_notes.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/anim/stamp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/anim/stamp.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/animator/vectors2_alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/animator/vectors2_alpha.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/animator/vectors2_grow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/animator/vectors2_grow.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/animator/vectors2_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/animator/vectors2_rotate.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/animator/vectors2_trim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/animator/vectors2_trim.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/animator/vectors2_trim_short.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/animator/vectors2_trim_short.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/ic_stop_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/ic_stop_black_24dp.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/round_rect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/round_rect.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1g.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1h.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1i.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot1j.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2g.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2h.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2i.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot2j.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot3d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot4a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_dot4a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_inner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_inner.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_donut_outer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_donut_outer.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_even_odd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_even_odd.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_moon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_moon.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_moon2sun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_moon2sun.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_non_zero.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_non_zero.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_square.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun2moon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun2moon.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_arc_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_arc_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_bezier7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/drawable/vectors2_sun_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/drawable/vectors2_sun_fill.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_end.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_end_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_end_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients4a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients4a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients4b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients4b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients4c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients4c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients4d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients4d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients4e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients4e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients6.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients6a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients6a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients6b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients6b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients6c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients6c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients6d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients6d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients6e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients6e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients6f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients6f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients7.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients8.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients8a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients8a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients8b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients8b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients9.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_gradients_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_gradients_8.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_intro.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_questions.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sum_moon1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sum_moon1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon1.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon1a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon1a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon1b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2c.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2d.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2e.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2f.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2g.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2h.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2i.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2j.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon2k.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon3.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon4.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon5.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon5a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon5a.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon5b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_sun_moon5b.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/layout/vectors2_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/layout/vectors2_title.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/values/arrays.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/values/styles.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/values/vectors2_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/values/vectors2_code.xml -------------------------------------------------------------------------------- /Engine/src/main/presentations/vectors2/values/vectors2_tweet_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/presentations/vectors2/values/vectors2_tweet_notes.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/fadein.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/fadein.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/fadeout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/fadeout.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/hold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/hold.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/none.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/none.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/scrollupin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/scrollupin.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/scrollupout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/scrollupout.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/slidedownleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/slidedownleft.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/slidedownleftdouble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/slidedownleftdouble.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/slideinleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/slideinleft.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/slideinright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/slideinright.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/slideoutleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/slideoutleft.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/slideoutright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/slideoutright.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/slideupright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/slideupright.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/slideuprightdouble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/slideuprightdouble.xml -------------------------------------------------------------------------------- /Engine/src/main/res/anim/zoomin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/anim/zoomin.xml -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-hdpi/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-hdpi/question.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-hdpi/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-hdpi/sa.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-large/header_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-large/header_default.9.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-mdpi/header_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-mdpi/header_default.9.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-mdpi/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-mdpi/sa.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable/border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable/border.xml -------------------------------------------------------------------------------- /Engine/src/main/res/drawable/border_highlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable/border_highlight.xml -------------------------------------------------------------------------------- /Engine/src/main/res/drawable/clock_bgd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable/clock_bgd.xml -------------------------------------------------------------------------------- /Engine/src/main/res/drawable/display_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable/display_background.xml -------------------------------------------------------------------------------- /Engine/src/main/res/drawable/greader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable/greader.jpg -------------------------------------------------------------------------------- /Engine/src/main/res/drawable/header_default_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable/header_default_orig.png -------------------------------------------------------------------------------- /Engine/src/main/res/drawable/popup_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/drawable/popup_background.xml -------------------------------------------------------------------------------- /Engine/src/main/res/font/bowlby_one_sc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/font/bowlby_one_sc.xml -------------------------------------------------------------------------------- /Engine/src/main/res/layout/display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/layout/display.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-hdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-hdpi/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-large-hdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-large-hdpi/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-large-tvdpi/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-large-tvdpi/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-large/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-large/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-ldpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-ldpi/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-mdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-mdpi/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-normal/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-normal/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-small/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-small/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-tvdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-tvdpi/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-xhdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-xhdpi/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-xlarge/bools.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-xlarge/display_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-xlarge/display_styles.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-xlarge/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-xlarge/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values-xxhdpi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values-xxhdpi/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/display_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/display_styles.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/preloaded_fonts.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/strings_attack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/strings_attack.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/strings_gridlayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/strings_gridlayout.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/strings_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/strings_notes.xml -------------------------------------------------------------------------------- /Engine/src/main/res/values/strings_tweets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/Engine/src/main/res/values/strings_tweets.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PresenterLite/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/PresenterLite/build.gradle -------------------------------------------------------------------------------- /PresenterLite/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/PresenterLite/project.properties -------------------------------------------------------------------------------- /PresenterLite/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/PresenterLite/res/drawable/icon.png -------------------------------------------------------------------------------- /PresenterLite/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/PresenterLite/res/values/strings.xml -------------------------------------------------------------------------------- /PresenterLite/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/PresenterLite/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /PresenterLite/src/main/res/layout/chooser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/PresenterLite/src/main/res/layout/chooser.xml -------------------------------------------------------------------------------- /PresenterLite/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/PresenterLite/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /PresenterLite/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/PresenterLite/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/README.md -------------------------------------------------------------------------------- /config/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/config/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /config/findbugs/excludeFilter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/config/findbugs/excludeFilter.xml -------------------------------------------------------------------------------- /config/lint/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/config/lint/config.xml -------------------------------------------------------------------------------- /config/static_analysis.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/config/static_analysis.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylingAndroid/PresenterLite/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':Engine', ':PresenterLite' 2 | --------------------------------------------------------------------------------