You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 13, 2021. It is now read-only.
During a build of the files generated by PWABuilder on Android Studio 3, there are numerous errors such as
Unable to resolve dependency for ':@debugAndroidTest/compileClasspath': Could not resolve project :CordovaLib.
Could not resolve project :CordovaLib.
Required by:
project :
Project : declares a dependency from configuration 'debugCompile' to configuration 'debug' which is not declared in the descriptor for project :CordovaLib.
This is caused by the default lines in Android build.gradle debugCompile project(path: "CordovaLib", configuration: "debug") releaseCompile project(path: "CordovaLib", configuration: "release")
lines 242 and 243.
To resolve, comment these out and replace with compile project(':CordovaLib')
During a build of the files generated by PWABuilder on Android Studio 3, there are numerous errors such as
This is caused by the default lines in Android build.gradle
debugCompile project(path: "CordovaLib", configuration: "debug")
releaseCompile project(path: "CordovaLib", configuration: "release")
lines 242 and 243.
To resolve, comment these out and replace with
compile project(':CordovaLib')
Solution found via
https://stackoverflow.com/questions/47023068/unable-to-run-ionic-app-after-update-to-android-studio-3-0
Can the build files generated not include these as default? Or is the correct fix to install the dependencies?
The text was updated successfully, but these errors were encountered: