Notice
Recent Posts
Recent Comments
Link
웁스교교주의 이야기
[Cordova] 안드로이드 스튜디오 3.0 업데이트 후 에러 본문
Error:All flavors must now belong to a named flavor dimension. Learn more at https://d.android.com/r/tools/flavorDimensions-missing-error-message.html
위의 에러는
android {
...
flavorDimensions "default"
...
}
위의 방법으로 해결 가능.
Project : declares a dependency from configuration 'debugCompile' to configuration 'debug' which is not declared in the descriptor for project :CordovaLib
에러 발생시
debugCompile(project(path: "CordovaLib", configuration: "debug"))
releaseCompile(project(path: "CordovaLib", configuration: "release"))
이 부분을
implementation project(':CordovaLib')
이렇게 수정하면 된다.
'개발 > Cordova' 카테고리의 다른 글
cordova browser nodejs 구동 위치 (0) | 2018.06.18 |
---|---|
[Cordova] ios 11 관련 StatusBarOverlaysWebView 설정 (0) | 2017.10.31 |
[cordova] Gradle sync failed: Could not find com.android.tools.build:gradle:2.2.3. (0) | 2017.10.16 |
[android] 서명되지 않은 apk 파일을 업로드 했습니다. --- 에러.. (0) | 2017.04.17 |
[cordova] .setColor error (0) | 2017.02.27 |