https://github.com/rhdeck/react-native-fix-android-links
React Native Plugin to fix symbolic links for native kotlin development
https://github.com/rhdeck/react-native-fix-android-links
Last synced: about 2 months ago
JSON representation
React Native Plugin to fix symbolic links for native kotlin development
- Host: GitHub
- URL: https://github.com/rhdeck/react-native-fix-android-links
- Owner: rhdeck
- License: mit
- Created: 2018-09-06T21:12:07.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-15T17:29:35.000Z (almost 8 years ago)
- Last Synced: 2026-01-01T23:19:32.832Z (6 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-native-fix-android-links
Plugin to enable easier development of Kotlin-based libraries.
If you try to develop Kotlin libraries for React-Native, you will discover that if the library project definition in `settings.gradle` traverses a symbolic link, the editor will not do any friendly highlighting or autocomplete for you. This package fixes that.
# Installation
```
yarn add react-native-fix-android-links
```
# Usage
```bash
cd /path/to/my/RN/project
yarn add link:/path/to/my/kotlin/library
yarn add react-native-android-studio
react-native link
react-native studio
# Oh noes - no autocomplete in your library
yarn add react-native-fix-android-links
react-native fix-android-links
react-native studio
# and we're off!
```