2

TestFairy をプロジェクトに統合しようとしています。Android Studio 0.8.2 Beta を使用しています。

公式サイト:http ://testfairy.com/

それがどのように機能するかの例があります: https://github.com/testfairy/testfairy-gradle-plugin

これは私のbuild.gradleです:

repositories {
    maven { url 'http://clinker.47deg.com/nexus/content/groups/public';; }
    maven { url 'https://www.testfairy.com/maven';; }
}
apply plugin: 'com.android.application'
apply plugin: 'testfairy'
android {
    compileSdkVersion 19
    buildToolsVersion '20.0.0'
    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 19
        versionCode 1
        versionName '1.0'
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    productFlavors {
    }
    testfairyConfig {
        apiKey "Here is my real api key"
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.2'
    compile 'org.roboguice:roboguice:2.0'
    compile 'com.google.code.gson:gson:2.2.4'
    compile 'com.android.support:support-v4:19.+'
    compile 'com.google.android.gms:play-services:4.2.42'
    compile 'se.emilsjolander:stickylistheaders:2.3.0'
    classpath 'com.testfairy.plugins.gradle:testfairy:1.+'
}

私が得るエラーは次のとおりです。

エラー:(6, 0) ID 'testfairy' のプラグインが見つかりません。

それを修正するのは難しいですか?

4

1 に答える 1

6

私の推測では、アプリのリポジトリ クロージャーのみに TestFairy 依存関係を追加したと思います。私のプロジェクトでは、ルート gradle ファイルにあり、次のようになります。

// Top-level build file where you can add configuration options common to all sub-projects/modules.

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

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

}

これにより、ビルドの依存関係とアプリの依存関係のリポジトリを別々に定義できます。

于 2014-08-07T07:56:44.180 に答える