Android アプリケーションを作成しましたが、それをモジュールとして他のアプリケーションに追加したいと考えています。次を使用してアプリケーションをインポートしようとしました:ファイル->新規->モジュールのインポート->(インポートするアプリケーションを参照)->(モジュール名の変更)->完了
アプリケーションをインポートした後、次の変更が行われました。
設定.gradle
import ':app'
import ':ocr'
build.gradle(モジュール:アプリ)
implementation project(path: ':ocr')
そして、モジュールがプロジェクトに追加されました。
しかし、プロジェクトを同期しようとすると、次のエラーが表示されます。
ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve project :ocr.
ERROR: Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve project :ocr.
ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve project :ocr.
ERROR: Unable to resolve dependency for ':app@release/compileClasspath': Could not resolve project :ocr.
ERROR: Unable to resolve dependency for ':app@releaseUnitTest/compileClasspath': Could not resolve project :ocr.
問題をすべて検索しようとしましたが、修正できませんでした。問題がどこにあるのか、またはどのように修正できるのか誰にもわかりますか?