는 그래서 중포 기지 스토리지를 사용하는 것을 시도하고있다, 나는 의존성의 코드 줄을 복사하여 붙여 넣을 때Firebase 저장 오류를 수정하는 방법은 무엇입니까?
오류 : (33, 13
compile 'com.google.firebase:firebase-storage:9.2.0'
compile 'com.google.firebase:firebase-auth:9.2.0'
나는 내용의 빌드 오류 com.google.firebase을 : 중포 기지 저장 :) 해결하는 데 실패 프로젝트 구조 대화 상자에서 파일
쇼에서 9.2.0 쇼
및
오류 : 해결하지 못했습니다 com.googl e.firebase : 중포 기지 코어 : 9.2.0 파일 열기
표시 대화 프로젝트 구조 오류
및
: com.google.firebase을 : 중포 기지-인증을 (34, 13)를 해결하는 데 실패했습니다 : 9.2.0 파일에 표시
프로젝트 구조 대화 상자에 표시
내 의존성은 다음과 같습니다.
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0-beta1'
compile 'com.android.support:design:24.0.0-beta1'
compile 'com.firebase:firebase-client-android:2.3.1'
compile 'com.firebaseui:firebase-ui:0.3.1'
compile 'com.google.firebase:firebase-storage:9.2.0'
compile 'com.google.firebase:firebase-auth:9.2.0'
}
apply plugin: 'com.google.gms.google-services'
또한 Firebase 데이터베이스와 Firebase 스토리지의 차이점은 무엇입니까? 언제 다른 것을 사용 하나, 둘 다 정보를 저장하지 않습니까?
'com.firebase :'시작 의존성은 구글이 파이어베이스를 소유하게됨에 따라 (최근 두 가지 의존성을 비교하자면) 더 이상 사용되지 않을 것이다. 최신 버전보다 위에 있기 때문에 오류가 발생할 수 있습니다. 데이터베이스는 데이터베이스이므로 기본 데이터 유형을 저장할 수 있습니다. 저장소는 이미지, 미디어 등을 업로드 할 수있는 "클라우드"와 같습니다. – yennsarah
SDK 관리자에 Google Play 서비스가 설치되어 있습니까? – LordRaydenMK
@LordRaydenMK 그래,하지만 그들을 업데이트해야 할까? 그것만이 가능한 해결책입니까? – TheQ