LoginSignup
1
0

More than 1 year has passed since last update.

Gradleを更新した時のCould not get unknown property 'compile'を直す

Posted at

エラー

React nativeのプロジェクトでGradle/ReactNativeを更新した時にこんなエラーが出たりする.

* What went wrong:
A problem occurred evaluating project ':app'.
> Could not get unknown property 'compile' for configuration container of type org.gradle.api.internal.artifacts.configurations.DefaultConfigurationContainer.

解決

app/build.gradle
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

app/build.gradle
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.implementation
    into 'libs'
}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0