Skip to content

Instantly share code, notes, and snippets.

View tranthanh1699's full-sized avatar

Trần Thành tranthanh1699

View GitHub Profile
@tranthanh1699
tranthanh1699 / AdbCommands
Last active February 9, 2024 06:22 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@tranthanh1699
tranthanh1699 / AccountManager.cs
Created March 7, 2022 15:02 — forked from zhenyuan0502/AccountManager.cs
Account Manager for using Firebase with FirebaseAuthentication.net library
class AccountManager
{
private static AccountManager mInstance;
public static FirebaseAuthProvider mAuthProvider = new FirebaseAuthProvider(new FirebaseConfig("firebase_api_key"));
public FirebaseAuthLink mAuthLink;
public static bool IsSignOut = false;
public static AccountManager Instance()
{
if (mInstance == null)