mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-23 17:47:28 +00:00
* add instant verification options and Google Play Billing bumpversion 0.15.16 --> 0.15.17 restore account_undergo_review default string twitter sign-in flow fix build error final changes update api key and secret * tweak build script
8 lines
199 B
Java
8 lines
199 B
Java
package io.lbry.browser.tasks;
|
|
|
|
import io.lbry.browser.model.TwitterOauth;
|
|
|
|
public interface TwitterOauthHandler {
|
|
void onSuccess(TwitterOauth twitterOauth);
|
|
void onError(Exception error);
|
|
}
|