Panagiotis Triantafyllou

feedback fixes

...@@ -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.4.6rc73' 5 + PUBLISH_VERSION = '4.5.4.6rc74'
6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk' 6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk'
7 } 7 }
8 8
......
...@@ -640,7 +640,7 @@ public class LoyaltyWallet extends Activity implements View.OnClickListener, Vie ...@@ -640,7 +640,7 @@ public class LoyaltyWallet extends Activity implements View.OnClickListener, Vie
640 SpannableStringBuilder sBuilderComma = new SpannableStringBuilder(getString(R.string.cos_comma)); 640 SpannableStringBuilder sBuilderComma = new SpannableStringBuilder(getString(R.string.cos_comma));
641 sBuilderDFY.setSpan(typefaceBoldSpanDFY, 0, sBuilderDFY.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); 641 sBuilderDFY.setSpan(typefaceBoldSpanDFY, 0, sBuilderDFY.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
642 sBuilderComma.setSpan(typefaceBoldSpanDFY, 0, sBuilderComma.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); 642 sBuilderComma.setSpan(typefaceBoldSpanDFY, 0, sBuilderComma.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
643 - textView.setText(sBuilder, TextView.BufferType.SPANNABLE); 643 + textView.setText(sBuilderDFY, TextView.BufferType.SPANNABLE);
644 textView.setTextIsSelectable(true); 644 textView.setTextIsSelectable(true);
645 textViewComma.setText(sBuilderComma, TextView.BufferType.SPANNABLE); 645 textViewComma.setText(sBuilderComma, TextView.BufferType.SPANNABLE);
646 mLlActiveCodesView.addView(v, 0, new ViewGroup.LayoutParams( 646 mLlActiveCodesView.addView(v, 0, new ViewGroup.LayoutParams(
......