Skip to content

Commit

Permalink
Updated to lates iOS SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoperini committed Apr 8, 2021
1 parent 3b45e78 commit de91358
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
npm-debug.log
.idea/
AwesomeProject
android/.gradle
android/.idea
android/build
android/local.properties
node_modules
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ script:
- #xcrun xcodebuild -quiet -workspace AwesomeProject.xcworkspace -scheme AwesomeProject -configuration Debug CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty
before_deploy:
- ANDROID_SDK_VERSION=1.12.5
- IOS_VERSION=1.28.3
- IOS_VERSION=1.28.4
- cd ../..
- rm -rf AwesomeProject
- sed -i '' "s/\"version\":.*/\"version\":\"${TRAVIS_TAG}\",/g" package.json
Expand Down
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,9 @@ class TestFairy {
*
* @param filename Name of the attached file. It must have a file extension.
* @param content A utf-8 javascript string, can be empty.
* @param mimeType MIME type of the given file, i.e "text/plain"
*/
static attachFile(filename, content) {
static attachFile(filename, content, mimeType) {
TestFairyBridge.attachFile(filename, content);
}
}
Expand Down

0 comments on commit de91358

Please sign in to comment.