├── .github ├── FUNDING.yml └── workflows │ └── android.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── animationkey ├── app ├── .gitignore ├── build.gradle ├── libs │ ├── BaiduLBS_Android.jar │ ├── activation.jar │ ├── additionnal.jar │ ├── arm64-v8a │ │ ├── libBaiduMapSDK_base_v4_2_0.so │ │ └── liblocSDK7.so │ ├── gpupixel-release.aar │ ├── jsoup-1.7.3.jar │ ├── mail.jar │ └── pinyin4j-2.5.0.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── home │ │ └── smart │ │ └── fly │ │ └── animations │ │ └── AppStartActivityUITest.java │ ├── debug │ ├── AndroidManifest.xml │ ├── assets │ │ └── install.config │ ├── java │ │ └── home │ │ │ └── smart │ │ │ └── fly │ │ │ └── animations │ │ │ └── DebugMyApplication.java │ └── res │ │ └── values │ │ └── strings.xml │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── JianShu.html │ │ ├── PinJump.json │ │ ├── ProgressSuccess.json │ │ ├── a.html │ │ ├── article.html │ │ ├── b.html │ │ ├── chinalatlng.json │ │ ├── city.json │ │ ├── data.json │ │ ├── fuli.json │ │ ├── hack.jar │ │ ├── index.html │ │ ├── index.js │ │ ├── jianshu_mock_data.json │ │ ├── keyframe.html │ │ ├── launch_alipay_app.html │ │ ├── launch_other_app.html │ │ ├── mark.png │ │ ├── newCity.json │ │ ├── newSchool.json │ │ ├── pics.data │ │ ├── pics.json │ │ ├── player.json │ │ ├── school.json │ │ ├── story.jpg │ │ ├── twxq.html │ │ ├── twxq_1.html │ │ └── x_pop.json │ ├── ic_launcher-playstore.png │ ├── java │ │ └── home │ │ │ └── smart │ │ │ └── fly │ │ │ └── animations │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ ├── AppStartActivity.java │ │ │ ├── FileUtilsActivity.java │ │ │ ├── MyApplication.java │ │ │ ├── SettingsActivity.java │ │ │ ├── SplashScreenActivity.kt │ │ │ ├── adapter │ │ │ ├── FlipAdapter.java │ │ │ ├── ImageBean.java │ │ │ ├── MyAdapter.java │ │ │ ├── Player.java │ │ │ ├── PlayerBean.java │ │ │ └── SchoolBeanShell.java │ │ │ ├── bga │ │ │ ├── BgaAllActivity.java │ │ │ ├── ContentAdapter.java │ │ │ └── transformers │ │ │ │ └── MyPageTransformer.java │ │ │ ├── customview │ │ │ ├── BitmapMeshView.java │ │ │ ├── CircleMenu.java │ │ │ ├── ClockView.java │ │ │ ├── CustomImageView.java │ │ │ ├── CustomTablayout.java │ │ │ ├── CustomTintImageView.java │ │ │ ├── EasySeekBar.java │ │ │ ├── ExpandingCircleAnimationDrawable.java │ │ │ ├── FlowLayout.java │ │ │ ├── InnerTabLayout.java │ │ │ ├── LiteMenuHelper.java │ │ │ ├── LiteSwipeMenu.java │ │ │ ├── RxTextViewVertical.java │ │ │ ├── SquareImageView.java │ │ │ ├── TransformView.java │ │ │ ├── bottomsheet │ │ │ │ ├── BeautifulBottomSheetActivity.java │ │ │ │ ├── BottomSheetActivity.java │ │ │ │ ├── BottomSheetDialogActivity.java │ │ │ │ ├── NestedScrollViewActivity.java │ │ │ │ └── RecyclerViewActivity.java │ │ │ ├── canvas │ │ │ │ ├── BubbleView.java │ │ │ │ ├── DragBubbleView.java │ │ │ │ ├── DrawingBoard.java │ │ │ │ ├── DrawingBoard1.java │ │ │ │ └── PointFEvaluator.java │ │ │ ├── flipview │ │ │ │ ├── FlipView.java │ │ │ │ ├── GlowOverFlipper.java │ │ │ │ ├── OverFlipMode.java │ │ │ │ ├── OverFlipper.java │ │ │ │ ├── OverFlipperFactory.java │ │ │ │ ├── Recycler.java │ │ │ │ └── RubberBandOverFlipper.java │ │ │ ├── gallery │ │ │ │ ├── DragViewLayout.java │ │ │ │ └── TouchImageView.java │ │ │ ├── polygon │ │ │ │ ├── Label.java │ │ │ │ └── PolygonView.java │ │ │ ├── puzzle │ │ │ │ ├── PuzzleActivity.java │ │ │ │ └── view │ │ │ │ │ ├── GamePintuLayout.java │ │ │ │ │ ├── ImagePiece.java │ │ │ │ │ └── ImageSplitter.java │ │ │ ├── swipeanim │ │ │ │ ├── FakeWeiBoActivity.java │ │ │ │ ├── MyLocationListener.java │ │ │ │ ├── MyPoiSearchListener.java │ │ │ │ ├── RadarScanView.java │ │ │ │ └── SmartPullView.java │ │ │ ├── views │ │ │ │ ├── BallGameView.java │ │ │ │ ├── WaveDrawable.java │ │ │ │ └── WaveView.java │ │ │ └── wheel │ │ │ │ ├── WheelViewActivity.java │ │ │ │ ├── updateFile │ │ │ │ ├── Address.java │ │ │ │ └── FileUtils.java │ │ │ │ └── widget │ │ │ │ ├── adapter │ │ │ │ ├── ArrayWheelAdapter.java │ │ │ │ ├── NumericWheelAdapter.java │ │ │ │ └── WheelAdapter.java │ │ │ │ ├── lib │ │ │ │ ├── InertiaTimerTask.java │ │ │ │ ├── LoopViewGestureListener.java │ │ │ │ ├── MessageHandler.java │ │ │ │ ├── OnItemSelectedRunnable.java │ │ │ │ ├── SmoothScrollTimerTask.java │ │ │ │ └── WheelView.java │ │ │ │ ├── listener │ │ │ │ ├── OnDismissListener.java │ │ │ │ └── OnItemSelectedListener.java │ │ │ │ ├── utils │ │ │ │ └── PickerViewAnimateUtil.java │ │ │ │ └── view │ │ │ │ ├── WheelOptions.java │ │ │ │ └── WheelViewDialog.java │ │ │ ├── fragments │ │ │ ├── ImitateFragment.java │ │ │ ├── OtherFragment.java │ │ │ ├── PropertyFragment.java │ │ │ ├── TraditionFragment.java │ │ │ ├── ViewsFragment.java │ │ │ └── base │ │ │ │ ├── AdImageView.java │ │ │ │ ├── BaseFragment.java │ │ │ │ ├── ItemInfo.java │ │ │ │ ├── MyAdapter.java │ │ │ │ └── RoutePaths.java │ │ │ ├── interfaces │ │ │ ├── ActivityLifecycleSimpleCallbacks.java │ │ │ └── AppBarStatusChangeListener.java │ │ │ ├── internal │ │ │ ├── DarkWorld.java │ │ │ ├── NormalStatus.java │ │ │ ├── OutClass.java │ │ │ ├── RequestManager.java │ │ │ ├── SimpleClass.java │ │ │ ├── Single.java │ │ │ ├── annotations │ │ │ │ ├── Cat.java │ │ │ │ ├── Path.java │ │ │ │ └── Tiger.java │ │ │ ├── core │ │ │ │ ├── BeautyLog.java │ │ │ │ ├── MethodInfo.kt │ │ │ │ ├── MethodManager.kt │ │ │ │ └── Tracker.kt │ │ │ ├── loader │ │ │ │ ├── AlbumMediaLoader.java │ │ │ │ └── GalleryPhoto.kt │ │ │ └── mm │ │ │ │ ├── LogcatTest.java │ │ │ │ └── SimpleMMClass.java │ │ │ ├── master │ │ │ ├── Tools.java │ │ │ ├── adapter │ │ │ │ └── ModeSelectorAdapter.java │ │ │ ├── ui │ │ │ │ └── MasterPaintActivity.java │ │ │ └── widget │ │ │ │ ├── MasterFilterView.java │ │ │ │ └── MasterPaintView.java │ │ │ ├── property │ │ │ ├── AliPayAnimActivity.java │ │ │ ├── DecorViewActivity.java │ │ │ ├── LayoutAnimationsActivity.java │ │ │ ├── PropertyAnimationActivity.java │ │ │ ├── RevealAnimatorActivity.java │ │ │ ├── ShopCarAddAnimActivity.java │ │ │ ├── ValueAnimationActivity.java │ │ │ ├── basic │ │ │ │ ├── AlipayFailureView.java │ │ │ │ ├── AlipaySuccessView.java │ │ │ │ ├── FixedGridLayout.java │ │ │ │ ├── GoodItem.java │ │ │ │ ├── GoodsListAdapter.java │ │ │ │ ├── GoodsListAdapter1.java │ │ │ │ ├── Point.java │ │ │ │ ├── PointAnimView.java │ │ │ │ └── PointSinEvaluator.java │ │ │ └── blur │ │ │ │ ├── BlurActivity.java │ │ │ │ └── BlurImage.java │ │ │ ├── recyclerview │ │ │ ├── BaseRecyclerViewActivity.java │ │ │ ├── DataFactory.kt │ │ │ ├── TempBean.java │ │ │ ├── VegaRecyclerViewActivity.java │ │ │ ├── adapter │ │ │ │ ├── BaseRecyclerViewAdapter.java │ │ │ │ ├── SimpleRecyclerViewAdapter.java │ │ │ │ └── StaggeredRecyclerViewAdapter.java │ │ │ ├── bean │ │ │ │ └── StickBean.kt │ │ │ ├── customitemdecoration │ │ │ │ ├── SimpleDecoration.java │ │ │ │ └── sticky │ │ │ │ │ ├── ExampleStickyView.java │ │ │ │ │ ├── StickyItemDecoration.java │ │ │ │ │ └── StickyView.java │ │ │ ├── customlayoutmanager │ │ │ │ ├── MyLinearLayoutManager.java │ │ │ │ ├── StartSnapHelper.java │ │ │ │ └── VegaLayoutManager.java │ │ │ └── fragments │ │ │ │ ├── BaseListFragment.kt │ │ │ │ ├── SimpleRecyclerViewFragment.java │ │ │ │ ├── StaggeredGridFragment.java │ │ │ │ ├── StickListFragment.kt │ │ │ │ └── VegaRecyclerViewFragment.java │ │ │ ├── sugar │ │ │ └── bean │ │ │ │ └── Item.java │ │ │ ├── tradition │ │ │ ├── AxisView.java │ │ │ ├── FrameAnimationActivity.java │ │ │ ├── SwitchAnimActivity.java │ │ │ ├── TweenedAnimationActivity.java │ │ │ ├── VPAnim2Activity.java │ │ │ ├── VPAnimActivity.java │ │ │ └── vptransanim │ │ │ │ ├── DepthPageTransformer.java │ │ │ │ ├── MyCubeTransformer.java │ │ │ │ └── ZoomOutPageTransformer.java │ │ │ ├── ui │ │ │ ├── SimpleBaseActivity.java │ │ │ ├── SuperTools.java │ │ │ └── activity │ │ │ │ ├── AllActivity.kt │ │ │ │ ├── AnimateDrawableActivity.java │ │ │ │ ├── BitmapMeshActivity.java │ │ │ │ ├── CameraActivity.java │ │ │ │ ├── ClipBoardActivity.java │ │ │ │ ├── ClockViewActivity.kt │ │ │ │ ├── CollegeActivity.java │ │ │ │ ├── CommunicationFragment.java │ │ │ │ ├── FakeFootballActivity.java │ │ │ │ ├── FileHelper.java │ │ │ │ ├── FileProviderActivity.java │ │ │ │ ├── Flip3DViewActivity.java │ │ │ │ ├── FlipViewActivity.java │ │ │ │ ├── FlowLayoutActivity.java │ │ │ │ ├── FullscreenADActivity.java │ │ │ │ ├── FullscreenActivity.java │ │ │ │ ├── GPUPixelActivity.java │ │ │ │ ├── GameViewSaveActivity.java │ │ │ │ ├── IModeActivity.java │ │ │ │ ├── ImgCacheActivity.java │ │ │ │ ├── InputActivity.java │ │ │ │ ├── LaunchOtherAppActivity.java │ │ │ │ ├── LoadCircleImageActivity.java │ │ │ │ ├── LoaderActivity.java │ │ │ │ ├── LottieAnimationViewActivity.kt │ │ │ │ ├── MailActivity.java │ │ │ │ ├── MatisseDemoActivity.java │ │ │ │ ├── MatissePhotoActivity.java │ │ │ │ ├── MergeIncludeViewActivity.kt │ │ │ │ ├── MyDrawingBoardActivity.java │ │ │ │ ├── MySwipeMenuActivity.java │ │ │ │ ├── OptionalActivity.java │ │ │ │ ├── OrientationActivity.kt │ │ │ │ ├── PaletteActivity.java │ │ │ │ ├── PdfActivity.java │ │ │ │ ├── PendingImgActivity.java │ │ │ │ ├── PhotoProcessActivity.java │ │ │ │ ├── PhysicsViewActivity.kt │ │ │ │ ├── PlayActivity.java │ │ │ │ ├── PolygonViewActivity.java │ │ │ │ ├── PrepareActivity.kt │ │ │ │ ├── PullToScaleActivity.kt │ │ │ │ ├── QQMainAcitivity.java │ │ │ │ ├── ReadJarActivity.java │ │ │ │ ├── ScreenCaptureActivity.java │ │ │ │ ├── ScrollingActivity.java │ │ │ │ ├── ShareIdActivity.java │ │ │ │ ├── ViewDragHelperActivity.java │ │ │ │ ├── ViewPagerNestedActivity.java │ │ │ │ ├── ViewStubActivity.kt │ │ │ │ ├── ViewTransformActivity.java │ │ │ │ ├── ViewsActivity.java │ │ │ │ ├── WavaAnimActivity.java │ │ │ │ ├── WebViewMenuActivity.java │ │ │ │ ├── WeiXinGalleryActivity.java │ │ │ │ ├── XiaoMiGalleryActivity.java │ │ │ │ ├── demos │ │ │ │ ├── AnimationsDemo.java │ │ │ │ ├── CardFlipActivity.java │ │ │ │ ├── CrossfadeActivity.java │ │ │ │ ├── LayoutChangesActivity.java │ │ │ │ ├── ScreenSlideActivity.java │ │ │ │ ├── ScreenSlidePageFragment.java │ │ │ │ ├── TouchHighlightImageButton.java │ │ │ │ └── ZoomActivity.java │ │ │ │ ├── fragments │ │ │ │ ├── CircleMenuFragment.java │ │ │ │ └── ContractsLoaderFragment.java │ │ │ │ ├── jianshu │ │ │ │ ├── FakeJianShuActivity.java │ │ │ │ ├── GenScreenShotActivity.java │ │ │ │ ├── JianShuHeadActivity.java │ │ │ │ └── helper │ │ │ │ │ ├── Constant.java │ │ │ │ │ ├── FakeWebView.java │ │ │ │ │ ├── HackTool.java │ │ │ │ │ └── HtmlBean.java │ │ │ │ ├── multifragments │ │ │ │ ├── FourFragment.java │ │ │ │ ├── MultiFragmentsActivity.java │ │ │ │ ├── OneFragment.java │ │ │ │ ├── ThreeFragment.java │ │ │ │ └── TwoFragment.java │ │ │ │ └── transtions │ │ │ │ ├── StackViewActivity.java │ │ │ │ ├── SwitcherActivity.java │ │ │ │ └── ViewFlipperAcitivity.java │ │ │ ├── umldot │ │ │ └── Student.puml │ │ │ ├── utils │ │ │ ├── ActivityExt.kt │ │ │ ├── AppUtils.java │ │ │ ├── BaseActivity.java │ │ │ ├── BaseList.kt │ │ │ ├── BitmapCacheUtil.java │ │ │ ├── CenterAlignImageSpan.java │ │ │ ├── ColorAnimator.java │ │ │ ├── ColorUtil.java │ │ │ ├── Device.java │ │ │ ├── DpConvert.java │ │ │ ├── FileUtil.java │ │ │ ├── GenBitmapDelegate.kt │ │ │ ├── GifSizeFilter.java │ │ │ ├── Glide4Engine.java │ │ │ ├── MyMoreText.java │ │ │ ├── NotificationHelper.java │ │ │ ├── PaletteUtils.java │ │ │ ├── RxBus.java │ │ │ ├── SendEmail.java │ │ │ ├── SimpleEvent.java │ │ │ ├── StatusBarUtil.java │ │ │ ├── StatusBarView.java │ │ │ ├── StreamUtil.java │ │ │ ├── SysUtil.kt │ │ │ ├── TT.java │ │ │ ├── Tools.java │ │ │ ├── UtilMoreText.java │ │ │ └── V.java │ │ │ ├── webview │ │ │ ├── AllWebViewActivity.java │ │ │ ├── CustomWebView.kt │ │ │ ├── FullscreenPage.java │ │ │ ├── JsObject.java │ │ │ ├── LoadHtmlObject.java │ │ │ ├── MyWebChromeClient.java │ │ │ ├── MyWebViewClient.java │ │ │ └── NestedWebViewActivity.kt │ │ │ └── widget │ │ │ ├── AppWidgetService.java │ │ │ ├── ContextExt.kt │ │ │ ├── CustomCoordinatorLayout.java │ │ │ ├── CustomTabLayout.java │ │ │ ├── DragHelperView.java │ │ │ ├── DrawingThread.java │ │ │ ├── NestedScrollView.java │ │ │ ├── OverLapLayout.java │ │ │ ├── PanoWidgetProvider.java │ │ │ ├── clearbadge │ │ │ ├── Badger.java │ │ │ ├── ShortcutBadgeException.java │ │ │ ├── ShortcutBadger.java │ │ │ ├── impl │ │ │ │ ├── AdwHomeBadger.java │ │ │ │ ├── ApexHomeBadger.java │ │ │ │ ├── AsusHomeLauncher.java │ │ │ │ ├── DefaultBadger.java │ │ │ │ ├── HuaweiHomeBadger.java │ │ │ │ ├── LGHomeBadger.java │ │ │ │ ├── NewHtcHomeBadger.java │ │ │ │ ├── NovaHomeBadger.java │ │ │ │ ├── OPPOHomeBader.java │ │ │ │ ├── SamsungHomeBadger.java │ │ │ │ ├── SonyHomeBadger.java │ │ │ │ ├── XiaomiHomeBadger.java │ │ │ │ └── ZukHomeBadger.java │ │ │ └── util │ │ │ │ ├── BroadcastHelper.java │ │ │ │ └── CloseHelper.java │ │ │ └── slidepanel │ │ │ ├── ScrollableViewHelper.java │ │ │ ├── SlidingUpPanelLayout.java │ │ │ └── ViewDragHelper.java │ └── res │ │ ├── anim │ │ ├── alpha_anim.xml │ │ ├── in_from_bottom.xml │ │ ├── out_to_bottom.xml │ │ ├── rotate_anim.xml │ │ ├── scale_anim1.xml │ │ ├── scale_anim2.xml │ │ ├── scale_anim3.xml │ │ ├── slide_in_bottom.xml │ │ ├── slide_in_right.xml │ │ ├── slide_out_bottom.xml │ │ ├── slide_out_left.xml │ │ ├── translate_anim.xml │ │ ├── zoomin.xml │ │ └── zoomout.xml │ │ ├── animator │ │ ├── card_flip_left_in.xml │ │ ├── card_flip_left_out.xml │ │ ├── card_flip_right_in.xml │ │ └── card_flip_right_out.xml │ │ ├── drawable-hdpi │ │ ├── ic_action_info.png │ │ ├── ic_action_new.png │ │ ├── ic_action_photo.png │ │ ├── ic_list_remove.png │ │ ├── ic_preview_radio_off.webp │ │ └── ic_preview_radio_on.webp │ │ ├── drawable-mdpi │ │ ├── ic_action_info.png │ │ ├── ic_action_new.png │ │ ├── ic_action_photo.png │ │ └── ic_list_remove.png │ │ ├── drawable-nodpi │ │ ├── explosion_five.png │ │ ├── explosion_four.png │ │ ├── explosion_one.png │ │ ├── explosion_three.png │ │ ├── explosion_two.png │ │ ├── image1.png │ │ ├── image2.png │ │ ├── thumb1.png │ │ └── thumb2.png │ │ ├── drawable-v21 │ │ ├── above_shadow.xml │ │ ├── below_shadow.xml │ │ ├── ic_menu_camera.xml │ │ ├── ic_menu_gallery.xml │ │ ├── ic_menu_manage.xml │ │ ├── ic_menu_send.xml │ │ ├── ic_menu_share.xml │ │ └── ic_menu_slideshow.xml │ │ ├── drawable-xhdpi │ │ ├── a5.webp │ │ ├── a6.jpg │ │ ├── a_0.png │ │ ├── a_1.png │ │ ├── a_2.png │ │ ├── alipay_msp_success1.png │ │ ├── alipay_msp_success10.png │ │ ├── alipay_msp_success11.png │ │ ├── alipay_msp_success12.png │ │ ├── alipay_msp_success13.png │ │ ├── alipay_msp_success14.png │ │ ├── alipay_msp_success15.png │ │ ├── alipay_msp_success16.png │ │ ├── alipay_msp_success17.png │ │ ├── alipay_msp_success18.png │ │ ├── alipay_msp_success19.png │ │ ├── alipay_msp_success2.png │ │ ├── alipay_msp_success20.png │ │ ├── alipay_msp_success21.png │ │ ├── alipay_msp_success3.png │ │ ├── alipay_msp_success4.png │ │ ├── alipay_msp_success5.png │ │ ├── alipay_msp_success6.png │ │ ├── alipay_msp_success7.png │ │ ├── alipay_msp_success8.png │ │ ├── alipay_msp_success9.png │ │ ├── alipay_msp_success_blue10.png │ │ ├── alipay_msp_success_blue11.png │ │ ├── alipay_msp_success_blue12.png │ │ ├── alipay_msp_success_blue13.png │ │ ├── alipay_msp_success_blue7.png │ │ ├── alipay_msp_success_blue8.png │ │ ├── alipay_msp_success_blue9.png │ │ ├── android_robot.png │ │ ├── battle_bg.jpg │ │ ├── battle_bg1.jpg │ │ ├── battle_bg_bottom.jpg │ │ ├── battle_element_checked.png │ │ ├── battle_element_normal.png │ │ ├── battle_player_state_checked.png │ │ ├── battle_player_state_unchecked.png │ │ ├── battle_save_picture.png │ │ ├── battle_share_icon.png │ │ ├── bg_battle_element_normal.png │ │ ├── bg_battle_element_selected.png │ │ ├── chrome_logo.png │ │ ├── custom_gradient.xml │ │ ├── default_avtar.png │ │ ├── find_search.png │ │ ├── girl.jpeg │ │ ├── holder.png │ │ ├── ic_action_info.png │ │ ├── ic_action_new.png │ │ ├── ic_action_photo.png │ │ ├── ic_card_24dp.png │ │ ├── ic_list_remove.png │ │ ├── icon_back_white.png │ │ ├── icon_image_save_new.png │ │ ├── icon_sliding_dqd_logo.png │ │ ├── imode_background.jpg │ │ ├── jianshulists.jpg │ │ ├── k.png │ │ ├── logo_qq_n.png │ │ ├── logo_qzone_n.png │ │ ├── logo_sinaweibo_n.png │ │ ├── logo_wechat_n.png │ │ ├── logo_wechatmoments.png │ │ ├── lufei.jpeg │ │ ├── maps.png │ │ ├── menu_items.jpg │ │ ├── messi.png │ │ ├── mingren1.jpg │ │ ├── mingren2.jpg │ │ ├── miui_nine.jpg │ │ ├── name.jpg │ │ ├── page_loading_01.png │ │ ├── page_loading_02.png │ │ ├── page_loading_03.png │ │ ├── page_loading_04.png │ │ ├── page_loading_05.png │ │ ├── page_loading_06.png │ │ ├── page_loading_07.png │ │ ├── page_loading_08.png │ │ ├── page_loading_09.png │ │ ├── page_loading_10.png │ │ ├── page_loading_11.png │ │ ├── page_loading_12.png │ │ ├── page_loading_13.png │ │ ├── page_loading_14.png │ │ ├── qrcode.png │ │ ├── qzx.jpeg │ │ ├── radar_button_icon_scan.png │ │ ├── radar_button_icon_scaning.png │ │ ├── radar_button_scan.png │ │ ├── radar_button_scan_background.png │ │ ├── radar_card_guide_cold.png │ │ ├── radar_card_guide_gesture_down.png │ │ ├── radar_card_guide_gesture_up.png │ │ ├── radar_card_guide_hot.png │ │ ├── star.png │ │ ├── toolbar_bg.jpg │ │ ├── xadsdk_loading_v2_00000.png │ │ ├── xadsdk_loading_v2_00001.png │ │ ├── xadsdk_loading_v2_00002.png │ │ ├── xadsdk_loading_v2_00003.png │ │ ├── xadsdk_loading_v2_00004.png │ │ ├── xadsdk_loading_v2_00005.png │ │ ├── xadsdk_loading_v2_00006.png │ │ ├── xadsdk_loading_v2_00007.png │ │ ├── xadsdk_loading_v2_00008.png │ │ ├── xadsdk_loading_v2_00009.png │ │ ├── xadsdk_loading_v2_00010.png │ │ ├── xadsdk_loading_v2_00011.png │ │ ├── xadsdk_loading_v2_00012.png │ │ ├── xadsdk_loading_v2_00013.png │ │ ├── xadsdk_loading_v2_00014.png │ │ ├── xadsdk_loading_v2_00015.png │ │ ├── xadsdk_loading_v2_00016.png │ │ ├── xadsdk_loading_v2_00017.png │ │ ├── xadsdk_loading_v2_00018.png │ │ ├── xadsdk_loading_v2_00019.png │ │ ├── xadsdk_loading_v2_00020.png │ │ ├── xadsdk_loading_v2_00021.png │ │ ├── xadsdk_loading_v2_00022.png │ │ ├── xadsdk_loading_v2_00023.png │ │ ├── xadsdk_loading_v2_00024.png │ │ ├── xadsdk_loading_v2_00025.png │ │ ├── xadsdk_loading_v2_00026.png │ │ ├── xadsdk_loading_v2_00027.png │ │ ├── xadsdk_loading_v2_00028.png │ │ ├── xadsdk_loading_v2_00029.png │ │ └── yuanyuan.jpeg │ │ ├── drawable-xxxhdpi │ │ └── cute.gif │ │ ├── drawable │ │ ├── add.png │ │ ├── arrow_down1.PNG │ │ ├── atm.png │ │ ├── atms.png │ │ ├── buss.png │ │ ├── busstatioin.png │ │ ├── cat.png │ │ ├── circle.png │ │ ├── circle_view.xml │ │ ├── corner_view.xml │ │ ├── corner_view_white.xml │ │ ├── divider_line.xml │ │ ├── frame_anim1.xml │ │ ├── frame_anim2.xml │ │ ├── frame_anim3.xml │ │ ├── frame_anim4.xml │ │ ├── goods_four.png │ │ ├── goods_one.png │ │ ├── goods_three.png │ │ ├── googs_two.png │ │ ├── gradient_background.xml │ │ ├── gradient_bg.xml │ │ ├── ic_action_accept.png │ │ ├── ic_action_cancel.png │ │ ├── ic_add_black_24dp.xml │ │ ├── ic_add_white_24dp.xml │ │ ├── ic_all_inclusive_white_24dp.xml │ │ ├── ic_arrow_back_black_24dp.xml │ │ ├── ic_chevron_left_black_24dp.xml │ │ ├── ic_dashboard_black_24dp.xml │ │ ├── ic_expand_less_black_24dp.xml │ │ ├── ic_expand_more_black_24dp.xml │ │ ├── ic_explore_black_24dp.xml │ │ ├── ic_face_black_24dp.xml │ │ ├── ic_home_black_24dp.xml │ │ ├── ic_info_black_24dp.xml │ │ ├── ic_insert_drive_file_black_24dp.xml │ │ ├── ic_kotlin_logo.xml │ │ ├── ic_more_horiz_black_24dp.xml │ │ ├── ic_notifications_black_24dp.xml │ │ ├── ic_pulltorefresh_arrow.png │ │ ├── ic_pulltorefresh_arrow_up.png │ │ ├── ic_refresh_black_24dp.xml │ │ ├── ic_search_black_24dp.xml │ │ ├── ic_search_white_24dp.xml │ │ ├── ic_show_chart_black_24dp.xml │ │ ├── ic_sync_black_24dp.xml │ │ ├── ic_toc_black_24dp.xml │ │ ├── jianshu_corner_view_white.xml │ │ ├── left_bold.png │ │ ├── left_transparent.png │ │ ├── meishi.png │ │ ├── meishis.png │ │ ├── menu_shop_car_selected.png │ │ ├── minus.png │ │ ├── movie.png │ │ ├── movies.png │ │ ├── phone.png │ │ ├── phone_background.jpg │ │ ├── qq_login.png │ │ ├── right_bold.png │ │ ├── right_transparent.png │ │ ├── round_background.xml │ │ ├── round_with_strike.xml │ │ ├── scene.jpg │ │ ├── scenes.jpg │ │ ├── selector_color.xml │ │ ├── selector_pickerview_btn.xml │ │ ├── shopcar.png │ │ ├── side_nav_bar.xml │ │ ├── subway.png │ │ ├── subways.png │ │ ├── success_blue.xml │ │ ├── type_0.png │ │ └── type_1.png │ │ ├── layout-land │ │ └── activity_orientation.xml │ │ ├── layout │ │ ├── acitivity_rv.xml │ │ ├── activity_all.xml │ │ ├── activity_all_web_view.xml │ │ ├── activity_animate_drawable.xml │ │ ├── activity_app_start.xml │ │ ├── activity_base_recycler_view.xml │ │ ├── activity_beautiful.xml │ │ ├── activity_bga_all.xml │ │ ├── activity_bitmap_mesh.xml │ │ ├── activity_blur.xml │ │ ├── activity_bottom_sheet.xml │ │ ├── activity_bottom_sheet_main.xml │ │ ├── activity_camera.xml │ │ ├── activity_card_flip.xml │ │ ├── activity_clip_board.xml │ │ ├── activity_clock_view.xml │ │ ├── activity_college.xml │ │ ├── activity_crossfade.xml │ │ ├── activity_decor_view.xml │ │ ├── activity_demo_view.xml │ │ ├── activity_dialog.xml │ │ ├── activity_fake_football.xml │ │ ├── activity_fake_jianshu.xml │ │ ├── activity_fake_wei_bo.xml │ │ ├── activity_file_provider.xml │ │ ├── activity_file_utils.xml │ │ ├── activity_flip_view.xml │ │ ├── activity_flow_layout.xml │ │ ├── activity_frame_animation.xml │ │ ├── activity_fullscreen.xml │ │ ├── activity_fullscreen_ad.xml │ │ ├── activity_fullscreen_page.xml │ │ ├── activity_game_view_save.xml │ │ ├── activity_gen_screen_shot.xml │ │ ├── activity_gpu_pixel.xml │ │ ├── activity_img_cache.xml │ │ ├── activity_imode.xml │ │ ├── activity_input.xml │ │ ├── activity_jian_shu_head.xml │ │ ├── activity_launch_other_app.xml │ │ ├── activity_layout_animations.xml │ │ ├── activity_layout_changes.xml │ │ ├── activity_load_circle_image.xml │ │ ├── activity_loaderctivity.xml │ │ ├── activity_lottie_animation_view.xml │ │ ├── activity_mail.xml │ │ ├── activity_main.xml │ │ ├── activity_master_paint.xml │ │ ├── activity_matiess_photo.xml │ │ ├── activity_matisse_demo.xml │ │ ├── activity_merge_include_view.xml │ │ ├── activity_multi_fragments.xml │ │ ├── activity_my_drawing_board.xml │ │ ├── activity_my_slide_view.xml │ │ ├── activity_nested_web_view.xml │ │ ├── activity_ns.xml │ │ ├── activity_optional.xml │ │ ├── activity_orientation.xml │ │ ├── activity_palette.xml │ │ ├── activity_pdf.xml │ │ ├── activity_pending_img.xml │ │ ├── activity_photo_process.xml │ │ ├── activity_physics_view.xml │ │ ├── activity_play.xml │ │ ├── activity_polygon_view.xml │ │ ├── activity_prepare.xml │ │ ├── activity_property_animation.xml │ │ ├── activity_pull_to_scale.xml │ │ ├── activity_puzzle.xml │ │ ├── activity_qqmain_acitivity.xml │ │ ├── activity_read_jar.xml │ │ ├── activity_recycler_view_click.xml │ │ ├── activity_reveal_animation.xml │ │ ├── activity_screen_capture.xml │ │ ├── activity_screen_slide.xml │ │ ├── activity_scrolling.xml │ │ ├── activity_share_id.xml │ │ ├── activity_shopcar_anim.xml │ │ ├── activity_splash_screen.xml │ │ ├── activity_stack_view.xml │ │ ├── activity_swipe_anim.xml │ │ ├── activity_switch_anim.xml │ │ ├── activity_switcher.xml │ │ ├── activity_tween_animation.xml │ │ ├── activity_value_animation.xml │ │ ├── activity_vega_recycler_view.xml │ │ ├── activity_view_drag_helper.xml │ │ ├── activity_view_flipper_acitivity.xml │ │ ├── activity_view_pager_nested.xml │ │ ├── activity_view_stub.xml │ │ ├── activity_view_transform.xml │ │ ├── activity_views.xml │ │ ├── activity_vpanim.xml │ │ ├── activity_vpanim2.xml │ │ ├── activity_wava_anim.xml │ │ ├── activity_web_view_menu.xml │ │ ├── activity_wei_xin_gallery.xml │ │ ├── activity_wheel_view.xml │ │ ├── activity_xiao_mi_gallery.xml │ │ ├── activity_zoom.xml │ │ ├── adapter_shopping_cart_item.xml │ │ ├── adapter_shopping_cart_item_1.xml │ │ ├── app_widget_layout.xml │ │ ├── bag_banner_layout.xml │ │ ├── circle_menu_item.xml │ │ ├── content_all.xml │ │ ├── content_lottie_animation_view.xml │ │ ├── content_main.xml │ │ ├── content_palette.xml │ │ ├── content_pull_to_scale.xml │ │ ├── content_scrolling.xml │ │ ├── custom_tab_layout_root.xml │ │ ├── demo_ad_item.xml │ │ ├── demo_info_item.xml │ │ ├── demo_info_skeleton_item.xml │ │ ├── dialog_input_item.xml │ │ ├── dialog_layout.xml │ │ ├── dqd_player_item.xml │ │ ├── easy_seekbar_layout.xml │ │ ├── excerpt_content.xml │ │ ├── flow_item_layout.xml │ │ ├── fragment_blank.xml │ │ ├── fragment_card_back.xml │ │ ├── fragment_card_front.xml │ │ ├── fragment_circle_menu.xml │ │ ├── fragment_college.xml │ │ ├── fragment_communication.xml │ │ ├── fragment_four.xml │ │ ├── fragment_grid_view.xml │ │ ├── fragment_multi_fragments.xml │ │ ├── fragment_one.xml │ │ ├── fragment_other.xml │ │ ├── fragment_screen_slide_page.xml │ │ ├── fragment_simple_recycler_view.xml │ │ ├── fragment_text_list_recycler_view.xml │ │ ├── fragment_three.xml │ │ ├── fragment_two.xml │ │ ├── fragment_utril_view.xml │ │ ├── fragment_vega_recycler_view.xml │ │ ├── fragment_view_pager_nested.xml │ │ ├── fragment_views.xml │ │ ├── fragment_vpanim.xml │ │ ├── frament_custom_views.xml │ │ ├── frament_property.xml │ │ ├── frament_tradition.xml │ │ ├── image.xml │ │ ├── image_item.xml │ │ ├── include_header.xml │ │ ├── include_pickerview_topbar.xml │ │ ├── include_view.xml │ │ ├── include_view_1.xml │ │ ├── include_view_2.xml │ │ ├── item_beau.xml │ │ ├── item_image.xml │ │ ├── large_info_item.xml │ │ ├── layout_1.xml │ │ ├── layout_2.xml │ │ ├── layout_3.xml │ │ ├── layout_custom_tablayout.xml │ │ ├── layout_floating_window.xml │ │ ├── list_item.xml │ │ ├── list_item_example.xml │ │ ├── merge_layout.xml │ │ ├── merge_shell_layout.xml │ │ ├── mode_selector_item.xml │ │ ├── page.xml │ │ ├── pickerview_options.xml │ │ ├── pull_footer.xml │ │ ├── pull_header.xml │ │ ├── recycler_view_header.xml │ │ ├── recyclerview_item.xml │ │ ├── same_id_layout.xml │ │ ├── simple_bold_textview_item.xml │ │ ├── simple_textview_item.xml │ │ ├── small_info_item.xml │ │ ├── swipe_bottom_layout.xml │ │ ├── swipe_card_item.xml │ │ ├── swipe_head_layout.xml │ │ ├── test.xml │ │ ├── uri_item.xml │ │ └── view_stub.xml │ │ ├── menu │ │ ├── activity_app_start_drawer.xml │ │ ├── activity_crossfade.xml │ │ ├── activity_layout_changes.xml │ │ ├── activity_screen_slide.xml │ │ ├── app_start.xml │ │ ├── bga_banner_style.xml │ │ ├── master_menu.xml │ │ ├── men_web_load_url.xml │ │ ├── menu_app_start.xml │ │ ├── menu_college.xml │ │ ├── menu_jianshu.xml │ │ ├── menu_main.xml │ │ ├── menu_multi_fragments.xml │ │ ├── menu_palette.xml │ │ ├── menu_pull_to_scale.xml │ │ ├── menu_puzzle_level.xml │ │ ├── menu_scrolling.xml │ │ ├── menu_utril_view.xml │ │ ├── menu_view_page_nested.xml │ │ ├── menu_view_pager_nested.xml │ │ ├── menu_views.xml │ │ ├── menu_vpanim.xml │ │ └── navigation.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── app_start.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ └── story.jpg │ │ ├── transition │ │ ├── explode.xml │ │ └── slide.xml │ │ ├── values-w820dp │ │ ├── colors.xml │ │ └── dimens.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── attrs_multiviewpager.xml │ │ ├── attrs_scalelayout.xml │ │ ├── attrs_spinner_loading.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── drawables.xml │ │ ├── ic_launcher_background.xml │ │ ├── ids.xml │ │ ├── integers.xml │ │ ├── multi_theme_colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ ├── xml-v25 │ │ └── shortcuts.xml │ │ └── xml │ │ ├── app_widget_provider.xml │ │ ├── file_path.xml │ │ ├── pref_data_sync.xml │ │ ├── pref_general.xml │ │ ├── pref_headers.xml │ │ └── pref_notification.xml │ └── test │ └── java │ └── home │ └── smart │ └── fly │ └── animations │ ├── ExampleUnitTest.java │ └── junit │ └── ToolsUnitTest.java ├── build.gradle ├── buildSrc ├── .gitignore ├── build.gradle ├── gradle_doc.md ├── res │ └── images │ │ └── project_pro.webp └── src │ └── main │ ├── groovy │ └── com │ │ └── engineer │ │ └── plugin │ │ └── utils │ │ ├── GitTool.groovy │ │ └── JsonTool.groovy │ ├── kotlin │ └── com │ │ └── engineer │ │ └── plugin │ │ ├── PhoenixPlugin.kt │ │ ├── extensions │ │ ├── PhoenixExtension.kt │ │ ├── RenameExtension.kt │ │ ├── TransformExtension.kt │ │ └── model │ │ │ ├── ApkOutputInfo.kt │ │ │ ├── Constants.kt │ │ │ ├── Info.kt │ │ │ └── TaskDetail.kt │ │ ├── transforms │ │ ├── FooClassVisitorFactory.kt │ │ ├── cat │ │ │ ├── CatClassVisitor.kt │ │ │ ├── CatClassVisitorFactory.kt │ │ │ └── CatMethodVisitor.kt │ │ ├── tiger │ │ │ ├── TigerClassVisitor.kt │ │ │ ├── TigerClassVisitorFactory.kt │ │ │ └── TigerMethodVisitor.kt │ │ └── track │ │ │ ├── TrackClassVisitor.kt │ │ │ ├── TrackClassVisitorFactory.kt │ │ │ └── TrackMethodVisitor.kt │ │ └── utils │ │ ├── BeautyLog.kt │ │ ├── Common.kt │ │ ├── Log.java │ │ └── SpecifiedInterfaceImplementionChecked.java │ └── resources │ └── META-INF │ └── gradle-plugins │ └── phoenix-plugin.properties ├── config.gradle ├── diagram.svg ├── docs ├── cmd.md ├── script │ ├── adb_help.txt │ ├── build-scan.sh │ ├── clean_app_prebuild.sh │ ├── fetch_and_rebase.bat │ ├── i_screen_record.sh │ ├── launch_total_time.sh │ ├── mac_fetch_and_rebase.sh │ └── open_app.md └── uml │ ├── AsmClassVisitorFactory.png │ └── AsmClassVisitorFactory.puml ├── gradle.properties ├── gradle ├── .gitignore ├── app_check.gradle ├── custom_plugin.gradle ├── demo.json ├── funs.gradle ├── libs.versions.toml ├── report_apk_size_after_package.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── imitate ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── schemas │ └── com.engineer.imitate.room.SchoolDatabase │ │ ├── 1.json │ │ ├── 2.json │ │ └── 3.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── engineer │ │ └── imitate │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── index.html │ │ ├── school.json │ │ └── test.aac │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── engineer │ │ │ └── imitate │ │ │ ├── AppOnJankReportListener.kt │ │ │ ├── HybridHelper.kt │ │ │ ├── ImitateApplication.kt │ │ │ ├── KotlinRootActivity.kt │ │ │ ├── Routes.kt │ │ │ ├── algo │ │ │ └── links │ │ │ │ ├── Client.kt │ │ │ │ ├── SingleLinkedList.kt │ │ │ │ └── ZNode.kt │ │ │ ├── behavior │ │ │ ├── AppBarLayoutOverScrollViewBehavior.java │ │ │ ├── PullToScaleBehavior.kt │ │ │ └── internel │ │ │ │ └── DisInterceptNestedScrollView.kt │ │ │ ├── interfaces │ │ │ ├── SimpleActivityCallback.kt │ │ │ ├── SimpleOnTabSelectedListener.kt │ │ │ ├── SimpleProgressChangeListener.kt │ │ │ └── testinterfaces │ │ │ │ ├── SimpleInterface.kt │ │ │ │ ├── SimpleJavaInterface.java │ │ │ │ ├── SimpleJavaInterface1.kt │ │ │ │ ├── Test.kt │ │ │ │ └── Test1.java │ │ │ ├── model │ │ │ ├── Basic.kt │ │ │ ├── ContentItem.kt │ │ │ ├── FragmentItem.kt │ │ │ ├── School.kt │ │ │ ├── Schools.kt │ │ │ └── World.kt │ │ │ ├── receivers │ │ │ └── AlarmReceiver.kt │ │ │ ├── room │ │ │ ├── SchoolConverters.kt │ │ │ ├── SchoolDao.kt │ │ │ ├── SchoolDatabase.kt │ │ │ └── SchoolRepository.kt │ │ │ ├── services │ │ │ └── MediaRecordService.kt │ │ │ ├── shell │ │ │ ├── CommandResult.java │ │ │ ├── Shell.java │ │ │ ├── ShellExitCode.java │ │ │ ├── ShellNotFoundException.java │ │ │ └── StreamGobbler.java │ │ │ ├── ui │ │ │ ├── BulletView.kt │ │ │ ├── FantasySplashActivity.kt │ │ │ ├── activity │ │ │ │ ├── CLActivity.kt │ │ │ │ ├── ConstraintLayoutActivity.kt │ │ │ │ ├── DateAndTimePickerActivity.kt │ │ │ │ ├── FakeJikeActivity.kt │ │ │ │ ├── FinalActivity.kt │ │ │ │ ├── GroundDuActivity.kt │ │ │ │ ├── HorizontalListActivity.kt │ │ │ │ ├── InflateRealActivity.kt │ │ │ │ ├── MyExpandableListViewActivity.kt │ │ │ │ ├── RVActivity.kt │ │ │ │ ├── ReverseGifActivity.kt │ │ │ │ ├── RunShellActivity.kt │ │ │ │ ├── ScreenRecorderActivity.kt │ │ │ │ ├── SelfDrawViewActivity.kt │ │ │ │ ├── StarShowActivity.java │ │ │ │ ├── ViewDispathchActivity.kt │ │ │ │ ├── WifiScanActivity.kt │ │ │ │ ├── fragmentmanager │ │ │ │ │ ├── BlinkFragment.kt │ │ │ │ │ ├── ContentActivity.kt │ │ │ │ │ └── TabLayoutsFragment.kt │ │ │ │ └── ninepoint │ │ │ │ │ ├── ChatMsgEntity.java │ │ │ │ │ ├── ChatMsgViewAdapter.java │ │ │ │ │ └── NinePointActivity.java │ │ │ ├── adapter │ │ │ │ ├── BannerAdapter.java │ │ │ │ ├── BasicShapesAdapter.kt │ │ │ │ └── ViewPagerFragmentStateAdapter.kt │ │ │ ├── fragments │ │ │ │ ├── CircleLoadingFragment.kt │ │ │ │ ├── ComposeFragment.kt │ │ │ │ ├── ConstraintSetAnimFragment.kt │ │ │ │ ├── CoroutinesPlayGround.kt │ │ │ │ ├── DrawableExampleFragment.kt │ │ │ │ ├── ElevationFragment.kt │ │ │ │ ├── EntranceFragment.kt │ │ │ │ ├── FrescoFragment.kt │ │ │ │ ├── GithubFragment.kt │ │ │ │ ├── MotionLayoutFragment.kt │ │ │ │ ├── ParallaxFragment.kt │ │ │ │ ├── RecyclerViewFragment.kt │ │ │ │ ├── RxPlayGround.kt │ │ │ │ ├── ScrollerFragment.kt │ │ │ │ ├── SlideFragment.kt │ │ │ │ ├── VHFragment.kt │ │ │ │ ├── di │ │ │ │ │ ├── DIFragment.kt │ │ │ │ │ ├── DaggerHelper.kt │ │ │ │ │ └── DaggerPlayground.kt │ │ │ │ └── subs │ │ │ │ │ ├── AnimationTextFragment.kt │ │ │ │ │ ├── BannerFragment.kt │ │ │ │ │ ├── FitTextViewFragment.kt │ │ │ │ │ ├── FragmentFactory.kt │ │ │ │ │ ├── ShadowLayoutFragment.kt │ │ │ │ │ └── TestFragment.kt │ │ │ ├── list │ │ │ │ ├── adapter │ │ │ │ │ ├── DataAdapter.kt │ │ │ │ │ ├── ImageAdapter.kt │ │ │ │ │ ├── LargeImageAdapter.kt │ │ │ │ │ ├── ParallaxAdapter.kt │ │ │ │ │ ├── SimpleArrayAdapter.kt │ │ │ │ │ ├── SimpleImageAdapter.kt │ │ │ │ │ └── SlideListAdapter.kt │ │ │ │ ├── decoration │ │ │ │ │ └── OverLapDecoration.kt │ │ │ │ └── layoutmanager │ │ │ │ │ └── FocusLayoutManager.java │ │ │ └── widget │ │ │ │ ├── AnimatedCountTextView.kt │ │ │ │ ├── ArrowDrawable.kt │ │ │ │ ├── CustomDialogFragment.kt │ │ │ │ ├── CustomShadowLayout.kt │ │ │ │ ├── DecorationGod.kt │ │ │ │ ├── DecorationOne.kt │ │ │ │ ├── DynamicImageView.kt │ │ │ │ ├── FlutteringLayout.kt │ │ │ │ ├── InflateGround.kt │ │ │ │ ├── LabelFlowLayout.java │ │ │ │ ├── LabelLayout.kt │ │ │ │ ├── MySimpleTarget.java │ │ │ │ ├── ParallaxView.kt │ │ │ │ ├── ShimmerLayout.java │ │ │ │ ├── ToggleLayout.java │ │ │ │ ├── Utils.kt │ │ │ │ ├── custom │ │ │ │ ├── CustomScrollView.kt │ │ │ │ ├── DragView.java │ │ │ │ ├── JikeSlideView.kt │ │ │ │ ├── LightningView.java │ │ │ │ ├── LoadingImagesView.java │ │ │ │ ├── LoadingTextView.kt │ │ │ │ ├── RoundImageView.kt │ │ │ │ ├── SlideArrowView.kt │ │ │ │ ├── StackViewLayout.kt │ │ │ │ └── loading │ │ │ │ │ ├── CircleLoading.kt │ │ │ │ │ ├── CircleLoadingLite.kt │ │ │ │ │ ├── CircleLoadingPro.kt │ │ │ │ │ ├── CircleLoadingUltimate.kt │ │ │ │ │ └── ProgressView.kt │ │ │ │ ├── headsup │ │ │ │ ├── Choco.kt │ │ │ │ ├── Pudding.kt │ │ │ │ └── SwipeDismissTouchListener.kt │ │ │ │ ├── imageviews │ │ │ │ └── CustomImageView.java │ │ │ │ ├── more │ │ │ │ ├── AnimatorView.java │ │ │ │ ├── DZStickyNavLayouts.kt │ │ │ │ └── OverScrollLayout.java │ │ │ │ ├── opensource │ │ │ │ ├── AbsBannerAdapter.java │ │ │ │ ├── InfiniteBannerView.java │ │ │ │ ├── ShadowLayout.java │ │ │ │ └── text │ │ │ │ │ ├── ActionMenu.java │ │ │ │ │ ├── CustomActionMenuCallBack.java │ │ │ │ │ ├── SelectableTextView.java │ │ │ │ │ └── Utils.java │ │ │ │ ├── shimmer │ │ │ │ └── ShimmerDrawable.kt │ │ │ │ ├── split │ │ │ │ └── Ball.kt │ │ │ │ └── view │ │ │ │ ├── AnimRoundLayout.kt │ │ │ │ ├── AnimationBorder.kt │ │ │ │ ├── DemoPresenter.kt │ │ │ │ ├── DemoView.kt │ │ │ │ ├── TestDrawable.kt │ │ │ │ └── layoutmanager │ │ │ │ ├── ItemConfig.kt │ │ │ │ ├── ItemTouchHelperCallback.kt │ │ │ │ ├── OnSlideListener.kt │ │ │ │ └── SlideLayoutManager.kt │ │ │ └── util │ │ │ ├── AnimDelegate.kt │ │ │ ├── AppUtils.kt │ │ │ ├── BaseList.kt │ │ │ ├── ContextExt.kt │ │ │ ├── CropCircleHelper.java │ │ │ ├── Glide4Engine.java │ │ │ ├── IOTool.kt │ │ │ ├── JsonDSL.kt │ │ │ ├── NetUtils.kt │ │ │ ├── PatchPlayground.kt │ │ │ ├── PathUtils.java │ │ │ ├── RxExt.kt │ │ │ ├── ScreenRecordHelper.kt │ │ │ ├── ScreenUtils.java │ │ │ ├── SpUtil.kt │ │ │ ├── StreamUtils.java │ │ │ ├── SysUtil.kt │ │ │ ├── SystemUtil.java │ │ │ ├── TestHelper.java │ │ │ ├── TextUtil.kt │ │ │ ├── Throttle.kt │ │ │ ├── TimeUtil.kt │ │ │ ├── Utils.java │ │ │ ├── ViewExt.kt │ │ │ ├── ViewUtils.java │ │ │ └── span │ │ │ ├── span │ │ │ ├── CenteredImageSpan.java │ │ │ ├── NoUnderlineClickSpan.java │ │ │ └── RoundBgColorSpan.java │ │ │ └── toolkit │ │ │ └── TextSpanBuilder.java │ ├── module │ │ └── AndroidManifest.xml │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxhdpi │ │ ├── book.webp │ │ ├── face.webp │ │ ├── star.webp │ │ └── vx_ic_gift_continue_send_bg.png │ │ ├── drawable-xxxhdpi │ │ ├── beauty_1.webp │ │ ├── beauty_2.webp │ │ ├── beauty_3.webp │ │ ├── beauty_4.webp │ │ ├── beauty_5.webp │ │ ├── fast_furious_back.webp │ │ ├── fast_furious_front.webp │ │ ├── game_of_thrones_back.webp │ │ ├── game_of_thrones_front.webp │ │ ├── girl.jpg │ │ ├── haha.gif │ │ ├── haha_revert.gif │ │ ├── kenan.png │ │ ├── lc.webp │ │ ├── lichun.webp │ │ ├── mult_back.webp │ │ ├── mult_front.webp │ │ ├── resource_heart7.png │ │ ├── sand.webp │ │ ├── sherlok_back.webp │ │ ├── sherlok_front.webp │ │ ├── star_wars_back.webp │ │ ├── star_wars_front.webp │ │ └── zhihu_avatar.webp │ │ ├── drawable │ │ ├── above_shadow.xml │ │ ├── accent_color_round_card.xml │ │ ├── ad_tag_bg.xml │ │ ├── anim.webp │ │ ├── below_shadow.xml │ │ ├── bg_tag.xml │ │ ├── blue_5dp_gradient_bg.xml │ │ ├── blue_round_card.xml │ │ ├── blue_round_no_padding_card.xml │ │ ├── btn_delete.9.png │ │ ├── checked_bg.xml │ │ ├── clip.xml │ │ ├── comic.webp │ │ ├── container.9.png │ │ ├── dark_circle.xml │ │ ├── good.webp │ │ ├── gradient_bg.xml │ │ ├── gradient_drawable.xml │ │ ├── ic_add_black_24dp.xml │ │ ├── ic_add_white_24dp.xml │ │ ├── ic_arrow_back_black_24dp.xml │ │ ├── ic_autorenew_black_24dp.xml │ │ ├── ic_baseline_close_24.xml │ │ ├── ic_baseline_keyboard_arrow_down_24.xml │ │ ├── ic_baseline_keyboard_arrow_up_24.xml │ │ ├── ic_baseline_more_horiz_24.xml │ │ ├── ic_baseline_phone_android_24.xml │ │ ├── ic_baseline_remove_24.xml │ │ ├── ic_baseline_screen_rotation_24.xml │ │ ├── ic_brightness_high_white_24dp.xml │ │ ├── ic_brightness_low_white_24dp.xml │ │ ├── ic_gif_white_24dp.xml │ │ ├── ic_keyboard_arrow_right_black_24dp.xml │ │ ├── ic_kotlin_logo.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_setup.xml │ │ ├── ic_share_black_24dp.xml │ │ ├── img_car1.png │ │ ├── img_car2.png │ │ ├── img_car3.png │ │ ├── img_car4.png │ │ ├── img_car5.png │ │ ├── kotlin.png │ │ ├── label_round_bg.xml │ │ ├── line.xml │ │ ├── maomao.jpg │ │ ├── normal_bg.xml │ │ ├── red_round_card.xml │ │ ├── ring_background.xml │ │ ├── ripple_background.xml │ │ ├── round.xml │ │ ├── round_12.xml │ │ ├── round_card.xml │ │ ├── self.jpg │ │ ├── tag_bg.xml │ │ ├── text_color.xml │ │ ├── timg.webp │ │ ├── toggle_bottom_bg.xml │ │ ├── totoro.webp │ │ ├── vx_bg_all_radius_gbk99a_8dp.xml │ │ ├── vx_bg_gift_continue_send.xml │ │ ├── vx_gift_progress_bar.xml │ │ ├── white_bg.xml │ │ └── xyy.jpeg │ │ ├── layout │ │ ├── activity_c_l.xml │ │ ├── activity_c_l_bottom.xml │ │ ├── activity_constraint_layout.xml │ │ ├── activity_content.xml │ │ ├── activity_date_and_time_picker.xml │ │ ├── activity_expandable_list_view.xml │ │ ├── activity_fake_jike.xml │ │ ├── activity_fantasy_splash.xml │ │ ├── activity_final.xml │ │ ├── activity_ground_du.xml │ │ ├── activity_horizontal_list.xml │ │ ├── activity_inflate_real.xml │ │ ├── activity_kotlin_root.xml │ │ ├── activity_r_v.xml │ │ ├── activity_reverse_gif.xml │ │ ├── activity_run_shell.xml │ │ ├── activity_screen_recorder.xml │ │ ├── activity_self_draw_view.xml │ │ ├── activity_starshow.xml │ │ ├── activity_view_dispathch.xml │ │ ├── activity_wifi_scan.xml │ │ ├── animator_hot.xml │ │ ├── bottom_sheet_content.xml │ │ ├── bullet_view.xml │ │ ├── content_custom_scrolling.xml │ │ ├── content_kotlin_root.xml │ │ ├── expandable_group_item.xml │ │ ├── fragment_animation_text.xml │ │ ├── fragment_banner.xml │ │ ├── fragment_blink.xml │ │ ├── fragment_circle_loading.xml │ │ ├── fragment_compose.xml │ │ ├── fragment_constraint_set_anim_large.xml │ │ ├── fragment_constraint_set_anim_normal.xml │ │ ├── fragment_coroutines.xml │ │ ├── fragment_di.xml │ │ ├── fragment_dialog.xml │ │ ├── fragment_entrance.xml │ │ ├── fragment_evelation.xml │ │ ├── fragment_final.xml │ │ ├── fragment_fit_text_view_layout.xml │ │ ├── fragment_fresco.xml │ │ ├── fragment_github.xml │ │ ├── fragment_layout_manager.xml │ │ ├── fragment_motion_layout.xml │ │ ├── fragment_parallax.xml │ │ ├── fragment_recycler_view.xml │ │ ├── fragment_rx_play.xml │ │ ├── fragment_scroller.xml │ │ ├── fragment_shadow_layout.xml │ │ ├── fragment_slide.xml │ │ ├── fragment_tab_layouts.xml │ │ ├── fragment_test.xml │ │ ├── fragment_text_drawable.xml │ │ ├── fragment_vh.xml │ │ ├── fragment_weather_status_item.xml │ │ ├── h_image_item.xml │ │ ├── image_item.xml │ │ ├── include_shadow_layout.xml │ │ ├── inflate_example.xml │ │ ├── inflate_example_best.xml │ │ ├── item_heads_up.xml │ │ ├── label_layout_container.xml │ │ ├── label_tv.xml │ │ ├── large_image_item.xml │ │ ├── loading_images_layout.xml │ │ ├── my_bottom_sheet_layout.xml │ │ ├── parallax_item.xml │ │ ├── simple_image_item.xml │ │ ├── simple_tv.xml │ │ ├── slide_card_layout.xml │ │ ├── test.xml │ │ ├── toggle_layout_inner.xml │ │ ├── view_item.xml │ │ ├── view_item_h.xml │ │ ├── view_item_h_card.xml │ │ ├── view_item_h_card_custom.xml │ │ ├── view_item_h_image.xml │ │ └── view_item_h_square.xml │ │ ├── layouts │ │ └── ninepoint │ │ │ ├── drawable │ │ │ ├── chat_bubble_left1.9.png │ │ │ ├── chat_bubble_left2.9.png │ │ │ ├── chat_bubble_right1.9.png │ │ │ ├── chat_bubble_right2.9.png │ │ │ ├── chatfrom_bg.xml │ │ │ ├── chatfrom_bg_focused.9.png │ │ │ ├── chatfrom_bg_normal.9.png │ │ │ ├── chatfrom_bg_pressed.9.png │ │ │ ├── chatto_bg.xml │ │ │ ├── chatto_bg_focused.9.png │ │ │ ├── chatto_bg_normal.9.png │ │ │ ├── chatto_bg_pressed.9.png │ │ │ ├── edittext1.9.png │ │ │ ├── layout_bg1.9.png │ │ │ ├── mini_avatar_shadow.png │ │ │ ├── mm_title_back_focused.9.png │ │ │ ├── mm_title_back_normal.9.png │ │ │ ├── mm_title_back_pressed.9.png │ │ │ ├── mmtitle_bg.9.png │ │ │ ├── red.jpg │ │ │ ├── red_circle_50x50.png │ │ │ ├── red_circle_80x80.png │ │ │ ├── selector_btn_back.xml │ │ │ ├── yellow.jpg │ │ │ ├── yellow1.jpg │ │ │ └── yellow2.jpg │ │ │ ├── layout │ │ │ ├── activity_nine_point.xml │ │ │ ├── chatting_item_msg_text_left.xml │ │ │ └── chatting_item_msg_text_right.xml │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── menu │ │ ├── index_setting_menu.xml │ │ ├── menu_custom_scrolling.xml │ │ ├── menu_final.xml │ │ └── menu_kotlin_root.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap │ │ └── kotlin.jpg │ │ ├── values-night │ │ ├── colors.xml │ │ └── ic_launcher_background.xml │ │ ├── values-w820dp │ │ ├── attrs.xml │ │ └── dimens.xml │ │ ├── values │ │ ├── array.xml │ │ ├── attrs.xml │ │ ├── attrs_transformationlayout.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── infinit_banner_attrs.xml │ │ ├── shadow_attrs.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── activity_fantasy_splash_scene.xml │ │ └── fragment_motion_layout_scene.xml │ └── test │ └── java │ └── com │ └── engineer │ └── imitate │ ├── AndroidContextTest.kt │ └── ExampleUnitTest.java ├── imitation.jks ├── settings.gradle ├── subs ├── ai │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── engineer │ │ │ └── ai │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── dcgan.pt │ │ │ ├── mnist.tflite │ │ │ └── mosaic.pt │ │ ├── java │ │ │ └── com │ │ │ │ └── engineer │ │ │ │ └── ai │ │ │ │ ├── AIHomeActivity.kt │ │ │ │ ├── DigitalClassificationActivity.kt │ │ │ │ ├── FastStyleTransActivity.kt │ │ │ │ ├── GanActivity.kt │ │ │ │ └── util │ │ │ │ ├── AndroidAssetsFileUtil.kt │ │ │ │ ├── AsyncExecutor.kt │ │ │ │ ├── BitmapGridAdapter.kt │ │ │ │ ├── DigitClassifier.kt │ │ │ │ ├── StyleTransferProcessor.kt │ │ │ │ ├── TensorFlowLiteHelper.kt │ │ │ │ └── Utils.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_digital_classification.xml │ │ │ ├── activity_gan.xml │ │ │ ├── activity_tans_style.xml │ │ │ └── item_bitmap.xml │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── engineer │ │ └── ai │ │ └── ExampleUnitTest.kt ├── compose │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── libs │ │ └── gpupixel-release.aar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── engineer │ │ │ └── compose │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── engineer │ │ │ │ └── compose │ │ │ │ ├── ui │ │ │ │ ├── ChatActivity.kt │ │ │ │ ├── ComposeDemo.kt │ │ │ │ ├── ComposeView.kt │ │ │ │ ├── GalleryActivity.kt │ │ │ │ ├── MainComposeActivity.kt │ │ │ │ ├── gpufilter │ │ │ │ │ └── GPUFilterActivity.kt │ │ │ │ ├── preview │ │ │ │ │ └── Pre.kt │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ │ ├── uitls │ │ │ │ ├── DelegateExample.kt │ │ │ │ └── KeyBoardUtil.kt │ │ │ │ └── viewmodel │ │ │ │ ├── ChatMessage.kt │ │ │ │ ├── ChatViewModel.kt │ │ │ │ └── ImagePreviewPayload.kt │ │ └── res │ │ │ ├── drawable-xxxhdpi │ │ │ ├── profile_picture.webp │ │ │ ├── user_bot.webp │ │ │ └── user_me.webp │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── engineer │ │ └── compose │ │ └── ExampleUnitTest.kt ├── cpp_native │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── patch │ │ │ ├── diff.patch │ │ │ ├── lastest.txt │ │ │ ├── old.txt │ │ │ └── readme.md │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── bspatch.c │ │ ├── bzip │ │ │ ├── blocksort.c │ │ │ ├── bspatch.h │ │ │ ├── bzlib.c │ │ │ ├── bzlib.h │ │ │ ├── bzlib_private.h │ │ │ ├── compress.c │ │ │ ├── crctable.c │ │ │ ├── decompress.c │ │ │ ├── huffman.c │ │ │ └── randtable.c │ │ ├── cpp_native.cpp │ │ ├── logcat │ │ │ └── androidlog.h │ │ └── third-lib │ │ │ └── arm64-v8a │ │ │ └── libbspatch_tool.so │ │ └── java │ │ └── com │ │ └── example │ │ └── cpp_native │ │ ├── app │ │ └── NativeRoot.kt │ │ └── internal │ │ ├── NativeHouse.java │ │ └── PatchUtil.java ├── dataview │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── engineer │ │ │ └── dateview │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── engineer │ │ │ │ └── dateview │ │ │ │ ├── api │ │ │ │ ├── ActivityRepository.java │ │ │ │ ├── ActivityRoomDatabase.java │ │ │ │ ├── DataView.java │ │ │ │ └── UpdateModelDelegate.java │ │ │ │ ├── dao │ │ │ │ └── ActivityDao.java │ │ │ │ ├── interfaces │ │ │ │ └── MyActivityLifecycleCallbacks.java │ │ │ │ ├── internal │ │ │ │ └── AutoSchedulerTransformer.kt │ │ │ │ ├── model │ │ │ │ └── ActModel.java │ │ │ │ └── ui │ │ │ │ └── DataViewActivity.kt │ │ └── res │ │ │ ├── layout │ │ │ └── activity_data_view.xml │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── engineer │ │ └── dateview │ │ └── ExampleUnitTest.java ├── game │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── engineer │ │ │ └── android │ │ │ └── game │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── 2048 │ │ │ │ ├── .gitignore │ │ │ │ ├── .jshintrc │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── animframe_polyfill.js │ │ │ │ │ ├── application.js │ │ │ │ │ ├── bind_polyfill.js │ │ │ │ │ ├── classlist_polyfill.js │ │ │ │ │ ├── game_manager.js │ │ │ │ │ ├── grid.js │ │ │ │ │ ├── html_actuator.js │ │ │ │ │ ├── i18n.js │ │ │ │ │ ├── keyboard_input_manager.js │ │ │ │ │ ├── local_storage_manager.js │ │ │ │ │ ├── nightmode.js │ │ │ │ │ └── tile.js │ │ │ │ ├── meta │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ ├── apple-touch-startup-image-640x1096.png │ │ │ │ │ └── apple-touch-startup-image-640x920.png │ │ │ │ ├── screenshots │ │ │ │ │ └── screen01.png │ │ │ │ └── style │ │ │ │ │ ├── fonts │ │ │ │ │ ├── ClearSans-Bold-webfont.eot │ │ │ │ │ ├── ClearSans-Bold-webfont.svg │ │ │ │ │ ├── ClearSans-Bold-webfont.woff │ │ │ │ │ ├── ClearSans-Light-webfont.eot │ │ │ │ │ ├── ClearSans-Light-webfont.svg │ │ │ │ │ ├── ClearSans-Light-webfont.woff │ │ │ │ │ ├── ClearSans-Regular-webfont.eot │ │ │ │ │ ├── ClearSans-Regular-webfont.svg │ │ │ │ │ ├── ClearSans-Regular-webfont.woff │ │ │ │ │ └── clear-sans.css │ │ │ │ │ ├── helpers.scss │ │ │ │ │ ├── main.css │ │ │ │ │ ├── main.scss │ │ │ │ │ └── night.png │ │ │ ├── fonts │ │ │ │ └── grobold.ttf │ │ │ ├── game │ │ │ │ ├── index.html │ │ │ │ └── res │ │ │ │ │ └── icon.png │ │ │ ├── schulte │ │ │ │ ├── css │ │ │ │ │ ├── app.007af05c.css │ │ │ │ │ └── chunk-vendors.4cd1e086.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── app.8fab308a.js │ │ │ │ │ └── chunk-vendors.05af8bc6.js │ │ │ ├── square │ │ │ │ ├── index.html │ │ │ │ └── static │ │ │ │ │ ├── css │ │ │ │ │ ├── app.c4da78ddaaf0dc9ade5110b5ba476403.css │ │ │ │ │ └── app.c4da78ddaaf0dc9ade5110b5ba476403.css.map │ │ │ │ │ ├── js │ │ │ │ │ ├── app.870b44035107d02070ec.js │ │ │ │ │ ├── app.870b44035107d02070ec.js.map │ │ │ │ │ ├── manifest.5131a6dcf85fbcf7bf37.js │ │ │ │ │ ├── manifest.5131a6dcf85fbcf7bf37.js.map │ │ │ │ │ ├── vendor.66c8ac3f43782ce33066.js │ │ │ │ │ └── vendor.66c8ac3f43782ce33066.js.map │ │ │ │ │ ├── loader.css │ │ │ │ │ ├── music.mp3 │ │ │ │ │ └── qr.jpeg │ │ │ └── tower │ │ │ │ ├── assets │ │ │ │ ├── background.png │ │ │ │ ├── bgm.mp3 │ │ │ │ ├── bgm.ogg │ │ │ │ ├── block-perfect.png │ │ │ │ ├── block-rope.png │ │ │ │ ├── block.png │ │ │ │ ├── c1.png │ │ │ │ ├── c2.png │ │ │ │ ├── c3.png │ │ │ │ ├── c4.png │ │ │ │ ├── c5.png │ │ │ │ ├── c6.png │ │ │ │ ├── c7.png │ │ │ │ ├── c8.png │ │ │ │ ├── drop-perfect.mp3 │ │ │ │ ├── drop-perfect.ogg │ │ │ │ ├── drop.mp3 │ │ │ │ ├── drop.ogg │ │ │ │ ├── f1.png │ │ │ │ ├── f2.png │ │ │ │ ├── f3.png │ │ │ │ ├── f4.png │ │ │ │ ├── f5.png │ │ │ │ ├── f6.png │ │ │ │ ├── f7.png │ │ │ │ ├── game-over.mp3 │ │ │ │ ├── game-over.ogg │ │ │ │ ├── heart.png │ │ │ │ ├── hook.png │ │ │ │ ├── main-bg.png │ │ │ │ ├── main-index-logo.png │ │ │ │ ├── main-index-start.png │ │ │ │ ├── main-index-title.png │ │ │ │ ├── main-loading-logo.png │ │ │ │ ├── main-loading.gif │ │ │ │ ├── main-modal-again-b.png │ │ │ │ ├── main-modal-bg.png │ │ │ │ ├── main-modal-invite-b.png │ │ │ │ ├── main-modal-over.png │ │ │ │ ├── main-share-icon.png │ │ │ │ ├── main.js │ │ │ │ ├── rope.png │ │ │ │ ├── rotate.mp3 │ │ │ │ ├── rotate.ogg │ │ │ │ ├── score.png │ │ │ │ ├── tutorial-arrow.png │ │ │ │ ├── tutorial.png │ │ │ │ ├── wenxue.eot │ │ │ │ ├── wenxue.svg │ │ │ │ ├── wenxue.ttf │ │ │ │ ├── wenxue.woff │ │ │ │ └── zepto-1.1.6.min.js │ │ │ │ └── index.html │ │ ├── java │ │ │ └── com │ │ │ │ ├── bird │ │ │ │ ├── BirdActivity.kt │ │ │ │ ├── GameFlabbyBird.kt │ │ │ │ └── internal │ │ │ │ │ ├── Bird.kt │ │ │ │ │ ├── Ext.kt │ │ │ │ │ ├── Floor.kt │ │ │ │ │ ├── GameStatus.kt │ │ │ │ │ └── Pipe.kt │ │ │ │ ├── engineer │ │ │ │ └── android │ │ │ │ │ └── game │ │ │ │ │ ├── ui │ │ │ │ │ ├── BaseWebViewActivity.kt │ │ │ │ │ ├── Game2048Activity.kt │ │ │ │ │ ├── GameRootActivity.kt │ │ │ │ │ ├── SchulteGridActivity.kt │ │ │ │ │ ├── SensorViewActivity.java │ │ │ │ │ ├── SquareActivity.kt │ │ │ │ │ └── TowerBuilderActivity.kt │ │ │ │ │ ├── util │ │ │ │ │ ├── DefaultOrientation.kt │ │ │ │ │ └── DefaultOrientationUtil.kt │ │ │ │ │ └── widget │ │ │ │ │ ├── SensorView.java │ │ │ │ │ └── SensorViewDrawThread.java │ │ │ │ └── snatik │ │ │ │ └── matches │ │ │ │ ├── MemoryGameActivity.java │ │ │ │ ├── common │ │ │ │ ├── Memory.java │ │ │ │ ├── Music.java │ │ │ │ └── Shared.java │ │ │ │ ├── engine │ │ │ │ ├── Engine.java │ │ │ │ └── ScreenController.java │ │ │ │ ├── events │ │ │ │ ├── AbstractEvent.java │ │ │ │ ├── Event.java │ │ │ │ ├── EventBus.java │ │ │ │ ├── EventObserver.java │ │ │ │ ├── EventObserverAdapter.java │ │ │ │ ├── engine │ │ │ │ │ ├── FlipDownCardsEvent.java │ │ │ │ │ ├── GameWonEvent.java │ │ │ │ │ └── HidePairCardsEvent.java │ │ │ │ └── ui │ │ │ │ │ ├── BackGameEvent.java │ │ │ │ │ ├── DifficultySelectedEvent.java │ │ │ │ │ ├── FlipCardEvent.java │ │ │ │ │ ├── NextGameEvent.java │ │ │ │ │ ├── ResetBackgroundEvent.java │ │ │ │ │ ├── StartEvent.java │ │ │ │ │ └── ThemeSelectedEvent.java │ │ │ │ ├── fragments │ │ │ │ ├── BaseFragment.java │ │ │ │ ├── DifficultySelectFragment.java │ │ │ │ ├── GameFragment.java │ │ │ │ ├── MenuFragment.java │ │ │ │ └── ThemeSelectFragment.java │ │ │ │ ├── model │ │ │ │ ├── BoardArrangment.java │ │ │ │ ├── BoardConfiguration.java │ │ │ │ ├── Game.java │ │ │ │ └── GameState.java │ │ │ │ ├── themes │ │ │ │ ├── Theme.java │ │ │ │ └── Themes.java │ │ │ │ ├── ui │ │ │ │ ├── BoardView.java │ │ │ │ ├── DifficultyView.java │ │ │ │ ├── PopupManager.java │ │ │ │ ├── PopupSettingsView.java │ │ │ │ ├── PopupWonView.java │ │ │ │ └── TileView.java │ │ │ │ └── utils │ │ │ │ ├── Clock.java │ │ │ │ ├── CountDownClock.java │ │ │ │ ├── FontLoader.java │ │ │ │ └── Utils.java │ │ └── res │ │ │ ├── Temporary.java │ │ │ ├── drawable-hdpi │ │ │ ├── animals_theme_star_0.png │ │ │ ├── animals_theme_star_1.png │ │ │ ├── animals_theme_star_2.png │ │ │ ├── animals_theme_star_3.png │ │ │ ├── button_difficulty_1_star_0.png │ │ │ ├── button_difficulty_1_star_1.png │ │ │ ├── button_difficulty_1_star_2.png │ │ │ ├── button_difficulty_1_star_3.png │ │ │ ├── button_difficulty_2_star_0.png │ │ │ ├── button_difficulty_2_star_1.png │ │ │ ├── button_difficulty_2_star_2.png │ │ │ ├── button_difficulty_2_star_3.png │ │ │ ├── button_difficulty_3_star_0.png │ │ │ ├── button_difficulty_3_star_1.png │ │ │ ├── button_difficulty_3_star_2.png │ │ │ ├── button_difficulty_3_star_3.png │ │ │ ├── button_difficulty_4_star_0.png │ │ │ ├── button_difficulty_4_star_1.png │ │ │ ├── button_difficulty_4_star_2.png │ │ │ ├── button_difficulty_4_star_3.png │ │ │ ├── button_difficulty_5_star_0.png │ │ │ ├── button_difficulty_5_star_1.png │ │ │ ├── button_difficulty_5_star_2.png │ │ │ ├── button_difficulty_5_star_3.png │ │ │ ├── button_difficulty_6_star_0.png │ │ │ ├── button_difficulty_6_star_1.png │ │ │ ├── button_difficulty_6_star_2.png │ │ │ ├── button_difficulty_6_star_3.png │ │ │ ├── button_google_play.png │ │ │ ├── button_music_off.png │ │ │ ├── button_music_on.png │ │ │ ├── button_rate.png │ │ │ ├── button_settings.png │ │ │ ├── button_start.png │ │ │ ├── button_start_lights.png │ │ │ ├── emoji_theme_star_0.png │ │ │ ├── emoji_theme_star_1.png │ │ │ ├── emoji_theme_star_2.png │ │ │ ├── emoji_theme_star_3.png │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ ├── monsters_theme_star_0.png │ │ │ ├── monsters_theme_star_1.png │ │ │ ├── monsters_theme_star_2.png │ │ │ ├── monsters_theme_star_3.png │ │ │ ├── qiushang.png │ │ │ ├── qiuzhong.png │ │ │ ├── qiuzuo.png │ │ │ ├── shang.png │ │ │ ├── tooltip_play.png │ │ │ ├── yuan.png │ │ │ └── zuo.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-nodpi │ │ │ ├── animals_1.png │ │ │ ├── animals_10.png │ │ │ ├── animals_11.png │ │ │ ├── animals_12.png │ │ │ ├── animals_13.png │ │ │ ├── animals_14.png │ │ │ ├── animals_15.png │ │ │ ├── animals_16.png │ │ │ ├── animals_17.png │ │ │ ├── animals_18.png │ │ │ ├── animals_19.png │ │ │ ├── animals_2.png │ │ │ ├── animals_20.png │ │ │ ├── animals_21.png │ │ │ ├── animals_22.png │ │ │ ├── animals_23.png │ │ │ ├── animals_24.png │ │ │ ├── animals_25.png │ │ │ ├── animals_26.png │ │ │ ├── animals_27.png │ │ │ ├── animals_28.png │ │ │ ├── animals_3.png │ │ │ ├── animals_4.png │ │ │ ├── animals_5.png │ │ │ ├── animals_6.png │ │ │ ├── animals_7.png │ │ │ ├── animals_8.png │ │ │ ├── animals_9.png │ │ │ ├── back_animals.png │ │ │ ├── back_horror.png │ │ │ ├── background.png │ │ │ ├── emoji_1.png │ │ │ ├── emoji_10.png │ │ │ ├── emoji_11.png │ │ │ ├── emoji_12.png │ │ │ ├── emoji_13.png │ │ │ ├── emoji_14.png │ │ │ ├── emoji_15.png │ │ │ ├── emoji_16.png │ │ │ ├── emoji_17.png │ │ │ ├── emoji_18.png │ │ │ ├── emoji_19.png │ │ │ ├── emoji_2.png │ │ │ ├── emoji_20.png │ │ │ ├── emoji_21.png │ │ │ ├── emoji_22.png │ │ │ ├── emoji_23.png │ │ │ ├── emoji_24.png │ │ │ ├── emoji_25.png │ │ │ ├── emoji_26.png │ │ │ ├── emoji_27.png │ │ │ ├── emoji_28.png │ │ │ ├── emoji_29.png │ │ │ ├── emoji_3.png │ │ │ ├── emoji_30.png │ │ │ ├── emoji_31.png │ │ │ ├── emoji_32.png │ │ │ ├── emoji_33.png │ │ │ ├── emoji_34.png │ │ │ ├── emoji_35.png │ │ │ ├── emoji_36.png │ │ │ ├── emoji_37.png │ │ │ ├── emoji_38.png │ │ │ ├── emoji_39.png │ │ │ ├── emoji_4.png │ │ │ ├── emoji_40.png │ │ │ ├── emoji_41.png │ │ │ ├── emoji_42.png │ │ │ ├── emoji_43.png │ │ │ ├── emoji_44.png │ │ │ ├── emoji_45.png │ │ │ ├── emoji_46.png │ │ │ ├── emoji_47.png │ │ │ ├── emoji_48.png │ │ │ ├── emoji_5.png │ │ │ ├── emoji_6.png │ │ │ ├── emoji_7.png │ │ │ ├── emoji_8.png │ │ │ ├── emoji_9.png │ │ │ ├── mosters_1.png │ │ │ ├── mosters_10.png │ │ │ ├── mosters_11.png │ │ │ ├── mosters_12.png │ │ │ ├── mosters_13.png │ │ │ ├── mosters_14.png │ │ │ ├── mosters_15.png │ │ │ ├── mosters_16.png │ │ │ ├── mosters_17.png │ │ │ ├── mosters_18.png │ │ │ ├── mosters_19.png │ │ │ ├── mosters_2.png │ │ │ ├── mosters_20.png │ │ │ ├── mosters_21.png │ │ │ ├── mosters_22.png │ │ │ ├── mosters_23.png │ │ │ ├── mosters_24.png │ │ │ ├── mosters_25.png │ │ │ ├── mosters_26.png │ │ │ ├── mosters_27.png │ │ │ ├── mosters_28.png │ │ │ ├── mosters_29.png │ │ │ ├── mosters_3.png │ │ │ ├── mosters_30.png │ │ │ ├── mosters_31.png │ │ │ ├── mosters_32.png │ │ │ ├── mosters_33.png │ │ │ ├── mosters_34.png │ │ │ ├── mosters_35.png │ │ │ ├── mosters_36.png │ │ │ ├── mosters_37.png │ │ │ ├── mosters_38.png │ │ │ ├── mosters_39.png │ │ │ ├── mosters_4.png │ │ │ ├── mosters_40.png │ │ │ ├── mosters_5.png │ │ │ ├── mosters_6.png │ │ │ ├── mosters_7.png │ │ │ ├── mosters_8.png │ │ │ ├── mosters_9.png │ │ │ ├── tile_back.xml │ │ │ └── time_border.png │ │ │ ├── drawable-sw600dp-hdpi │ │ │ ├── animals_theme_star_0.png │ │ │ ├── animals_theme_star_1.png │ │ │ ├── animals_theme_star_2.png │ │ │ ├── animals_theme_star_3.png │ │ │ ├── button_difficulty_1_star_0.png │ │ │ ├── button_difficulty_1_star_1.png │ │ │ ├── button_difficulty_1_star_2.png │ │ │ ├── button_difficulty_1_star_3.png │ │ │ ├── button_difficulty_2_star_0.png │ │ │ ├── button_difficulty_2_star_1.png │ │ │ ├── button_difficulty_2_star_2.png │ │ │ ├── button_difficulty_2_star_3.png │ │ │ ├── button_difficulty_3_star_0.png │ │ │ ├── button_difficulty_3_star_1.png │ │ │ ├── button_difficulty_3_star_2.png │ │ │ ├── button_difficulty_3_star_3.png │ │ │ ├── button_difficulty_4_star_0.png │ │ │ ├── button_difficulty_4_star_1.png │ │ │ ├── button_difficulty_4_star_2.png │ │ │ ├── button_difficulty_4_star_3.png │ │ │ ├── button_difficulty_5_star_0.png │ │ │ ├── button_difficulty_5_star_1.png │ │ │ ├── button_difficulty_5_star_2.png │ │ │ ├── button_difficulty_5_star_3.png │ │ │ ├── button_difficulty_6_star_0.png │ │ │ ├── button_difficulty_6_star_1.png │ │ │ ├── button_difficulty_6_star_2.png │ │ │ ├── button_difficulty_6_star_3.png │ │ │ ├── emoji_theme_star_0.png │ │ │ ├── emoji_theme_star_1.png │ │ │ ├── emoji_theme_star_2.png │ │ │ ├── emoji_theme_star_3.png │ │ │ ├── icon.png │ │ │ ├── monsters_theme_star_0.png │ │ │ ├── monsters_theme_star_1.png │ │ │ ├── monsters_theme_star_2.png │ │ │ └── monsters_theme_star_3.png │ │ │ ├── drawable-xhdpi │ │ │ ├── animals_theme_star_0.png │ │ │ ├── animals_theme_star_1.png │ │ │ ├── animals_theme_star_2.png │ │ │ ├── animals_theme_star_3.png │ │ │ ├── button_google_play.png │ │ │ ├── button_music_off.png │ │ │ ├── button_music_on.png │ │ │ ├── button_rate.png │ │ │ ├── button_settings.png │ │ │ ├── button_start.png │ │ │ ├── button_start_lights.png │ │ │ ├── emoji_theme_star_0.png │ │ │ ├── emoji_theme_star_1.png │ │ │ ├── emoji_theme_star_2.png │ │ │ ├── emoji_theme_star_3.png │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ ├── monsters_theme_star_0.png │ │ │ ├── monsters_theme_star_1.png │ │ │ ├── monsters_theme_star_2.png │ │ │ ├── monsters_theme_star_3.png │ │ │ ├── title.png │ │ │ └── tooltip_play.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── button_google_play.png │ │ │ ├── button_settings.png │ │ │ ├── button_start.png │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ ├── tooltip_play.png │ │ │ └── wallpaper.webp │ │ │ ├── drawable │ │ │ ├── button_again.png │ │ │ ├── button_back.png │ │ │ ├── level_complete.png │ │ │ ├── level_complete_star.png │ │ │ ├── settings_popup.png │ │ │ ├── tile.9.png │ │ │ ├── tile_back_star.png │ │ │ ├── time_bar.png │ │ │ └── title.png │ │ │ ├── layout │ │ │ ├── activity_bird.xml │ │ │ ├── activity_game2048.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_shutlte.xml │ │ │ ├── board_view.xml │ │ │ ├── difficult_view.xml │ │ │ ├── difficulty_select_fragment.xml │ │ │ ├── game_fragment.xml │ │ │ ├── menu_fragment.xml │ │ │ ├── popup_settings_view.xml │ │ │ ├── popup_won_view.xml │ │ │ ├── theme_select_fragment.xml │ │ │ └── tile_view.xml │ │ │ ├── layouts │ │ │ └── bird │ │ │ │ └── drawable-hdpi │ │ │ │ ├── bg1.png │ │ │ │ ├── bird_0.png │ │ │ │ ├── bird_1.png │ │ │ │ ├── bird_2.png │ │ │ │ ├── d1.png │ │ │ │ ├── d2.png │ │ │ │ ├── floor_bg.png │ │ │ │ ├── floor_bg2.png │ │ │ │ ├── g1.png │ │ │ │ ├── g2.png │ │ │ │ ├── n0.png │ │ │ │ ├── n1.png │ │ │ │ ├── n2.png │ │ │ │ ├── n3.png │ │ │ │ ├── n4.png │ │ │ │ ├── n5.png │ │ │ │ ├── n6.png │ │ │ │ ├── n7.png │ │ │ │ ├── n8.png │ │ │ │ └── n9.png │ │ │ ├── raw │ │ │ ├── background_music.mp3 │ │ │ ├── correct_answer.mp3 │ │ │ └── star.mp3 │ │ │ ├── values-sw600dp │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ │ │ ├── values-sw720dp │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ │ │ ├── values-v11 │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── engineer │ │ └── android │ │ └── game │ │ └── ExampleUnitTest.kt ├── gif-revert │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── engineer │ │ │ └── gif │ │ │ └── revert │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── engineer │ │ │ │ └── gif │ │ │ │ └── revert │ │ │ │ ├── GifFactory.kt │ │ │ │ ├── internal │ │ │ │ ├── GlideInternal.kt │ │ │ │ ├── IOTool.kt │ │ │ │ ├── ReflectTool.kt │ │ │ │ ├── ResFrame.kt │ │ │ │ ├── TaskTime.kt │ │ │ │ └── _GifFactory.kt │ │ │ │ └── lib │ │ │ │ ├── AnimatedGIFWriter.java │ │ │ │ ├── AnimatedGifEncoder.java │ │ │ │ ├── LZWEncoder.java │ │ │ │ └── NeuQuant.java │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── engineer │ │ └── gif │ │ └── revert │ │ └── ExampleUnitTest.java └── skeleton │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ethanhua │ │ └── skeleton │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── ethanhua │ │ │ └── skeleton │ │ │ ├── RecyclerViewSkeletonScreen.java │ │ │ ├── ShimmerViewHolder.java │ │ │ ├── Skeleton.java │ │ │ ├── SkeletonAdapter.java │ │ │ ├── SkeletonScreen.java │ │ │ ├── ViewReplacer.java │ │ │ └── ViewSkeletonScreen.java │ └── res │ │ ├── layout │ │ ├── layout_default_item_skeleton.xml │ │ └── layout_shimmer.xml │ │ └── values │ │ ├── strings.xml │ │ └── values.xml │ └── test │ └── java │ └── com │ └── ethanhua │ └── skeleton │ └── ExampleUnitTest.java └── trace_out.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | .idea 4 | /local.properties 5 | .DS_Store 6 | /build 7 | /captures 8 | /test 9 | /repo 10 | .trace 11 | *.project 12 | *.settings/ 13 | *.classpath 14 | .info.json 15 | /.kotlin/ 16 | -------------------------------------------------------------------------------- /animationkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/animationkey -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /test 3 | /release 4 | *.project 5 | *.settings/ 6 | *.classpath -------------------------------------------------------------------------------- /app/libs/BaiduLBS_Android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/BaiduLBS_Android.jar -------------------------------------------------------------------------------- /app/libs/activation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/activation.jar -------------------------------------------------------------------------------- /app/libs/additionnal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/additionnal.jar -------------------------------------------------------------------------------- /app/libs/arm64-v8a/libBaiduMapSDK_base_v4_2_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/arm64-v8a/libBaiduMapSDK_base_v4_2_0.so -------------------------------------------------------------------------------- /app/libs/arm64-v8a/liblocSDK7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/arm64-v8a/liblocSDK7.so -------------------------------------------------------------------------------- /app/libs/gpupixel-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/gpupixel-release.aar -------------------------------------------------------------------------------- /app/libs/jsoup-1.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/jsoup-1.7.3.jar -------------------------------------------------------------------------------- /app/libs/mail.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/mail.jar -------------------------------------------------------------------------------- /app/libs/pinyin4j-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/libs/pinyin4j-2.5.0.jar -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 动画城-Debug 4 | -------------------------------------------------------------------------------- /app/src/main/assets/hack.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/assets/hack.jar -------------------------------------------------------------------------------- /app/src/main/assets/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/assets/mark.png -------------------------------------------------------------------------------- /app/src/main/assets/story.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/assets/story.jpg -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/home/smart/fly/animations/customview/flipview/OverFlipMode.java: -------------------------------------------------------------------------------- 1 | package home.smart.fly.animations.customview.flipview; 2 | 3 | public enum OverFlipMode { 4 | GLOW, RUBBER_BAND 5 | } 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-hdpi/ic_action_info.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-hdpi/ic_action_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-hdpi/ic_action_photo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_list_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-hdpi/ic_list_remove.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_preview_radio_off.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-hdpi/ic_preview_radio_off.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_preview_radio_on.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-hdpi/ic_preview_radio_on.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-mdpi/ic_action_info.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-mdpi/ic_action_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-mdpi/ic_action_photo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_list_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-mdpi/ic_list_remove.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/explosion_five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/explosion_five.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/explosion_four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/explosion_four.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/explosion_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/explosion_one.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/explosion_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/explosion_three.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/explosion_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/explosion_two.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/image1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/image2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/thumb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/thumb1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/thumb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-nodpi/thumb2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/a5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/a5.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/a6.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/a_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/a_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/a_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/a_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/a_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/a_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success_blue10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success_blue10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success_blue11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success_blue11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success_blue12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success_blue12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success_blue13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success_blue13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success_blue7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success_blue7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success_blue8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success_blue8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/alipay_msp_success_blue9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/alipay_msp_success_blue9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/android_robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/android_robot.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_bg.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_bg1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_bg_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_bg_bottom.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_element_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_element_checked.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_element_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_element_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_player_state_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_player_state_checked.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_player_state_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_player_state_unchecked.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_save_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_save_picture.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battle_share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/battle_share_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bg_battle_element_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/bg_battle_element_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bg_battle_element_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/bg_battle_element_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/chrome_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/chrome_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/default_avtar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/default_avtar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/find_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/find_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/girl.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/girl.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/holder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/holder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/ic_action_info.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/ic_action_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/ic_action_photo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_card_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/ic_card_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_list_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/ic_list_remove.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/icon_back_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon_image_save_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/icon_image_save_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon_sliding_dqd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/icon_sliding_dqd_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/imode_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/imode_background.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/jianshulists.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/jianshulists.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/k.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_qq_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/logo_qq_n.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_qzone_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/logo_qzone_n.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_sinaweibo_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/logo_sinaweibo_n.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_wechat_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/logo_wechat_n.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_wechatmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/logo_wechatmoments.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/lufei.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/lufei.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/maps.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/menu_items.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/menu_items.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/messi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/messi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/mingren1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/mingren1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/mingren2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/mingren2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/miui_nine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/miui_nine.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/name.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/name.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_02.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_03.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_04.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_05.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_06.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_07.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_08.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_09.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/page_loading_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/page_loading_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/qrcode.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/qzx.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/qzx.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/radar_button_icon_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/radar_button_icon_scan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/radar_button_icon_scaning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/radar_button_icon_scaning.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/radar_button_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/radar_button_scan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/radar_button_scan_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/radar_button_scan_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/radar_card_guide_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/radar_card_guide_cold.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/radar_card_guide_gesture_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/radar_card_guide_gesture_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/radar_card_guide_gesture_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/radar_card_guide_gesture_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/radar_card_guide_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/radar_card_guide_hot.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/star.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toolbar_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/toolbar_bg.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00000.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00001.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00002.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00003.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00004.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00005.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00006.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00007.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00008.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00009.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00010.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00011.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00012.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00013.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00014.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00015.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00016.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00017.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00018.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00019.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00020.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00021.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00022.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00023.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00024.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00025.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00026.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00027.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00028.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/xadsdk_loading_v2_00029.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/yuanyuan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xhdpi/yuanyuan.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/cute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable-xxxhdpi/cute.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_down1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/arrow_down1.PNG -------------------------------------------------------------------------------- /app/src/main/res/drawable/atm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/atm.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/atms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/atms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/buss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/buss.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/busstatioin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/busstatioin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/cat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/goods_four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/goods_four.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/goods_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/goods_one.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/goods_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/goods_three.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/googs_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/googs_two.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/ic_action_accept.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pulltorefresh_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/ic_pulltorefresh_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pulltorefresh_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/ic_pulltorefresh_arrow_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/left_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/left_bold.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/left_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/left_transparent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/meishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/meishi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/meishis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/meishis.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu_shop_car_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/menu_shop_car_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/minus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/movie.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/movies.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/phone_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/phone_background.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/qq_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/qq_login.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/right_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/right_bold.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/right_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/right_transparent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/scene.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/scenes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/scenes.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/shopcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/shopcar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/subway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/subway.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/subways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/subways.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/type_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/type_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/type_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/drawable/type_1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/app_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xxxhdpi/app_start.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/story.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/app/src/main/res/raw/story.jpg -------------------------------------------------------------------------------- /app/src/main/res/transition/explode.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/multi_theme_colors.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /buildSrc/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /bin 3 | *.project 4 | *.settings/ 5 | *.classpath -------------------------------------------------------------------------------- /buildSrc/gradle_doc.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /buildSrc/res/images/project_pro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/buildSrc/res/images/project_pro.webp -------------------------------------------------------------------------------- /buildSrc/src/main/groovy/com/engineer/plugin/utils/JsonTool.groovy: -------------------------------------------------------------------------------- 1 | package com.engineer.plugin.utils 2 | 3 | class JsonTool { 4 | 5 | static void test() { 6 | print(" kotlin 可以调用 groovy 的代码吗?") 7 | // 好像不可以啊, 8 | } 9 | } -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/com/engineer/plugin/extensions/model/ApkOutputInfo.kt: -------------------------------------------------------------------------------- 1 | package com.engineer.plugin.extensions.model 2 | 3 | /** 4 | * @author rookie 5 | * @since 11-29-2019 6 | */ 7 | class ApkOutputInfo { 8 | var path = "" 9 | } -------------------------------------------------------------------------------- /buildSrc/src/main/resources/META-INF/gradle-plugins/phoenix-plugin.properties: -------------------------------------------------------------------------------- 1 | implementation-class=com.engineer.plugin.PhoenixPlugin -------------------------------------------------------------------------------- /docs/cmd.md: -------------------------------------------------------------------------------- 1 | 2 | - 应用启动时间 3 | 4 | ``` 5 | adb shell am start -W home.smart.fly.animations/home.smart.fly.animations.AppStartActivity 6 | ``` -------------------------------------------------------------------------------- /docs/script/build-scan.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ./gradlew clean build --scan -------------------------------------------------------------------------------- /docs/script/clean_app_prebuild.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "./gradlew clean :app:preBuild" 3 | ./gradlew clean :app:preBuild -------------------------------------------------------------------------------- /docs/script/fetch_and_rebase.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | git fetch origin && git rebase origin/master -------------------------------------------------------------------------------- /docs/script/i_screen_record.sh: -------------------------------------------------------------------------------- 1 | adb shell screenrecord /sdcard/$(date +%T).mp4 -------------------------------------------------------------------------------- /docs/script/launch_total_time.sh: -------------------------------------------------------------------------------- 1 | adb shell am start -W home.smart.fly.animations/home.smart.fly.animations.AppStartActivity -------------------------------------------------------------------------------- /docs/script/mac_fetch_and_rebase.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | git fetch origin && git rebase origin/master -------------------------------------------------------------------------------- /docs/uml/AsmClassVisitorFactory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/docs/uml/AsmClassVisitorFactory.png -------------------------------------------------------------------------------- /gradle/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | jsonList.json 3 | jsonObj.json 4 | infos.json -------------------------------------------------------------------------------- /gradle/app_check.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/gradle/app_check.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /imitate/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release 3 | /free 4 | .apk 5 | output.json 6 | *.project 7 | *.settings/ 8 | *.classpath -------------------------------------------------------------------------------- /imitate/src/main/assets/test.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/assets/test.aac -------------------------------------------------------------------------------- /imitate/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /imitate/src/main/java/com/engineer/imitate/algo/links/ZNode.kt: -------------------------------------------------------------------------------- 1 | package com.engineer.imitate.algo.links 2 | 3 | /** 4 | * @author rookie 5 | * @since 12-10-2019 6 | */ 7 | data class ZNode(var data: T, var next: ZNode?) 8 | -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxhdpi/book.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxhdpi/book.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxhdpi/face.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxhdpi/face.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxhdpi/star.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxhdpi/star.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxhdpi/vx_ic_gift_continue_send_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxhdpi/vx_ic_gift_continue_send_bg.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/beauty_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/beauty_1.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/beauty_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/beauty_2.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/beauty_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/beauty_3.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/beauty_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/beauty_4.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/beauty_5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/beauty_5.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/fast_furious_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/fast_furious_back.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/fast_furious_front.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/fast_furious_front.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/game_of_thrones_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/game_of_thrones_back.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/game_of_thrones_front.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/game_of_thrones_front.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/girl.jpg -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/haha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/haha.gif -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/haha_revert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/haha_revert.gif -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/kenan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/kenan.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/lc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/lc.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/lichun.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/lichun.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/mult_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/mult_back.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/mult_front.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/mult_front.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/resource_heart7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/resource_heart7.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/sand.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/sand.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/sherlok_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/sherlok_back.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/sherlok_front.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/sherlok_front.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/star_wars_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/star_wars_back.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/star_wars_front.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/star_wars_front.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable-xxxhdpi/zhihu_avatar.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable-xxxhdpi/zhihu_avatar.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/anim.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/anim.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/btn_delete.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/btn_delete.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/comic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/comic.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/container.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/container.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/good.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/good.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/img_car1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/img_car1.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/img_car2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/img_car2.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/img_car3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/img_car3.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/img_car4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/img_car4.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/img_car5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/img_car5.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/kotlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/kotlin.png -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/maomao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/maomao.jpg -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/ripple_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/self.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/self.jpg -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/timg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/timg.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/totoro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/totoro.webp -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/white_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /imitate/src/main/res/drawable/xyy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/drawable/xyy.jpeg -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/chat_bubble_left1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/chat_bubble_left1.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/chat_bubble_left2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/chat_bubble_left2.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/chatto_bg_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/chatto_bg_focused.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/chatto_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/chatto_bg_normal.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/chatto_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/chatto_bg_pressed.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/edittext1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/edittext1.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/layout_bg1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/layout_bg1.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/mini_avatar_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/mini_avatar_shadow.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/mmtitle_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/mmtitle_bg.9.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/red.jpg -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/red_circle_50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/red_circle_50x50.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/red_circle_80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/red_circle_80x80.png -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/yellow.jpg -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/yellow1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/yellow1.jpg -------------------------------------------------------------------------------- /imitate/src/main/res/layouts/ninepoint/drawable/yellow2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/layouts/ninepoint/drawable/yellow2.jpg -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /imitate/src/main/res/mipmap/kotlin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitate/src/main/res/mipmap/kotlin.jpg -------------------------------------------------------------------------------- /imitate/src/main/res/values-night/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #303030 4 | -------------------------------------------------------------------------------- /imitate/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | -------------------------------------------------------------------------------- /imitation.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/imitation.jks -------------------------------------------------------------------------------- /subs/ai/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /subs/ai/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/ai/consumer-rules.pro -------------------------------------------------------------------------------- /subs/ai/src/main/assets/dcgan.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/ai/src/main/assets/dcgan.pt -------------------------------------------------------------------------------- /subs/ai/src/main/assets/mnist.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/ai/src/main/assets/mnist.tflite -------------------------------------------------------------------------------- /subs/ai/src/main/assets/mosaic.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/ai/src/main/assets/mosaic.pt -------------------------------------------------------------------------------- /subs/compose/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /subs/compose/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/compose/consumer-rules.pro -------------------------------------------------------------------------------- /subs/compose/libs/gpupixel-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/compose/libs/gpupixel-release.aar -------------------------------------------------------------------------------- /subs/compose/src/main/java/com/engineer/compose/ui/ui/theme/Shape.kt: -------------------------------------------------------------------------------- 1 | package com.engineer.compose.ui.ui.theme -------------------------------------------------------------------------------- /subs/compose/src/main/res/drawable-xxxhdpi/profile_picture.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/compose/src/main/res/drawable-xxxhdpi/profile_picture.webp -------------------------------------------------------------------------------- /subs/compose/src/main/res/drawable-xxxhdpi/user_bot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/compose/src/main/res/drawable-xxxhdpi/user_bot.webp -------------------------------------------------------------------------------- /subs/compose/src/main/res/drawable-xxxhdpi/user_me.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/compose/src/main/res/drawable-xxxhdpi/user_me.webp -------------------------------------------------------------------------------- /subs/cpp_native/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.cxx -------------------------------------------------------------------------------- /subs/cpp_native/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/cpp_native/consumer-rules.pro -------------------------------------------------------------------------------- /subs/cpp_native/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /subs/cpp_native/src/main/assets/patch/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/cpp_native/src/main/assets/patch/diff.patch -------------------------------------------------------------------------------- /subs/cpp_native/src/main/assets/patch/lastest.txt: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /subs/cpp_native/src/main/assets/patch/old.txt: -------------------------------------------------------------------------------- 1 | 123456789 2 | -------------------------------------------------------------------------------- /subs/cpp_native/src/main/cpp/third-lib/arm64-v8a/libbspatch_tool.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/cpp_native/src/main/cpp/third-lib/arm64-v8a/libbspatch_tool.so -------------------------------------------------------------------------------- /subs/dataview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.project 3 | *.settings/ 4 | *.classpath -------------------------------------------------------------------------------- /subs/dataview/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | dateview 3 | 4 | -------------------------------------------------------------------------------- /subs/game/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /subs/game/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/consumer-rules.pro -------------------------------------------------------------------------------- /subs/game/src/main/assets/2048/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | *.map 3 | 4 | # Eclipse project files 5 | .project 6 | .settings/ 7 | 8 | # Mac OS Finder folder data 9 | .DS_Store 10 | -------------------------------------------------------------------------------- /subs/game/src/main/assets/2048/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/2048/favicon.ico -------------------------------------------------------------------------------- /subs/game/src/main/assets/2048/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/2048/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/2048/screenshots/screen01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/2048/screenshots/screen01.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/2048/style/fonts/ClearSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/2048/style/fonts/ClearSans-Bold-webfont.eot -------------------------------------------------------------------------------- /subs/game/src/main/assets/2048/style/fonts/ClearSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/2048/style/fonts/ClearSans-Bold-webfont.woff -------------------------------------------------------------------------------- /subs/game/src/main/assets/2048/style/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/2048/style/night.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/fonts/grobold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/fonts/grobold.ttf -------------------------------------------------------------------------------- /subs/game/src/main/assets/game/res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/game/res/icon.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/schulte/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/schulte/favicon.ico -------------------------------------------------------------------------------- /subs/game/src/main/assets/square/static/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/square/static/music.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/assets/square/static/qr.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/square/static/qr.jpeg -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/background.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/bgm.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/bgm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/bgm.ogg -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/block-perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/block-perfect.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/block-rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/block-rope.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/block.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/c1.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/c2.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/c3.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/c4.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/c5.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/c6.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/c7.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/c8.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/drop-perfect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/drop-perfect.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/drop-perfect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/drop-perfect.ogg -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/drop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/drop.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/drop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/drop.ogg -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/f1.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/f2.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/f3.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/f4.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/f5.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/f6.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/f7.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/game-over.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/game-over.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/game-over.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/game-over.ogg -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/heart.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/hook.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-bg.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-index-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-index-logo.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-index-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-index-start.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-index-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-index-title.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-loading-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-loading-logo.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-loading.gif -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-modal-again-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-modal-again-b.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-modal-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-modal-bg.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-modal-invite-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-modal-invite-b.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-modal-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-modal-over.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/main-share-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/main-share-icon.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/rope.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/rotate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/rotate.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/rotate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/rotate.ogg -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/score.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/tutorial-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/tutorial-arrow.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/tutorial.png -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/wenxue.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/wenxue.eot -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/wenxue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/wenxue.ttf -------------------------------------------------------------------------------- /subs/game/src/main/assets/tower/assets/wenxue.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/assets/tower/assets/wenxue.woff -------------------------------------------------------------------------------- /subs/game/src/main/java/com/bird/internal/GameStatus.kt: -------------------------------------------------------------------------------- 1 | package com.bird.internal 2 | 3 | enum class GameStatus { 4 | WAITTING, RUNNING, STOP 5 | } -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/animals_theme_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/animals_theme_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/animals_theme_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/animals_theme_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/animals_theme_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/animals_theme_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/animals_theme_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/animals_theme_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_1_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_1_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_1_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_1_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_1_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_1_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_1_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_1_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_2_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_2_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_2_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_2_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_2_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_2_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_2_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_2_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_3_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_3_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_3_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_3_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_3_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_3_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_3_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_3_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_4_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_4_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_4_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_4_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_4_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_4_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_4_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_4_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_5_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_5_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_5_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_5_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_5_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_5_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_5_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_5_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_6_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_6_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_6_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_6_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_6_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_6_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_difficulty_6_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_difficulty_6_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_google_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_google_play.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_music_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_music_off.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_music_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_music_on.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_rate.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_settings.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_start.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/button_start_lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/button_start_lights.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/emoji_theme_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/emoji_theme_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/emoji_theme_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/emoji_theme_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/emoji_theme_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/emoji_theme_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/emoji_theme_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/emoji_theme_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/monsters_theme_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/monsters_theme_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/monsters_theme_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/monsters_theme_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/monsters_theme_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/monsters_theme_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/monsters_theme_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/monsters_theme_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/qiushang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/qiushang.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/qiuzhong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/qiuzhong.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/qiuzuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/qiuzuo.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/shang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/shang.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/tooltip_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/tooltip_play.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/yuan.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-hdpi/zuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-hdpi/zuo.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_10.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_11.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_12.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_13.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_14.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_15.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_16.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_17.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_18.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_19.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_20.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_21.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_22.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_23.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_24.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_25.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_26.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_27.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_28.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_4.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_5.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_6.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_7.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_8.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/animals_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/animals_9.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/back_animals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/back_animals.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/back_horror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/back_horror.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/background.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_10.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_11.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_12.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_13.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_14.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_15.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_16.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_17.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_18.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_19.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_20.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_21.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_22.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_23.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_24.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_25.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_26.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_27.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_28.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_29.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_30.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_31.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_32.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_33.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_34.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_35.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_36.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_37.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_38.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_39.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_4.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_40.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_41.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_42.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_43.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_44.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_45.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_46.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_47.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_48.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_5.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_6.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_7.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_8.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/emoji_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/emoji_9.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_10.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_11.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_12.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_13.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_14.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_15.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_16.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_17.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_18.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_19.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_20.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_21.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_22.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_23.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_24.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_25.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_26.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_27.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_28.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_29.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_30.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_31.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_32.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_33.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_34.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_35.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_36.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_37.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_38.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_39.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_4.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_40.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_5.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_6.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_7.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_8.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/mosters_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/mosters_9.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-nodpi/time_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-nodpi/time_border.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-sw600dp-hdpi/emoji_theme_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-sw600dp-hdpi/emoji_theme_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-sw600dp-hdpi/emoji_theme_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-sw600dp-hdpi/emoji_theme_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-sw600dp-hdpi/emoji_theme_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-sw600dp-hdpi/emoji_theme_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-sw600dp-hdpi/emoji_theme_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-sw600dp-hdpi/emoji_theme_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-sw600dp-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-sw600dp-hdpi/icon.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/animals_theme_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/animals_theme_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/animals_theme_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/animals_theme_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/animals_theme_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/animals_theme_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/animals_theme_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/animals_theme_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/button_google_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/button_google_play.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/button_music_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/button_music_off.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/button_music_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/button_music_on.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/button_rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/button_rate.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/button_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/button_settings.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/button_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/button_start.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/button_start_lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/button_start_lights.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/emoji_theme_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/emoji_theme_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/emoji_theme_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/emoji_theme_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/emoji_theme_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/emoji_theme_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/emoji_theme_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/emoji_theme_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/monsters_theme_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/monsters_theme_star_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/monsters_theme_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/monsters_theme_star_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/monsters_theme_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/monsters_theme_star_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/monsters_theme_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/monsters_theme_star_3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/title.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xhdpi/tooltip_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xhdpi/tooltip_play.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xxhdpi/button_google_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xxhdpi/button_google_play.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xxhdpi/button_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xxhdpi/button_settings.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xxhdpi/button_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xxhdpi/button_start.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xxhdpi/tooltip_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xxhdpi/tooltip_play.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable-xxhdpi/wallpaper.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable-xxhdpi/wallpaper.webp -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/button_again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/button_again.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/button_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/button_back.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/level_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/level_complete.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/level_complete_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/level_complete_star.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/settings_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/settings_popup.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/tile.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/tile.9.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/tile_back_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/tile_back_star.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/time_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/time_bar.png -------------------------------------------------------------------------------- /subs/game/src/main/res/drawable/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/drawable/title.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/bg1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/bird_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/bird_0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/bird_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/bird_1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/bird_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/bird_2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/d1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/d2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/floor_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/floor_bg.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/floor_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/floor_bg2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/g1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/g1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/g2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/g2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n0.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n1.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n2.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n3.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n4.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n5.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n6.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n7.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n8.png -------------------------------------------------------------------------------- /subs/game/src/main/res/layouts/bird/drawable-hdpi/n9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/layouts/bird/drawable-hdpi/n9.png -------------------------------------------------------------------------------- /subs/game/src/main/res/raw/background_music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/raw/background_music.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/res/raw/correct_answer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/raw/correct_answer.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/res/raw/star.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REBOOTERS/AndroidAnimationExercise/ef30326dedd7ab8ef135964b7dcdda8d732a52df/subs/game/src/main/res/raw/star.mp3 -------------------------------------------------------------------------------- /subs/game/src/main/res/values-sw600dp/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | sw600dp 5 | 6 | 7 | -------------------------------------------------------------------------------- /subs/game/src/main/res/values-sw720dp/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | sw720dp 5 | 6 | 7 | -------------------------------------------------------------------------------- /subs/game/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /subs/game/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /subs/gif-revert/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.project 3 | *.settings/ 4 | *.classpath -------------------------------------------------------------------------------- /subs/gif-revert/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /subs/gif-revert/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | gif_revert 3 | 4 | -------------------------------------------------------------------------------- /subs/skeleton/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.project 3 | *.settings/ 4 | *.classpath -------------------------------------------------------------------------------- /subs/skeleton/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /subs/skeleton/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | skeleton 3 | 4 | -------------------------------------------------------------------------------- /subs/skeleton/src/main/res/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | #16000000 3 | #24000000 4 | 5 | --------------------------------------------------------------------------------