Android linking gone
See original GitHub issueThe command react-native link react-native-interactable
only links iOS :
rm -fr node_modules
yarn add react-native-interactable
react-native link react-native-interactable
with version 0.1.1
Issue Analytics
- State:
- Created 6 years ago
- Reactions:8
- Comments:10 (1 by maintainers)
Top Results From Across the Web
What is the Android resource linking failed error? - Educative.io
While developing an Android application in Android Studio, you may come across some errors. One such error is the Android resource linking failed...
Read more >Link sharing gone - Android Forums at AndroidCentral.com
Google link share, it is all over that it's been discontinued. I'm hoping mustang knows something and it's still there. If not, iMessage...
Read more >gradle - How to fix "Android resource linking failed" error in ...
Looks like there is missing styles in your project. ... I simply updated the version of material view in gradle.build and the error...
Read more >Android 12 - Link Sharing gone - Samsung Members
Unfortunately, the option to do this since upgrading to Android 12 is gone. Private share just isn't the same.
Read more >[Guide] How to fix horrible handling of links on Android 12
Go to Default apps - Opening links, and disable "Open supported links" for each and every app that has "verified links". [Optional] Adjust...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
How I solved the react native linking issue. Ensure the following:
In MainApplication.java
import com.wix.interactable.Interactable;
&& @Override protected List<ReactPackage> getPackages() { return Arrays.<ReactPackage>asList(new Interactable(),
…build.gradle (linking on Android doesn’t add this by default). Add the dependency: dependencies {
compile project(path: ':react-native-interactable') ...
setting.gradle (in top level android folder) (the default path when using link isn’t correct - need to change it to lib/android)
include ':react-native-interactable'
project(':react-native-interactable').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-interactable/lib/android')
Hello, it seems like the library still has issues with linking with Android. Any solutions?