小编Art*_*yan的帖子

Gradle找不到插件

我正在尝试将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: …
Run Code Online (Sandbox Code Playgroud)

android gradle android-studio testfairy

1
推荐指数
1
解决办法
2574
查看次数

标签 统计

android ×1

android-studio ×1

gradle ×1

testfairy ×1