안녕하세요. 청홈의 플랫폼공작소입니다.
오랜만에 코르도바 프로젝트를 진행하는 중입니다.
Could not find method leftShift() for arguments 라는 에러가 발생한 경우
build.gredle파일에 들어가셔서 << 를 제거하시면 됩니다.
아래의 소스코드를
task cdvPrintProps << {
android.productFlavors.each { flavor ->
println('computed' + flavor.name.capitalize() + 'VersionCode=' + flavor.versionCode)
}
}
로 바꾸시면 됩니다.
task cdvPrintProps {
android.productFlavors.each { flavor ->
println('computed' + flavor.name.capitalize() + 'VersionCode=' + flavor.versionCode)
}
}
감사합니다.
reference : https://stackoverflow.com/questions/55793095/could-not-find-method-leftshift-for-arguments-after-updating-studio-3-4