{"id":13396357,"url":"https://github.com/andkulikov/transitions-everywhere","last_synced_at":"2026-04-07T04:32:10.177Z","repository":{"id":21913482,"uuid":"25237608","full_name":"andkulikov/Transitions-Everywhere","owner":"andkulikov","description":" Set of extra Transitions on top of Jetpack Transitions Library","archived":false,"fork":false,"pushed_at":"2020-04-08T09:39:05.000Z","size":1247,"stargazers_count":4830,"open_issues_count":7,"forks_count":489,"subscribers_count":141,"default_branch":"master","last_synced_at":"2024-05-03T16:59:03.473Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andkulikov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-15T03:37:03.000Z","updated_at":"2024-04-23T09:00:55.000Z","dependencies_parsed_at":"2022-09-19T16:02:10.684Z","dependency_job_id":null,"html_url":"https://github.com/andkulikov/Transitions-Everywhere","commit_stats":null,"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andkulikov%2FTransitions-Everywhere","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andkulikov%2FTransitions-Everywhere/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andkulikov%2FTransitions-Everywhere/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andkulikov%2FTransitions-Everywhere/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andkulikov","download_url":"https://codeload.github.com/andkulikov/Transitions-Everywhere/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243499781,"owners_count":20300688,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-30T18:00:47.155Z","updated_at":"2025-12-17T04:21:12.848Z","avatar_url":"https://github.com/andkulikov.png","language":"Java","funding_links":[],"categories":["Index `(light-weight pages)`","Index","Libs","UI","\u003ca name=\"Transition\"\u003eTransition\u003c/a\u003e"],"sub_categories":["\u003cA NAME=\"Animations\"\u003e\u003c/A\u003eAnimations","Personal Blog"],"readme":"Transitions Everywhere\n============\nSet of extra Transitions on top of [AndroidX Transitions Library][1].\n\nAbout\n============\n[Article about transitions and library][2]\u003cbr\u003e\nOriginally this library was a full backport of Android Platform's Transitions API.\u003cbr\u003e\nThen all the bug fixes from the library were ported into AndroidX Transitions (previously Support library).\u003cbr\u003e\nNow this lib has minSdk version \u003cb\u003e14\u003c/b\u003e (Android 4.0 ICS) and consist of some transitions which are not a part of the official set:\n1) Internal Transitions that was marked as @hide in the platform: \u003cb\u003eRecolor\u003c/b\u003e, \u003cb\u003eRotate\u003c/b\u003e, \u003cb\u003eChangeText\u003c/b\u003e and \u003cb\u003eCrossfade\u003c/b\u003e.\n2) Two extra transitions: \u003cb\u003eScale\u003c/b\u003e and \u003cb\u003eTranslation\u003c/b\u003e.\u003cbr\u003e\u003cbr\u003e\n\nQuick start\n============\n\nThis version should be used if you are specifying 29 (Q) as a `targetSdkVersion`:\n\n```groovy\ndependencies {\n    implementation \"com.andkulikov:transitionseverywhere:2.1.0\"\n}\n```\nOtherwise, if you specify 29 as `targetSdkVersion` some of the transitions will not work properly. Instead of the reflection calls this version uses the new public methods added in API Level 29. It is based on \u003cb\u003eandroidx.transition:transition:1.2.0\u003c/b\u003e.\n\nPrevious version if you are not yet on 29 (Q) SDK:\n\n```groovy\ndependencies {\n    implementation \"com.andkulikov:transitionseverywhere:2.0.0\"\n}\n```\nThis version is based on \u003cb\u003eandroidx.transition:transition:1.1.0\u003c/b\u003e.\n\nMigration from 1.x guide\n============\n1) Migrate to \u003cb\u003eAndroidX\u003c/b\u003e! Support libraries are not updating anymore, to get all the bug fixes you have to use AndroidX transitions.\n2) Replace imports from \u003cb\u003ecom.transitionseverywhere.\u003c/b\u003e to \u003cb\u003eandroidx.transition.\u003c/b\u003e for all the classes which are a part of the AndroidX lib.\n3) If you were using \u003cb\u003eTransition.TransitionListenerAdapter\u003c/b\u003e class use \u003cb\u003eTransitionListenerAdapter\u003c/b\u003e now.\n4) Instead of \u003cb\u003eTransitionManager.setTransitionName()\u003c/b\u003e use \u003cb\u003eViewCompat.setTransitionName()\u003c/b\u003e.\n5) If you were inflating transitions via xml move your files from \u003cb\u003eanim\u003c/b\u003e folder to \u003cb\u003etransition\u003c/b\u003e and use \u003cb\u003eandroid:\u003c/b\u003e namespace instead of \u003cb\u003eapp:\u003c/b\u003e\n6) Some setters in AndroidX transitions are not following the builder pattern, please rewrite this usages with introducing a helper variable if you encounter the issue.\n7) Instead of \u003cb\u003eTranslationTransition\u003c/b\u003e use \u003cb\u003eTranslation\u003c/b\u003e.\n\nArticles about the version 1.x\n============\n[Article about transitions and library][2]\u003cbr\u003e\n[Russian version][3]\u003cbr\u003e\nChinese: [version 1][5], [version 2][6]\u003cbr\u003e\n\n[Changelog for version 1.x][4]\n============\n\n[1]: https://developer.android.com/reference/androidx/transition/package-summary\n[2]: https://medium.com/@andkulikov/animate-all-the-things-transitions-in-android-914af5477d50\n[3]: http://habrahabr.ru/post/243363/\n[4]: https://github.com/andkulikov/Transitions-Everywhere/blob/master/library(1.x)/CHANGELOG.md\n[5]: https://yanlu.me/animate-all-the-things-transitions-in-android/\n[6]: http://www.jianshu.com/p/98f2ec280945\n[7]: https://medium.com/@andkulikov/support-library-for-transitions-overview-and-comparison-c41be713cf8c\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandkulikov%2Ftransitions-everywhere","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandkulikov%2Ftransitions-everywhere","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandkulikov%2Ftransitions-everywhere/lists"}