Skip to content

Commit

Permalink
v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
radimvaculik committed Oct 19, 2016
1 parent 104e26a commit fbfeb39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ app:
# define these in your .bitrise.secrets.yml
- BITRISE_APK_PATH: $BITRISE_APK_PATH
#
- STEP_VERSION: "1.0.4"
- STEP_VERSION: "1.0.5"

workflows:
# ----------------------------------------------------------------
Expand Down
5 changes: 3 additions & 2 deletions step.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def filter_app_label(infos)

def filter_app_icon(infos)
# application: label='CardsUp' icon='res/mipmap-hdpi-v4/ic_launcher.png'
app_icon_regex = 'application: label=\'(?<label>.+)\' icon=\'(?<icon>.+)\''
app_icon_regex = 'application: label=\'(?<label>.*)\' icon=\'(?<icon>.*)\''
app_icon_match = infos.match(app_icon_regex)

return app_icon_match.captures[1] if app_icon_match && app_icon_match.captures
Expand Down Expand Up @@ -115,7 +115,8 @@ def get_android_apk_info(apk_path)
version_code: version_code,
version_name: version_name,
min_sdk_version: min_sdk,
icon_path: icon_path
icon_path: icon_path,
icon_apk_path: icon_apk_path
}
}

Expand Down

0 comments on commit fbfeb39

Please sign in to comment.