1

Here I have attached the screenshot 내 응용 프로그램에 파이어베이스를 추가 한 후에이 오류가 발생합니다.내 안드로이드 스튜디오 프로젝트를 만들려고 할 때 오류가 발생했습니다.

오류 : bytecode를 dex로 변환하는 중 오류가 발생했습니다. 원인 : com.android.dex.DexException : 여러 dex 파일이 Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompatIcs를 정의합니다.

+0

당신이 지원-주석을 사용합니까

그냥에서 아래의 코드를 분석? –

+0

프로젝트를 청소하고 다시 만들려고 했습니까? –

+0

프로젝트를 깨끗하게하고 다시 빌드하지만 행운이 없습니다 –

답변

1

Google Play 서비스에서 작업하는 동안 동일한 문제가 발생했습니다.이를 해결하려면 다음 방법을 따르세요.

compile 'com.google.android.gms:play-services:9.4.0' 

하려면 :

compile ('com.google.android.gms:play-services:9.4.0') { 
    exclude module: 'support-v4' 
} 
관련 문제