gradle "Error: Program type already present: "
Error: Program type already present: android.arch.lifecycle.ViewModel
오류 정보
이 오류는 Android Studio 사용자 가이드 : 중복 클래스 오류 수정에 설명되어 있습니다.
Program type already present com.example.MyClass
이 오류는 일반적으로 다음 상황 중 하나에서 발생합니다.
· 바이너리 종속성에 포함 된 라이브러리가 직접 종속성으로 응용 프로그램에 포함되어있는 경우. 예를 들어, 앱이 라이브러리 A와 라이브러리 B에 대한 직접적인 종속성을 선언했지만 이미 라이브러리 A의 바이너리에 라이브러리 B가 포함되어 있습니다. 이 문제를 해결하려면 라이브러리 B를 직접 종속성에서 제거하십시오.
* 앱에 로컬 바이너리 종속성이 있고 동일한 라이브러리에 대한 원격 바이너리 종속성도 있습니다. 이 문제를 해결하려면 이진 종속성 중 하나를 제거하십시오.
예
build.gradle
파일
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// 移行中の古い環境です
//ext.kotlin_version = "1.4.0"
ext.kotlin_version = "1.2.51"
repositories {
google()
jcenter()
}
dependencies {
// 移行中の古い環境です
//classpath "com.android.tools.build:gradle:4.0.1"
classpath "com.android.tools.build:gradle:3.2.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
app/build.gradle
파일
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.example.gradleerrorsample"
minSdkVersion 24
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:2.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'android.arch.lifecycle:extensions:1.0.0'
}
Make Project
와 같이 빌드하면 다음과 같은 오류가 발생합니다.
Error: Program type already present: android.arch.lifecycle.ViewModel
조사 1
해당 클래스를 import 해 보았습니다.
android.arch.lifecycle.ViewModel
는android.arch.lifecycle:extensions:1.0.0
에 정의된 것 같습니다.
조사 2
gradle app:dependencies
를 실행하고 종속성을 출력해 보았습니다.
151행android.arch.lifecycle:viewmodel:1.1.1
이 있습니다.
종속 대상을 따라가면 com.android.support:appcompat-v7:28.0.0
가 종속됩니다.
이로 인해 클래스 이름이 충돌하는 것 같습니다.
또한 Lifecycle 릴리스 # 버전 1.1.0을 참조하면 lifecycle:extensions가 viewmodel을 포함하는 것을 중지하는 것 같습니다.
대응
android.arch.lifecycle:extension:1.1.1
로 업데이트하면 빌드 자체가 해결됩니다.
기타
Android Gradle Plugin ( com.android.tools.build:gradle:
)을 업데이트하면이 오류가 다음과 같이 출력됩니다.
이해하기 쉽습니다.
(라이브러리 업데이트를 마무리합시다)
Reference
이 문제에 관하여(gradle "Error: Program type already present: "), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ykakizaki/items/3f01d9c335ded90a92c6
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Program type already present com.example.MyClass
build.gradle
파일// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// 移行中の古い環境です
//ext.kotlin_version = "1.4.0"
ext.kotlin_version = "1.2.51"
repositories {
google()
jcenter()
}
dependencies {
// 移行中の古い環境です
//classpath "com.android.tools.build:gradle:4.0.1"
classpath "com.android.tools.build:gradle:3.2.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
app/build.gradle
파일apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.example.gradleerrorsample"
minSdkVersion 24
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:2.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'android.arch.lifecycle:extensions:1.0.0'
}
Make Project
와 같이 빌드하면 다음과 같은 오류가 발생합니다.Error: Program type already present: android.arch.lifecycle.ViewModel
조사 1
해당 클래스를 import 해 보았습니다.
android.arch.lifecycle.ViewModel
는android.arch.lifecycle:extensions:1.0.0
에 정의된 것 같습니다.조사 2
gradle app:dependencies
를 실행하고 종속성을 출력해 보았습니다.151행
android.arch.lifecycle:viewmodel:1.1.1
이 있습니다.종속 대상을 따라가면
com.android.support:appcompat-v7:28.0.0
가 종속됩니다.이로 인해 클래스 이름이 충돌하는 것 같습니다.
또한 Lifecycle 릴리스 # 버전 1.1.0을 참조하면 lifecycle:extensions가 viewmodel을 포함하는 것을 중지하는 것 같습니다.
대응
android.arch.lifecycle:extension:1.1.1
로 업데이트하면 빌드 자체가 해결됩니다.기타
Android Gradle Plugin ( com.android.tools.build:gradle:
)을 업데이트하면이 오류가 다음과 같이 출력됩니다.
이해하기 쉽습니다.
(라이브러리 업데이트를 마무리합시다)
Reference
이 문제에 관하여(gradle "Error: Program type already present: "), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ykakizaki/items/3f01d9c335ded90a92c6
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(gradle "Error: Program type already present: "), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ykakizaki/items/3f01d9c335ded90a92c6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)