Contents

?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
# 에러 내용
The number of method references in a .dex file cannot exceed 64K
Error:The number of method references in a .dex file cannot exceed 64K. Learn how to resolve this issue at https://developer.android.com/tools/building/multidex.html


# 에러 원인
프로젝트에 사용되는 메소드의 개수가 64K 이상이 되었을때 발생하는 에러이다.
안드로이드 개발자 사이트에서 해결책을 제공하고 있다.
solution https://developer.android.com/studio/build/multidex.html


# 해결 방법

1. build.gradle 아래와 같이 수정하여 빌드 한다.
android {
    compileSdkVersion 21
    buildToolsVersion "21.1.0"

    defaultConfig {
        ...
        minSdkVersion 14
        targetSdkVersion 21
        ...

        // Enabling multidex support.
        multiDexEnabled true
    }
    ...
}

dependencies {
    compile 'com.android.support:multidex:1.0.0'
}

2. Application을 확장하여 사용하는 경우는,
Application을 MultiDexApplication으로 확장하여 아래와 같이 추가 하도록 한다.
public class GlobalApplication extends MultiDexApplication {
    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(base);
        MultiDex.install(this);
    }
}



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1125 Develop [ios] APNS, Remote Push 사용자가 수신을 동의했는지 확인하기 hooni 2018.10.19 1236
1124 Develop [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태 hooni 2018.10.19 951
1123 Develop [ios] Swift 4 String, Date, DateFormatter 예제 hooni 2018.10.18 1380
1122 System/OS Mac에서 Node.js 설치하기 file hooni 2018.09.28 4173
1121 System/OS 서버 확장을 위한 두 가지 방법 file hooni 2018.08.29 2083
1120 Develop [ios] Requesting Location Permissions in iOS file hooni 2018.08.18 1585
1119 Develop [PHP] Mac OS에서 PHP 7 설치하기 file hooni 2018.05.11 4863
1118 Develop [php] Connect to Firebase Console in Laravel file hooni 2018.05.09 3093
1117 Develop [api] 인스타그램 API Access_Token 발급 방법 (Instagram API) 3 file hooni 2018.04.05 7514
1116 Develop [api] 인스타그램에서 최신 이미지 가져오기 (Using Instagram API) 20 file hooni 2018.04.05 11835
1115 Develop [js] Click button copy to clipboard hooni 2018.04.05 1155
1114 Develop [php] Laravel 4. twitter bootstrap 적용하기 hooni 2018.04.05 2525
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 98 Next
/ 98