implement commenting with tips ()

* implement commenting with tips
* add comments to channel page
This commit is contained in:
Akinwale Ariwodola 2020-05-31 21:06:03 +01:00 committed by GitHub
parent e85ca9114c
commit 1d97f9008d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 2041 additions and 336 deletions
app/src/main/java/io/lbry/browser/utils

View file

@ -70,6 +70,7 @@ public final class Helper {
public static final MediaType JSON_MEDIA_TYPE = MediaType.get("application/json; charset=utf-8");
public static final int CONTENT_PAGE_SIZE = 25;
public static final double MIN_DEPOSIT = 0.001;
public static final String PLAIN_CURRENCY_FORMAT_PATTERN = "####.##";
public static final String LBC_CURRENCY_FORMAT_PATTERN = "#,###.##";
public static final String FILE_SIZE_FORMAT_PATTERN = "#,###.#";
public static final DecimalFormat LBC_CURRENCY_FORMAT = new DecimalFormat(LBC_CURRENCY_FORMAT_PATTERN);