question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Android linking gone

See original GitHub issue

The 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:closed
  • Created 6 years ago
  • Reactions:8
  • Comments:10 (1 by maintainers)

github_iconTop GitHub Comments

28reactions
friendlymaverickcommented, Aug 18, 2017

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')

0reactions
DeveloperTheExplorercommented, Jun 28, 2021

Hello, it seems like the library still has issues with linking with Android. Any solutions?

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found