Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' | ... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' |
2 | 2 | ||
3 | ext { | 3 | ext { |
4 | PUBLISH_GROUP_ID = 'ly.warp' | 4 | PUBLISH_GROUP_ID = 'ly.warp' |
5 | - PUBLISH_VERSION = '4.5.5.4r42' | 5 | + PUBLISH_VERSION = '4.5.5.4r43' |
6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' | 6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' |
7 | } | 7 | } |
8 | 8 | ... | ... |
... | @@ -153,7 +153,7 @@ public class MarketPassActivity extends Activity implements View.OnClickListener | ... | @@ -153,7 +153,7 @@ public class MarketPassActivity extends Activity implements View.OnClickListener |
153 | createBarcodeBitmap(WarplyManagerHelper.getMarketPassDetails().getBarcode()); | 153 | createBarcodeBitmap(WarplyManagerHelper.getMarketPassDetails().getBarcode()); |
154 | 154 | ||
155 | // if (mMarketPassDetails != null) { | 155 | // if (mMarketPassDetails != null) { |
156 | - String passValue = String.format(Locale.GERMAN, "%.2f", WarplyManagerHelper.getMarketPassDetails().getTotalDiscount()); | 156 | + String passValue = String.format(Locale.US, "%.2f", WarplyManagerHelper.getMarketPassDetails().getTotalDiscount()); |
157 | String fullText = String.format(getString(R.string.cos_market_pass_coupons_title), passValue); | 157 | String fullText = String.format(getString(R.string.cos_market_pass_coupons_title), passValue); |
158 | int startIndex = fullText.indexOf(passValue); | 158 | int startIndex = fullText.indexOf(passValue); |
159 | int endIndex = startIndex + passValue.length(); | 159 | int endIndex = startIndex + passValue.length(); | ... | ... |
-
Please register or login to post a comment