added generic click listener for recyclerview holder, layout fix, added directmessage to home page

This commit is contained in:
nuclearfog 2022-12-03 20:23:50 +01:00
parent 0216c7f555
commit 37613d2277
No known key found for this signature in database
GPG Key ID: 03488A185C476379

View File

@ -18,17 +18,17 @@ public class Tokens {
* false means there are no API keys available
* set to true when {@link #CONSUMER_TOKEN} and {@link #TOKEN_SECRET} are set
*/
public static final boolean USE_DEFAULT_KEYS = true;
public static final boolean USE_DEFAULT_KEYS = false;
/**
* add here your consumer token
*/
private static final String CONSUMER_TOKEN = "wpZaXeqDEQzgJsdRUAAbzAS3V";
private static final String CONSUMER_TOKEN = "xxx";
/**
* add here your token secret
*/
private static final String TOKEN_SECRET = "5V80dYmX0w3XDWSykFIsJhOh8HP6JxImMxdcveY7TDa29V25Mz";
private static final String TOKEN_SECRET = "xxx";
private static Tokens instance;