0

aarファイルをmavenに公開しています。すべてを正常にアップロードしましたが、ライブラリの依存関係をサンプル プロジェクトに追加すると、プロジェクトのソース ファイルがありません。

これが私のライブラリのbuild.gradleです

apply plugin: 'com.android.library'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
    // Volley
    compile 'com.mcxiaoke.volley:library:1.0.14'
    // Gson
    compile 'com.google.code.gson:gson:2.3.1'
}

これが私のプロジェクトのbuild.gradleです

// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.android.library'

buildscript {
    repositories {
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.1.2'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenCentral()
        jcenter()
    }
}

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"
    sourceSets {
        main {
            manifest.srcFile 'app/src/main/AndroidManifest.xml'
            java.srcDirs = ['app/src/main/java/com/ebrick/TestSpot']
        }
    }
}
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
    // Volley
    compile 'com.mcxiaoke.volley:library:1.0.14'
    // Gson
    compile 'com.google.code.gson:gson:2.3.1'
}

apply from: 'maven_push.gradle'

プロジェクト build.gradle から sourceSet を削除すると、エラー AndroidManifest.xml not found が表示されます。

4

1 に答える 1