본문 바로가기
Android 기법/# Study

[Android/안드로이드]com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536 오류

by 퍼즐잎 2017. 2. 12.

com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536



구글에서 메소드의 개수 제한을 두어


라이브러리를 많이 사용하는경우 


위와 같은 에러가 발생한다고 한다.




StackOverFlow에서 해결방법을 찾았다.



1
2
3
4
5
6
android {
   defaultConfig {
      ...
      multiDexEnabled  true
   }
}
cs


1
2
3
4
dependencies {
  ...
  compile 'com.android.support:multidex:1.0.0'
cs

1
2
3
4
5
6
7
 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_inhalogin);
        MultiDex.install(this);
        ...
    }
cs





http://stackoverflow.com/questions/15209831/unable-to-execute-dex-method-id-not-in-0-0xffff-65536



댓글