Error:The number of method references in a .dex file cannot exceed 64.
해결 사이트
https://developer.android.com/studio/build/multidex.html#mdex-gradle
build.gradle
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | android { ... defaultConfig { ... multiDexEnabled true } } dependencies { ... compile 'com.android.support:multidex:1.0.0' } | cs |
추가
AndroidManifest.xml
1 2 3 4 5 6 | <application ... android:name="android.support.multidex.MultiDexApplication"> ... </application> | cs |
추가
'IT > - 프로그래밍' 카테고리의 다른 글
안드로이드 갤러리에서 이미지 여러개 선택하여 이미지뷰에 보이기 (1) | 2017.01.18 |
---|---|
코코스 Cocos Label 영역, 위치, 폰트, 폰트크기, 정렬 지정 (0) | 2017.01.17 |
코코스 Cocos 텍스트 출력예제 (SystemFont 사용) (0) | 2017.01.13 |
코코스 Cocos 기본 메서드 예제 (setOpacity , setScale , setRotation , setFlippedX) (0) | 2017.01.12 |
C/C++ Visual Studio 2015 설치하기 (0) | 2017.01.11 |