Gradle Android依赖关系解析,本地模块和Maven lib之间的区别

时间:2019-02-08 15:10:35

标签: java android maven gradle

我做了一个测试项目来验证问题。

  1. 打开Android Studio
  2. 我创建了一个新的基本项目。其主要模块称为app
  3. 我添加了一个名为libA的库模块。
  4. libA中,我使用

    implementation 'com.google.code.gson:gson:2.8.5'

    向Gson添加了一个依赖项,并添加了一个带有{使用ClassA的单一方法。
  5. Gson中,我通过

    app添加了依赖项 libA

    在MainActivity中,我毫无疑问地使用了implementation project(path: ':liba')中的类。 libA从主要活动中无法访问
  6. 我使用Gson插件和

    发布到maven本地库中 maven-publish

  7. 我已将导入内容从上述内容切换为

    ./gradlew :liba:publishMsdkPublicationToMavenLocal

    现在,我可以继续使用libA中定义的类,而不会出现任何问题,但我也可以访问Gson ,并且在Main Activity中,我可以执行
implementation "com.ndefiorenze:lib-a:1.0.0"

List<String> list = new ArrayList<>(); list.add("a"); list.add("b"); list.add("c"); Log.d("classA", new Gson().toJson(list)); 在行家中时,如何防止Gson暴露在app中?


以下是一些来源:

liba
public class ClassA {

    public void fooA(){
        List<String> list = new ArrayList<>();
        list.add("a");
        Log.d("classA", new Gson().toJson(list));
    }
}

liba build.gradle

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        ClassA().fooA()
    }
}

应用程序build.gradle

apply plugin: 'com.android.library'
apply plugin: 'maven-publish'

android {
    compileSdkVersion 28

    defaultConfig {
        minSdkVersion 19
        targetSdkVersion 28
        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 'com.google.code.gson:gson:2.8.5'
}

publishing {
    publications {
        msdk(MavenPublication) {

            groupId 'com.ndefiorenze'
            artifactId 'lib-a'
            version "1.0.0"
            artifact(bundleReleaseAar)
            pom.withXml {
                def dependenciesNode = asNode().appendNode('dependencies')
                configurations.implementation.allDependencies.each {
                    if(it.group != null && (it.name != null || "unspecified" == it.name) && it.version != null) {
                        def dependencyNode = dependenciesNode.appendNode('dependency')
                        dependencyNode.appendNode('groupId', it.group)
                        dependencyNode.appendNode('artifactId', it.name)
                        dependencyNode.appendNode('version', it.version)
                    }
                }
            }
        }
    }
    repositories {
        maven {
            url "${System.env.HOME}/.m2/repository"
        }
    }
}

项目build.gradle:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.ndefiorenze.dependencyagain"
        minSdkVersion 19
        targetSdkVersion 28
        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-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    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 project(path: ':liba')
//    implementation "com.ndefiorenze:lib-a:1.0.0"
}

1 个答案:

答案 0 :(得分:0)

我对最近的更改感到很陌生,但是我没有正确阅读this article时,您想要排除传递依赖,如图所示。

dependencies {
    implementation('log4j:log4j:1.2.15') {
        exclude group: 'javax.jms', module: 'jms'
        exclude group: 'com.sun.jdmk', module: 'jmxtools'
        exclude group: 'com.sun.jmx', module: 'jmxri'
    } }

因此在您的应用程序构建文件中;

dependencies {
   ...
   implementation project(path: ':liba'){
       exclude group: 'com.google.code.gson', module:'gson'
   }

应该阻止Gson从应用程序访问。