Skip to content

Instantly share code, notes, and snippets.

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

Quessada

🏠
Working from home
View GitHub Profile

Wallpapers

Install with git git clone https://gist.github.com/85942af486eb79118467.git ~/Pictures/wallpapers

@Quessada
Quessada / Exemplo.java
Created May 23, 2018 03:46 — forked from elcioabrahao/Exemplo.java
Exemplo de código para solicitar permissões no Android M (6.0 Marchmellow)
// Exemplo de chamada:
requestPermissions();
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
switch (requestCode){
case REQUEST_CODE_PERMISSION:
if(grantResults[0] == PackageManager.PERMISSION_GRANTED){