{"id":17767692,"url":"https://github.com/zhuinden/simple-stack-extensions","last_synced_at":"2025-04-21T19:31:58.232Z","repository":{"id":83993271,"uuid":"269079017","full_name":"Zhuinden/simple-stack-extensions","owner":"Zhuinden","description":"Extensions for the simple-stack library.","archived":false,"fork":false,"pushed_at":"2024-05-06T01:00:47.000Z","size":368,"stargazers_count":7,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-01T15:41:04.358Z","etag":null,"topics":["backstack","fragments","navigation","simple-stack","single-activity-pattern"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/Zhuinden.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-03T12:13:10.000Z","updated_at":"2024-05-06T01:00:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"87671c8a-721c-4a3e-862c-c66e760ad651","html_url":"https://github.com/Zhuinden/simple-stack-extensions","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zhuinden%2Fsimple-stack-extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zhuinden%2Fsimple-stack-extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zhuinden%2Fsimple-stack-extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zhuinden%2Fsimple-stack-extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Zhuinden","download_url":"https://codeload.github.com/Zhuinden/simple-stack-extensions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250119964,"owners_count":21378120,"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":["backstack","fragments","navigation","simple-stack","single-activity-pattern"],"created_at":"2024-10-26T20:50:28.698Z","updated_at":"2025-04-21T19:31:57.909Z","avatar_url":"https://github.com/Zhuinden.png","language":"Kotlin","readme":"# Simple Stack Extensions\n\nHelpers and additional default behaviors for Simple-Stack.\n\n\n## Using Simple Stack Extensions\n\nIn order to use Simple Stack Extensions, you need to add `jitpack` to your project root `build.gradle.kts`\n(or `build.gradle`):\n\n``` kotlin\n// build.gradle.kts\nallprojects {\n    repositories {\n        // ...\n        maven { setUrl(\"https://jitpack.io\") }\n    }\n    // ...\n}\n```\n\nor\n\n``` groovy\n// build.gradle\nallprojects {\n    repositories {\n        // ...\n        maven { url \"https://jitpack.io\" }\n    }\n    // ...\n}\n```\n\nIn newer projects, you need to also update the `settings.gradle` file's `dependencyResolutionManagement` block:\n\n```\ndependencyResolutionManagement {\n    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)\n    repositories {\n        google()\n        mavenCentral()\n        maven { url 'https://jitpack.io' }  // \u003c--\n        jcenter() // Warning: this repository is going to shut down soon\n    }\n}\n```\n\n\nand then, add the dependency to your module's `build.gradle.kts` (or `build.gradle`):\n\n```kotlin\n// build.gradle.kts\nimplementation(\"com.github.Zhuinden:simple-stack-extensions:2.3.4\")\n\n// build.gradle\nimplementation 'com.github.Zhuinden:simple-stack-extensions:2.3.4'\n```\n\nFor more fine-grained module selection, you can use:\n\n``` kotlin\n// build.gradle.kts\nimplementation(\"com.github.Zhuinden.simple-stack-extensions:core-ktx:2.3.4\")\nimplementation(\"com.github.Zhuinden.simple-stack-extensions:fragments:2.3.4\")\nimplementation(\"com.github.Zhuinden.simple-stack-extensions:fragments-ktx:2.3.4\")\nimplementation(\"com.github.Zhuinden.simple-stack-extensions:lifecycle-ktx:2.3.4\")\nimplementation(\"com.github.Zhuinden.simple-stack-extensions:navigator-ktx:2.3.4\")\nimplementation(\"com.github.Zhuinden.simple-stack-extensions:services:2.3.4\")\nimplementation(\"com.github.Zhuinden.simple-stack-extensions:services-ktx:2.3.4\")\n```\n\nor\n\n``` groovy\n// build.gradle\nimplementation 'com.github.Zhuinden.simple-stack-extensions:core-ktx:2.3.4'\nimplementation 'com.github.Zhuinden.simple-stack-extensions:fragments:2.3.4'\nimplementation 'com.github.Zhuinden.simple-stack-extensions:fragments-ktx:2.3.4'\nimplementation 'com.github.Zhuinden.simple-stack-extensions:lifecycle-ktx:2.3.4'\nimplementation 'com.github.Zhuinden.simple-stack-extensions:navigator-ktx:2.3.4'\nimplementation 'com.github.Zhuinden.simple-stack-extensions:services:2.3.4'\nimplementation 'com.github.Zhuinden.simple-stack-extensions:services-ktx:2.3.4'\n```\n\n## What does it do?\n\nProvides defaults for fragment navigation and screen-level scoping.\n\nCheck out the `example` app, based on the FTUE sample from Tutorial Step 9.\n\n## License\n\n    Copyright 2017-2023 Gabor Varadi\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhuinden%2Fsimple-stack-extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzhuinden%2Fsimple-stack-extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhuinden%2Fsimple-stack-extensions/lists"}