web-dev-qa-db-ja.com

IDが「com.Android.library」のプラグインが見つかりません

Android Studioでライブラリプロジェクトを使用しようとすると、このエラーが発生します。このエラーが発生する_build.gradle_の特定の行は次のとおりです。

_apply plugin: 'com.Android.library'
_

に変えてみました

_apply plugin: 'Android-library'
_

それでも動作しませんが、代わりに次のように表示されます:Error:(7, 0) Plugin with id 'Android-library' not found.

私も追加しようとしました:

_classpath 'com.Android.tools.build:gradle:1.2.3.+' 
_

_build.gradle_の依存関係の下で、まだ何も...

何か助けはありますか?

編集:build.gradle全体

_    // This buildscript will assemble the MoPub SDK into an AAR.

repositories {
    jcenter()
}

apply plugin: 'Android-library'

group = 'com.mopub'

description = '''MoPub SDK'''

Android {
    compileSdkVersion 22
    buildToolsVersion '22.0.1'

    defaultConfig {
        versionCode 25
        versionName "3.8.0"
        minSdkVersion 9
        targetSdkVersion 22
        consumerProguardFiles 'proguard.txt'
    }

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            Java.srcDirs = ['src/main/Java']
            resources.srcDirs = ['src/main/Java']
            aidl.srcDirs = ['src/main']
            renderscript.srcDirs = ['src/main']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
        }
    }

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

    // Note: You will also need a local.properties file to set the location of the SDK in the same 
    // way that the existing SDK requires, using the sdk.dir property.
    // Alternatively, you can set an environment variable called Android_HOME. There is no 
    // difference between the two methods, you can use the one you prefer.
}

dependencies {
    classpath 'com.Android.tools.build:gradle:1.2.3.+'
    compile 'com.Android.support:support-v4:22.0.0'
    compile 'com.Android.support:support-annotations:22.0.0'
    compile 'com.mopub.volley:mopub-volley:1.1.0'
}

// Don't run the Robolectric Unit Tests.
check.dependsOn.remove("test")
check.dependsOn.remove("unitTest")
check.dependsOn.remove("testDebug")
check.dependsOn.remove("unitTestDebug")
_
9
Borislav

これを書く必要があります:

apply plugin: 'com.Android.application'

ファイルのこのコードも置き換えます。

buildscript {
    repositories {
        mavenCentral() // or jcenter()
    }

    dependencies {
        classpath 'com.Android.tools.build:gradle:1.2.3' // 1.3.0-beta2
    }
}
6
Sohil R. Memon