Skip to content

Instantly share code, notes, and snippets.

View stillie's full-sized avatar

Stillie stillie

  • Earth
View GitHub Profile
@stillie
stillie / Log
Last active April 29, 2019 10:04 — forked from shkschneider/Log
Android Log helper (automatic class, method and line) replacing android.util.Log
package me.shkschneider.skeleton.helper;
import android.text.TextUtils;
import android.util.Log;
/**
* Improved android.util.Log.
*
* Logs class and method automatically:
* [MyApplication onCreate():34] Hello, world!
@stillie
stillie / AuthActivity.java
Created October 4, 2018 05:54 — forked from donaldhuebner/AuthActivity.java
Verifying Google Play Services
public class AuthActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
@Override