{"id":19253714,"url":"https://github.com/imgly/imgly-react-native","last_synced_at":"2025-04-21T14:32:14.994Z","repository":{"id":37107791,"uuid":"458339134","full_name":"imgly/imgly-react-native","owner":"imgly","description":"React Native base module for PhotoEditor and VideoEditor SDK","archived":false,"fork":false,"pushed_at":"2025-01-06T13:22:53.000Z","size":1528,"stargazers_count":3,"open_issues_count":9,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-01T13:51:15.078Z","etag":null,"topics":["android","image","ios","react-native","video"],"latest_commit_sha":null,"homepage":"https://www.img.ly","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imgly.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2022-02-11T21:01:59.000Z","updated_at":"2025-01-06T13:22:58.000Z","dependencies_parsed_at":"2023-11-30T22:39:34.138Z","dependency_job_id":null,"html_url":"https://github.com/imgly/imgly-react-native","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgly%2Fimgly-react-native","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgly%2Fimgly-react-native/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgly%2Fimgly-react-native/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imgly%2Fimgly-react-native/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imgly","download_url":"https://codeload.github.com/imgly/imgly-react-native/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250070318,"owners_count":21369856,"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":["android","image","ios","react-native","video"],"created_at":"2024-11-09T18:32:51.524Z","updated_at":"2025-04-21T14:32:14.185Z","avatar_url":"https://github.com/imgly.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://img.ly/?utm_campaign=Projects\u0026utm_source=Github\u0026utm_medium=IMGLY\u0026utm_content=React-Native\"\"\u003e\n    \u003cimg src=\"https://uploads-ssl.webflow.com/5f7574bdf1696c4b4bf518ea/5f75b58e3a7013e64675400c_IMG_LY.svg\" alt=\"IMG.LY Logo\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://npmjs.org/package/react-native-imglysdk\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/react-native-imglysdk.svg\" alt=\"NPM version\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://npmjs.org/package/react-native-imglysdk\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/platforms-android%20|%20ios-lightgrey.svg\" alt=\"Platform support\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"http://twitter.com/imgly\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/twitter-@imgly-blue.svg?style=flat\" alt=\"Twitter\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# React Native plugin for IMG.LY SDK\n\nA module containing the expo config plugin for the use with [`react-native-photoeditorsdk`](https://www.npmjs.com/package/react-native-photoeditorsdk) and [`react-native-videoeditorsdk`](https://www.npmjs.com/package/react-native-videoeditorsdk).\n\n## Usage\n\n**You only need to integrate this package once regardless of whether you are integrating `react-native-photoeditorsdk`, `react-native-videoeditorsdk` or both.**\n\nIn order to use this module with the Expo CLI you can make use of our integrated Expo config plugin:\n\n1. Add our module to your Expo application:\n\n   ```sh\n   expo install react-native-imglysdk\n   ```\n\n2. Inside your app's `app.json` or `app.config.js` add our config plugin:\n\n   ```json\n   {\n     \"plugins\": [\"react-native-imglysdk\"]\n   }\n   ```\n\n   If needed, you can also use a specific version of our native library for Android as well as define explicitly the included modules. By default, all modules for both PhotoEditor SDK and VideoEditor SDK are included. Furthermore, you can configure the `buildToolsVersion`, `minSdkVersion`, `compileSdkVersion`, `targetSdkVersion`, and `kotlinGradlePluginVersion`.\n\n   ```json\n   {\n     \"plugins\": [\n       [\n         \"react-native-imglysdk\",\n         {\n           \"android\": {\n             \"version\": \"10.4.1\",\n             \"modules\": [\n               \"ui:core\",\n               \"ui:transform\",\n               \"ui:filter\",\n               \"assets:filter-basic\"\n             ],\n             \"buildToolsVersion\": \"31.0.0\",\n             \"minSdkVersion\": \"21\",\n             \"compileSdkVersion\": \"31\",\n             \"targetSdkVersion\": \"30\",\n             \"kotlinGradlePluginVersion\": \"1.5.32\"\n           }\n         }\n       ]\n     ]\n   }\n   ```\n\n   For further information on the available modules, please refer to step 4 of the respective React Native CLI guide for the [`react-native-photoeditorsdk`](https://www.github.com/imgly/pesdk-react-native/#android) and [`react-native-videoeditorsdk`](https://www.github.com/imgly/vesdk-react-native/#android) module.\n\n3. The changes will be applied on `expo prebuild` or during the prebuild phase of `eas build`.\n\nFor further information on how to integrate Expo config plugins please also refer to the official [docs](https://docs.expo.dev/guides/config-plugins/#using-a-plugin-in-your-app).\n\n## License Terms\n\nMake sure you have a [commercial license](https://img.ly/pricing?utm_campaign=Projects\u0026utm_source=Github\u0026utm_medium=IMGLY\u0026utm_content=React-Native) for PhotoEditor SDK and/or VideoEditor SDK before releasing your app.\nA commercial license is required for any app or service that has any form of monetization: This includes free apps with in-app purchases or ad supported applications. Please contact us if you want to purchase the commercial license.\n\n## Support and License\n\nUse our [service desk](https://support.img.ly) for bug reports or support requests. To request a commercial license, please use the [license request form](https://img.ly/pricing?utm_campaign=Projects\u0026utm_source=Github\u0026utm_medium=IMGLY\u0026utm_content=React-Native) on our website.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimgly%2Fimgly-react-native","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimgly%2Fimgly-react-native","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimgly%2Fimgly-react-native/lists"}