git에 있는 오픈 소스를 가져와 빌드를 하려 하니 아래와 같은 에러가 나며 빌드가 실패했다.
> Failed to apply plugin [id 'com.github.dcendents.android-maven']
> Could not create plugin of type 'AndroidMavenPlugin'.
> Unable to determine constructor argument #1: missing parameter of type Factory, or no service of type Factory<LoggingManagerInternal>.
해결 방법
해당 프로젝트 build.gradle에는 다음과 같이 되어있었다.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
}
}
저기서 android-maven-gradle-plugin과 gradle-bintray-plugin의 버전을 높여주면 된다.! 아래처럼!
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
320x100
'프로그래밍 > Android-Java' 카테고리의 다른 글
[FFMPEG/VLC] TCP 스트리밍 방법 (Live555 기준) (0) | 2021.11.01 |
---|---|
[ANDROID] Library AAR 파일 생성 (0) | 2021.09.29 |
[ANDROID] Activity View 구하기 (0) | 2021.02.18 |
[ANDROID] byte array rotate (0) | 2021.01.27 |
[ANDROID] react-native 설치 & 프로젝트 생성 (0) | 2021.01.18 |
댓글