Here\'s my Ionic Info
cli packages: (/Users/billb/dev/customer-mkt-app/node_modules)
@ionic/cli-utils : 1.15.2
ionic (I
If you get this kind of error in Android Studio 3.0.1:
Unable to resolve dependency for :@debug/compileClasspath’: Could not resolve project :CordovaLib.
Go to build.gradle
file -> find dependencies and change it like this
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
// SUB-PROJECT DEPENDENCIES START
//debugCompile(project(path: "CordovaLib", configuration: "debug"))
//releaseCompile(project(path: "CordovaLib", configuration: "release"))
compile project(':CordovaLib')
// SUB-PROJECT DEPENDENCIES END
}