We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am building my project with near-latest build tools. Adding this project to my app causes the following error::
It appears you need to update the build tools of the project in order for people who are updating tooling to continue using this lib.
The text was updated successfully, but these errors were encountered:
work around for now is to add the sources to my project as source directories:
apply from: "../../node_modules/react-native-config/android/dotenv.gradle" android { sourceSets { main.java.srcDirs += '../../node_modules/react-native-config/android/src/main/java' } }
Sorry, something went wrong.
This change do it for me
diff --git a/android/build.gradle b/android/build.gradle index 347a512..a5a8ffd 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.3' + classpath 'com.android.tools.build:gradle:2.3.3' <-- do some error classpath 'de.undercouch:gradle-download-task:3.1.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files
android studio did automaticaly gradle update
revert to old version 2.2.3 solve it!
Current PR for this: #248.
No branches or pull requests
I am building my project with near-latest build tools. Adding this project to my app causes the following error::

It appears you need to update the build tools of the project in order for people who are updating tooling to continue using this lib.
The text was updated successfully, but these errors were encountered: