1

我有一个带有这个 gradle 构建脚本的 android 库项目:

apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'

group 'com.test'
version '0.0.1'

android {
    compileSdkVersion 19
    buildToolsVersion "21.1.1"

    defaultConfig {
        applicationId "com.test.sdk"
        minSdkVersion 14
        targetSdkVersion 19
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }

    lintOptions {
        abortOnError false
    }
}


dependencies {
    compile 'com.android.support:support-v4:21.0.2'
    compile 'com.google.code.gson:gson:2.3'
}

然后我有一个带有这个构建脚本的应用程序:

应用插件:'com.android.application'

android {
    compileSdkVersion 'Google Inc.:Google APIs:19'
    buildToolsVersion "21.1.1"

    defaultConfig {
        applicationId "com.test.app"
        minSdkVersion 14
        targetSdkVersion 19
        multiDexEnabled true
    }


    signingConfigs {
        release {
            storeFile file(RELEASE_STORE_FILE)
            storePassword RELEASE_STORE_PASSWORD
            keyAlias RELEASE_KEY_ALIAS
            keyPassword RELEASE_KEY_PASSWORD
        }
    }

    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
            signingConfig signingConfigs.release
        }
        debug {
            minifyEnabled false
        }
    }

    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
    }
}

dependencies {
    compile ('com.test:sdk:0.0.1@aar') {
        transitive = true
    }
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.android.support:support-v4:21.0.2'
    compile 'com.google.android.gms:play-services:6.1.71'
}

我正在使用 maven 插件将我的库 sdk 发布到我的本地 maven 存储库: https ://github.com/dcendents/android-maven-plugin

我在我的库项目上运行安装任务,它成功地发布了库 .aar 以及 pom 文件。pom 文件将 gson 列为编译依赖项。

生成的POM文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.test</groupId>
  <artifactId>sdk</artifactId>
  <version>0.0.1</version>
  <packaging>aar</packaging>
  <dependencies>
   <dependency>
     <groupId>com.google.code.gson</groupId>
     <artifactId>gson</artifactId>
     <version>2.3</version>
     <scope>compile</scope>
    </dependency>
  </dependencies>
</project>

当我运行我的应用程序时,我得到了 gson 类的 java.lang.NoClassDefFoundError。查看apk,我根本看不到gson dep。

我已经读过将扩展“@aar”放在依赖项上,将传递性设置为 false,并且不会拉取传递性依赖项。所以我添加了传递=真。我也试过没有'@aar'扩展名,我遇到了同样的问题。

我正在使用带有 gradle 插件版本 0.14.4 的 Android Studio RC1。

4

0 回答 0