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?
我正在尝试将TestFairy SDK集成到iOS项目中进行测试.我正在遵循步骤.
但在第二步中我不知道拖放SDK的位置.我通过右键单击导航器中的项目- >添加文件到 - >选择目录并选中添加到目标来添加测试童话sdks .
如果TestFairy.h按照步骤3中的说法导入,则说:
找不到TestFairy.h文件.
如果有人使用过TestFairy,请帮我这样做.
我正在尝试将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)