标签: testfairy

How to automate upload APK from Jenkins to TestFairy

I could not figure out how to command Jenkins to upload an APK to Testfairy. I know that Testfairy has an API for this, see the link below:

http://blog.testfairy.com/how-to-upload-an-app-to-testfairy-via-api/

I'm new to this, how do I use the API?

android apk jenkins testfairy

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

找不到iOS ::'TestFairy.h'文件

我正在尝试将TestFairy SDK集成到iOS项目中进行测试.我正在遵循步骤.

但在第二步中我不知道拖放SDK的位置.我通过右键单击导航器中的项目- >添加文件到 - >选择目录并选中添加到目标添加测试童话sdks .

如果TestFairy.h按照步骤3中的说法导入,则说:

找不到TestFairy.h文件.

如果有人使用过TestFairy,请帮我这样做.

ios testfairy

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

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
查看次数

标签 统计

testfairy ×3

android ×2

android-studio ×1

apk ×1

gradle ×1

ios ×1

jenkins ×1