Cannot build on Android
See original GitHub issueError:
node_modules/react-native-oauth/android/src/main/java/io/fullstack/oauth/OAuthManagerFragmentController.java:32: error: cannot find symbol import com.github.scribejava.core.exceptions.OAuthConnectionException; ^ symbol: class OAuthConnectionException location: package com.github.scribejava.core.exceptions /Users/alfredlau/Work/bite/node_modules/react-native-oauth/android/src/main/java/io/fullstack/oauth/OAuthManagerFragmentController.java:281: error: cannot find symbol } catch (OAuthConnectionException ex) {
I’m unable to build my app. Looking into scribejava seems to suggest that exceptions/OAuthConnectionException no longer exists, though I’m not really fluent in Java.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Cannot build Android from Android Studio #17853 - GitHub
I was trying to build the app from android studio to check the logcat but while syncing to project with Gradle. The operation...
Read more >Bug - Can't build for Android - Unity Forum
Latest Hub 3.2.0 in combination with Unity 2021.3.6 can't build for Android because there is a missing Tools folder inside Editor\Data\ ...
Read more >Known issues with Android Studio and Android Gradle Plugin
Known issues with the Android Gradle Plugin · Not all dynamic-feature library dependencies are lint checked · Signing file named with carriage return...
Read more >Cannot build or run in android studio - Stack Overflow
I was using android studio 4.1.1, I updated to the 4.1.3 version and after that I had some problems. Gradle sync never finished....
Read more >Cannot build an Android app with Xamarin - Microsoft Q&A
Cannot build an Android app with Xamarin. Hi, here is what error is writen when building the app : 1>------ Début de la...
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 FreeTop 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
Top GitHub Comments
Yep, the next
npm
release will fix this bug. (Working on #42 currently before I release a new patch version)Just came across the same issue.
scribejava 4.0 has breaking changes, fixed (for now) by limiting the dependency to
compile 'com.github.scribejava:scribejava-apis:3.+'
inbuild.gradle
Seems like that’s already done on
master