반응형
build.gradle에 firebase
buildscript {
repositories {
google() // Google's Maven repository
mavenCentral() // Maven Central repository
}
dependencies {
classpath 'com.google.gms:google-services:4.3.13'
}
}
를 추가하는 도중에 all buildscript {} blocks must appear before any plugins {} blocks in the script 라는 오류가 발생
buildscript{}를 plugins{}보다 앞에 적어주면 간단하게 해결가능!!
반응형
'Android' 카테고리의 다른 글
Android - Palette (0) | 2022.11.11 |
---|---|
Android - Manifest (0) | 2022.11.02 |
[Android] ViewPager2 중첩 문제 (0) | 2022.08.12 |
GIF파일 적용 ImageView 적용하기 (0) | 2022.07.22 |
[Android] Fragment 생명주기 (0) | 2022.07.03 |
반응형
build.gradle에 firebase
buildscript {
repositories {
google() // Google's Maven repository
mavenCentral() // Maven Central repository
}
dependencies {
classpath 'com.google.gms:google-services:4.3.13'
}
}
를 추가하는 도중에 all buildscript {} blocks must appear before any plugins {} blocks in the script 라는 오류가 발생
buildscript{}를 plugins{}보다 앞에 적어주면 간단하게 해결가능!!
반응형
'Android' 카테고리의 다른 글
Android - Palette (0) | 2022.11.11 |
---|---|
Android - Manifest (0) | 2022.11.02 |
[Android] ViewPager2 중첩 문제 (0) | 2022.08.12 |
GIF파일 적용 ImageView 적용하기 (0) | 2022.07.22 |
[Android] Fragment 생명주기 (0) | 2022.07.03 |