내가 작성한 라이브러리 myLib
는 RemoteMessage
에서 사용 Firebase
하며 앱 자체도 Firebase
.
Gradle 사용 4.7. 또한 4.4.1에서 이것을 직면합니다.
그것을 고치는 방법?
project.gradle
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.google.gms:google-services:3.3.0'
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
app.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.test.app"
minSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
dexOptions {
preDexLibraries = false
jumboMode = false
javaMaxHeapSize "2048M"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
productFlavors {
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.google.android.gms:play-services-gcm:12.0.1'
implementation 'com.google.android.gms:play-services:12.0.1'
implementation 'com.google.firebase:firebase-core:12.0.1'
implementation 'com.google.firebase:firebase-messaging:12.0.1'
implementation 'com.google.firebase:firebase-crash:12.0.1'
implementation project(":myLib")
}
apply plugin: 'com.google.gms.google-services'
myLib.gradle
apply plugin: 'com.android.library'
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
implementation 'com.j256.ormlite:ormlite-core:5.0'
implementation 'com.j256.ormlite:ormlite-android:5.0'
implementation 'com.google.firebase:firebase-messaging:12.0.1'
}
testApp\myLib> gradle clean assembleDebug
및 에서 오류 출력testApp\app> gradle clean assembleDebug
두 개 이상의 project : myLib 변형이 소비자 속성과 일치합니다.
- 구성 ': myLib : debugApiElements'변형 android-aidl :
- artifactType 'android-aidl'을 찾았지만 필수는 아닙니다.
- com.android.build.api.attributes.BuildTypeAttr 'debug'가 필요하며 호환되는 값 'debug'를 찾았습니다.
- com.android.build.api.attributes.VariantAttr 'debug'를 찾았지만 필수는 아닙니다.
- com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar'가 필요하며 호환되는 값 'Aar'를 찾았습니다.
- org.gradle.usage 'java-api'가 필요하고 호환되는 값 'java-api'를 찾았습니다.
- 구성 ': myLib : debugApiElements'변형 android-classes :
- artifactType 'android-classes'를 찾았지만 필수는 아닙니다.
- com.android.build.api.attributes.BuildTypeAttr 'debug'가 필요하며 호환되는 값 'debug'를 찾았습니다.
- com.android.build.api.attributes.VariantAttr 'debug'를 찾았지만 필수는 아닙니다.
- com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar'가 필요하며 호환되는 값 'Aar'를 찾았습니다.
- org.gradle.usage 'java-api'가 필요하고 호환되는 값 'java-api'를 찾았습니다.
- 구성 ': myLib : debugApiElements'변형 android-manifest :
- artifactType 'android-manifest'를 찾았지만 필수는 아닙니다.
- com.android.build.api.attributes.BuildTypeAttr 'debug'가 필요하며 호환되는 값 'debug'를 찾았습니다.
- com.android.build.api.attributes.VariantAttr 'debug'를 찾았지만 필수는 아닙니다.
- com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar'가 필요하며 호환되는 값 'Aar'를 찾았습니다.
- org.gradle.usage 'java-api'가 필요하고 호환되는 값 'java-api'를 찾았습니다.
- 구성 ': myLib : debugApiElements'변형 android-renderscript :
- artifactType 'android-renderscript'를 찾았지만 필수는 아닙니다.
- com.android.build.api.attributes.BuildTypeAttr 'debug'가 필요하며 호환되는 값 'debug'를 찾았습니다.
- com.android.build.api.attributes.VariantAttr 'debug'를 찾았지만 필수는 아닙니다.
- com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar'가 필요하며 호환되는 값 'Aar'를 찾았습니다.
- org.gradle.usage 'java-api'가 필요하고 호환되는 값 'java-api'를 찾았습니다.
- 구성 ': myLib : debugApiElements'변형 jar :
- artifactType 'jar'을 찾았지만 필수가 아닙니다.
- com.android.build.api.attributes.BuildTypeAttr 'debug'가 필요하며 호환되는 값 'debug'를 찾았습니다.
- com.android.build.api.attributes.VariantAttr 'debug'를 찾았지만 필수는 아닙니다.
- com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar'가 필요하며 호환되는 값 'Aar'를 찾았습니다.
- org.gradle.usage 'java-api'가 필요하고 호환되는 값 'java-api'를 찾았습니다.