ikmzkro / React-Native-Issues

⚠️React Native Issues⚠️
0 stars 0 forks source link

Could not find implementation class 'com.facebook.react.ReactPlugin' for plugin 'com.facebook.react' specified in jar:file:/Users/ikmz/.gradle/caches/jars-9/aaaaa/react-native-gradle-plugin.jar!/META-INF/gradle-plugins/com.facebook.react.properties. #11

Closed ikmzkro closed 1 year ago

ikmzkro commented 1 year ago

React NativeのGradleプラグインが見つからないために発生しています。解決するためには、プロジェクトの build.gradle ファイルに適切な設定を追加する必要があります。具体的には、build.gradle ファイルの dependencies セクションに、React NativeのGradleプラグインの依存関係を追加する必要

ikmzkro commented 1 year ago

Android・build.gradle

dependencies { // 既存の依存関係の記述

classpath 'com.facebook.react:react-native:+' // 追加する行

}

ikmzkro commented 1 year ago

やはりコッち dependencies { implementation("com.facebook.react:react-android") implementation("com.facebook.react:react-native") }

尚且つキャッシュ削除

ikmzkro commented 1 year ago

結局はnode_modulesとbundle削除していけた https://github.com/facebook/react-native/issues/35900