Skip to content

Instantly share code, notes, and snippets.

@ZaelAndrew11
ZaelAndrew11 / SendNotification.java
Created December 23, 2017 12:12
Notifications
package cl.aguzman.proyectofinal.notifications;
import android.os.AsyncTask;
import android.util.Log;
import org.json.JSONObject;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
@ZaelAndrew11
ZaelAndrew11 / SplashActivity.java
Created October 17, 2017 01:28
Start Service splash activity
package com.desafiolatam.desafioface.views.splash;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Handler;
import android.support.v4.content.LocalBroadcastManager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
@ZaelAndrew11
ZaelAndrew11 / Nodes.java
Created September 5, 2017 02:22
Desafío 001 - E8
package cl.aguzman.desafioe08_1;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
public class Nodes {
private DatabaseReference root = FirebaseDatabase.getInstance().getReference();
public DatabaseReference getReference() {
return root;