Skip to content

Instantly share code, notes, and snippets.

View sebhuet's full-sized avatar

Sébastien Huet sebhuet

View GitHub Profile
@sebhuet
sebhuet / AdbCommands
Created May 31, 2021 08:16 — 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
@sebhuet
sebhuet / JniObject.cpp
Created November 22, 2016 12:57 — forked from sp-miguel-ibero/JniObject.cpp
Social Point JniObject
#include "JniObject.hpp"
#include <algorithm>
Jni::Jni():
_java(nullptr), _env(nullptr)
{
}
Jni::Jni(const Jni& other)