We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a25c2bf commit e3dd026Copy full SHA for e3dd026
.travis.yml
@@ -32,5 +32,5 @@ before_script:
32
- adb shell input keyevent 82 &
33
34
script:
35
- - ./gradlew build
+ #- ./gradlew build
36
- ./gradlew connectedInstrumentTest
tests/src/com/qiniu/test/UploadTest.java
@@ -67,6 +67,7 @@ public void onSuccess(JSONObject res) {
67
success = true;
68
resp = res;
69
Log.d("UploadTest", "上传成功! " + resp.toString());
70
+ System.out.println("上传成功! " + resp.toString());
71
}
72
73
@Override
@@ -75,6 +76,7 @@ public void onFailure(Exception ex) {
75
76
success = false;
77
e = ex;
78
Log.d("UploadTest", "上传失败! " + ex.getMessage());
79
+ System.out.println("上传失败! " + ex.getMessage());
80
81
};
82
0 commit comments