我编写的程序库使用 Firebase
中的 RemoteMessage
,应用程序本身也使用 Firebase
。
使用等级4.7。在4.4。
怎么补救?
项目,分级
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
}
应用,分级
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'
我的自由年级
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
的错误输出
项目的多个变体: myLib 匹配 消费者特质:
- 配置“ : myLib: debug ApiElements 的变体 android-aidl:
- 发现工件类型“ android-aidl”,但不是必需的。
- 必需的 com.android.build.api.properties. BuildTypeAttr‘ debug’并找到兼容值‘ debug’。
- 找到 com.android.build.api.properties. VariantAttr‘ debug’但不是必需的。
- 必需的 com.android.build.gradle.interal.ency.AndroidTypeAttr‘ Aar’和 找到兼容值‘ Aar’。
- 使用‘ java-api’并找到兼容值‘ java-api’。
- 配置’: myLib: degugApiElements 的变体 android-class:
- 找到了 artifactType“ android 类”,但不是必需的。
- 必需的 com.android.build.api.properties. BuildTypeAttr‘ debug’并找到兼容值‘ debug’。
- 找到 com.android.build.api.properties. VariantAttr‘ debug’但不是必需的。
- 必需的 com.android.build.gradle.interal.ency.AndroidTypeAttr‘ Aar’和 找到兼容值‘ Aar’。
- 使用‘ java-api’并找到兼容值‘ java-api’。
- 配置’: myLib: degugApiElements 的变体 android-manifest:
- 找到了工件类型“ android 清单”,但不是必需的。
- 必需的 com.android.build.api.properties. BuildTypeAttr‘ debug’并找到兼容值‘ debug’。
- 找到 com.android.build.api.properties. VariantAttr‘ debug’但不是必需的。
- 必需的 com.android.build.gradle.interal.ency.AndroidTypeAttr‘ Aar’和 找到兼容值‘ Aar’。
- 使用‘ java-api’并找到兼容值‘ java-api’。
- 配置“ : myLib: debug ApiElements 的变体 android-renderscript:
- 找到 artifactType“ android-renderscript”但不是必需的。
- 必需的 com.android.build.api.properties. BuildTypeAttr‘ debug’并找到兼容值‘ debug’。
- 找到 com.android.build.api.properties. VariantAttr‘ debug’但不是必需的。
- 必需的 com.android.build.gradle.interal.ency.AndroidTypeAttr‘ Aar’和 找到兼容值‘ Aar’。
- 使用‘ java-api’并找到兼容值‘ java-api’。
- 配置“ : myLib: degugApiElements 的变体 jar:
- 找到工件类型“ jar”,但不是必需的。
- 必需的 com.android.build.api.properties. BuildTypeAttr‘ debug’并找到兼容值‘ debug’。
- 找到 com.android.build.api.properties. VariantAttr‘ debug’但不是必需的。
- 必需的 com.android.build.gradle.interal.ency.AndroidTypeAttr‘ Aar’和 找到兼容值‘ Aar’。
- 使用‘ java-api’并找到兼容值‘ java-api’。