I want to integrate the tensorflow lite example in my project. What I already did:
- Renaming
apptolib_tensorFlow(you can not have 2 'app's) - Make the
lib_tensorFlowModule to a library by changing toapply plugin: 'com.android.library' - deleting the
applicationId - Importing the Project as Gradle Module
- Adding
implementation project(":lib_tensorFlow")to my apps dependencies - Searching for a offline mode in Gradle settings (There is no such option)
- Invalidate Cache & restart
- Googling
The Error I get when gradle builds the project:
Unable to resolve dependency for ':app@regularDebugAndroidTest/compileClasspath': Could not resolve project :lib_tensorFlow.
Show Details
Affected Modules: app
Unable to resolve dependency for ':app@regularDebugUnitTest/compileClasspath': Could not resolve project :lib_tensorFlow.
Show Details
Affected Modules: app
Unable to resolve dependency for ':app@regularDebug/compileClasspath': Could not resolve project :lib_tensorFlow.
Show Details
Affected Modules: app
Please don't mark this as duplicate. I have searched in every possible Thread. Any help would be appreciated!