react-native-material-design icon indicating copy to clipboard operation
react-native-material-design copied to clipboard

Error in demo app.

Open innovationsbg opened this issue 7 years ago • 2 comments

I get this error after react-native run-android:

required: Activity,boolean found: MainActivity reason: actual and formal argument lists differ in length 1 error :app:compileDebugJavaWithJavac FAILED

FAILURE: Build failed with an exception.

What went wrong: Execution failed for task ':app:compileDebugJavaWithJavac'. Compilation failed; see the compiler error output for details.

innovationsbg avatar Jan 24 '18 17:01 innovationsbg

I'm getting same error. Commenting so I'll be updated on fixes.

andyhappy1 avatar Jan 26 '18 16:01 andyhappy1

As an android developer, I get this error sometimes. What this usually means is that my android build tools version or some of my dependencies are outdated. You can update the build tools version by going into the android/app/build.gradle file and changing these two lines of code:

compileSdkVersion 26
buildToolsVerion '26.0.2'

The versions in your app may differ.

As of today, the latest versions are 26 and '27.0.3' respectively, so replace the two lines with:

compileSdkVersion 26
buildToolsVerion '27.0.3'

If this doesn't fix it, try updating your dependencies with npm update or whichever package manager you use.

EDIT: Also, there might also be outdated dependencies inside the build.gradle file. It should look like this:

...
dependencies {
   compile "somedependency:1.2.0"
}

Where somedependency is the name of the dependency and the number following the colon is its version. Try googling those dependencies to find their latest versions and replace the current ones with them. Just back up your build.gradle before this, just in case.

Nikaoto avatar Jan 27 '18 22:01 Nikaoto