我正在尝试生成已签名的apk,但我收到了错误
Program type already present: android.support.v4.R
我已将multiDexEnabled设为true并在StackOverflow上检查了有关此问题的各种答案,但它们都没有帮助我解决此问题。但该应用程序在模拟器上运行良好。
编辑:我发现ai.api依赖导致了这个错误。但我不知道如何解决它。我尝试使用来自ai.api依赖项的exclude group: 'com.android.support'
,但问题仍然存在。
非常感谢您在这件事上的时间和帮助。 这是我的应用程序gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.android.puchotask1"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
preDexLibraries false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.facebook.fresco:fresco:1.9.0'
implementation 'com.facebook.android:facebook-login:[4,5)'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'ai.api:sdk:2.0.7'
implementation 'com.android.support:design:27.1.1'
}
gradle项目文件
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}