Skip to content

Instantly share code, notes, and snippets.

View krllus's full-sized avatar
🏠
Working from home

João Carlos Ferreira Marques krllus

🏠
Working from home
  • Stone Pagamentos
  • Goiania, Goias
View GitHub Profile
@krllus
krllus / AdbCommands
Created February 11, 2021 12:03 — 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
@krllus
krllus / ParcelableUtils.java
Created September 10, 2016 13:23 — forked from keyboardr/ParcelableUtils.java
Utility class for dealing with Parcelables. Handles null checks for objects, and parcels some common non-Parcelable classes
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.os.Parcel;
import android.os.Parcelable;
/*
* Copyright 2013 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software