gpt4 book ai didi

android - 在 android studio 中构建 android 应用程序时获取两个 gradle 报告

转载 作者:行者123 更新时间:2023-12-03 04:18:30 26 4
gpt4 key购买 nike

在将库添加到我的项目后构建我的项目时,我收到了两个构建报告。
图书馆链接是这样的:
https://github.com/jhansireddy/AndroidScannerDemo

gradle 报告也在这里共享:

Gradle reports

库和应用程序的 gradle 文件如下。

图书馆 Gradle :

apply plugin: 'com.android.library'

android {
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 23
targetSdkVersion 27
versionCode 1
versionName "1.0"
ndk
{
moduleName "Scanner"
}
}
sourceSets.main
{
jni.srcDirs = []
jniLibs.srcDir 'src/main/libs'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:27.1.1'
}

应用程序的gradle:
    apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

apply plugin: 'io.fabric'

android {
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
dexOptions {
//javaMaxHeapSize "4g" //specify the heap size for the dex process
}
signingConfigs {
}
compileSdkVersion 27
defaultConfig {
multiDexEnabled true
applicationId "com.medapp.medapp"
minSdkVersion 23
targetSdkVersion 27
versionCode 5
versionName "1.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
//minifyEnabled false
//proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
postprocessing {
removeUnusedCode false
removeUnusedResources false
obfuscate false
optimizeCode false
proguardFile 'proguard-rules.pro'
}
}
}
}

任何建议都被接受。提前致谢。

最佳答案

尝试使用 implementation不是compile在您的 build.gradle
喜欢这个

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation'com.android.support:support-v4:27.1.1'

希望对您有所帮助

关于android - 在 android studio 中构建 android 应用程序时获取两个 gradle 报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52510197/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com