Android manual installation instructions are incorrect
See original GitHub issueI’m not sure if the README.md instructions are wrong or if my project is different for some reason, but In building android, I was getting the following failure message:
* What went wrong:
A problem occurred evaluating project ':app'.
> Project with path ':@react-native-community_datetimepicker' could not be found in project ':app'.
I was able to fix this and get a successful build by changing settings.gradle
to:
include ':@react-native-community_datetimepicker'
project(':@react-native-community_datetimepicker').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/datetimepicker/android')
and build.gradle
to:
implementation project(':@react-native-community_datetimepicker')
Is this just me? I can open a PR if you’d like…
Issue Analytics
- State:
- Created 4 years ago
- Reactions:9
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Android manual installation instructions are incorrect #27
I'm not sure if the README.md instructions are wrong or if my project is different for some reason, but In building android, I...
Read more >Known issues with Android Studio and Android Gradle Plugin
If Studio doesn't start after an upgrade, the problem may be due to an invalid Android Studio configuration imported from a previous version...
Read more >Check & update your Android version
See which Android version you have · Open your phone's Settings app. · Near the bottom, tap About phone and then Android version....
Read more >Set up email in the Outlook for Android app
Install the Outlook for Android app from the Google Play Store and then open it. Tap Get Started if this is your first...
Read more >Duo Mobile on Android - Guide to Two-Factor Authentication
To see which version of Duo Mobile is installed on your device, go to the Android Settings menu, tap Apps, then scroll down...
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
same to me, and do not add packages in MainApplication.java
The PR with the fix was merged, closing.