{"id":36420892,"url":"https://github.com/zeoflow/anidero","last_synced_at":"2026-01-11T17:34:56.780Z","repository":{"id":52675591,"uuid":"300737235","full_name":"zeoflow/anidero","owner":"zeoflow","description":"Render After Effects animations in JSON format on Android","archived":false,"fork":false,"pushed_at":"2021-04-21T12:42:23.000Z","size":346,"stargazers_count":17,"open_issues_count":3,"forks_count":11,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-05-20T20:07:19.997Z","etag":null,"topics":["ae-android","android-animation","android-library","anidero","effects-animations","json-render","zeoflow","zeoflow-library"],"latest_commit_sha":null,"homepage":null,"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/zeoflow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["TeodorHMX1"]}},"created_at":"2020-10-02T21:12:52.000Z","updated_at":"2023-08-04T08:18:46.000Z","dependencies_parsed_at":"2022-08-20T14:20:22.311Z","dependency_job_id":null,"html_url":"https://github.com/zeoflow/anidero","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/zeoflow/anidero","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fanidero","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fanidero/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fanidero/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fanidero/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeoflow","download_url":"https://codeload.github.com/zeoflow/anidero/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fanidero/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28315879,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["ae-android","android-animation","android-library","anidero","effects-animations","json-render","zeoflow","zeoflow-library"],"created_at":"2026-01-11T17:34:56.029Z","updated_at":"2026-01-11T17:34:56.773Z","avatar_url":"https://github.com/zeoflow.png","language":"Java","funding_links":["https://github.com/sponsors/TeodorHMX1"],"categories":[],"sub_categories":[],"readme":"# Anidero for Android\n\n## Intro\nAn Android Library that renders After Effects animations\nin JSON format\n\n## Getting Started\nFor information on how to get started with Anidero,\ntake a look at our [Getting Started](docs/getting-started.md) guide.\n\n## Submitting Bugs or Feature Requests\nBugs or feature requests should be submitted at our [GitHub Issues section](https://github.com/zeoflow/anidero/issues).\n\n## How does it work?\n### 1. Depend on our library\n\nAnidero for Android is available through Google's Maven Repository.\nTo use it:\n\n1.  Open the `build.gradle` file for your application.\n2.  Make sure that the `repositories` section includes Google's Maven Repository\n    `google()`. For example:\n\n    ```groovy\n      allprojects {\n        repositories {\n          google()\n          jcenter()\n        }\n      }\n    ```\n\n3.  Add the library to the `dependencies` section:\n\n    ```groovy\n      dependencies {\n        // ...\n        implementation 'com.zeoflow:anidero:\u003cversion\u003e'\n        // ...\n      }\n    ```\n\n### 2. Add a Anidero component to your app\n`activity_main.xml`\n\n```xml\n    \u003c!--\n        ...\n    --\u003e\n    \u003ccom.zeoflow.anidero.AnideroView\n        android:id=\"@+id/zAnideroView\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"200dp\"\n        android:layout_centerInParent=\"true\"\n        app:anidero_loop=\"true\" /\u003e\n    \u003c!--\n        ...\n    --\u003e\n```\n\n### 3. Activity/Fragment Class\n`MainActivity.java`\n\n```java\npublic class MainActivity extends BindAppActivity\u003cActivityMainBinding, MainViewBinding\u003e\n{\n    //..\n    private AnideroView zAnideroView;\n    //..\n    @Override\n    protected void onCreate(@Nullable Bundle savedInstanceState)\n    {\n        //..\n        zAnideroView = findViewById(R.id.zAnideroView);\n        //..\n        zAnideroView.setAnimation(\"animation.json\");\n        zAnideroView.playAnimation();\n        zAnideroView.setSpeed(1f);\n        //..\n    }\n    //..\n}\n```\n###### `animation.json` is read from the \\assets folder\n\n## License\n    Copyright 2020 ZeoFlow\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\n## 🏆 Contributors 🏆\n\n\u003c!-- ZEOBOT-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003cp float=\"left\"\u003e\n\u003ca href=\"docs/contributors.md#pushpin-teodor-g-teodorhmx1\"\u003e\u003cimg width=\"100\" src=\"https://avatars0.githubusercontent.com/u/22307006?v=4\" hspace=5 title='Teodor G. (@TeodorHMX1) - click for details about the contributions'\u003e\u003c/a\u003e\u003ca href=\"docs/contributors.md#pushpin-teogor-teogor\"\u003e\u003cimg width=\"100\" src=\"https://avatars2.githubusercontent.com/u/70129978?v=4\" hspace=5 title='Teogor (@teogor) - click for details about the contributions'\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003c!-- markdownlint-enable --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\u003c!-- ZEOBOT-LIST:END --\u003e\n\u003c!-- ZEOBOT-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003c!-- markdownlint-enable --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\u003c!-- ZEOBOT-LIST:END --\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeoflow%2Fanidero","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeoflow%2Fanidero","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeoflow%2Fanidero/lists"}