error8 Uncaught TypeError: Cannot read property 'transition' of null Uncaught TypeError: Cannot read property 'transition' of null Chart.js 로 PieChart 를 만들던 중 이런 에러가 발생하였다. 아래처럼 한 페이지에 파이차트를 여러개 사용하면서, 실제 윈도우 객체 1개에 계속 new Chart 를 해주고 있었던게 문제가 되었다.12345678910111213window.pieChart = new Chart(ctx, { type : 'pie', data : data, options : { title : { display : true, fontSize : '16', fontColor : '#FFFFFF', text : $("#testVal").val() + ' ' + textId + '별 ' + textKind + .. 2019. 7. 23. More than one file was found with OS independent path 'META-INF/DEPENDENCIES' More than one file was found with OS independent path 'META-INF/DEPENDENCIES' More than one file was found with OS independent path 'META-INF/ASL2.0' 원인 : 안드로이드 자체 프레임워크 API와 내가 넣어준 서드파티 라이브러리 프레임워크 API와의 충돌이 나기 때문 해결 : build.gradle 파일에서 buildTypes 바로 밑에 아래 코드를 넣어주면 해결됨. packagingOptions { exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/ASL2.0' } 덧, 예전 안드로이드 버전에서는 'META-INF/LICENSE' 까지 에러가 났었는.. 2018. 6. 14. 이전 1 2 다음