🏴☠️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: "java" | |
| apply plugin: "eclipse" | |
| apply plugin: "maven" | |
| apply plugin: "findbugs" | |
| apply plugin: "pmd" | |
| def defaultEncoding = 'UTF-8' | |
| [compileJava, compileTestJava]*.options*.encoding = defaultEncoding | |
| sourceCompatibility = 1.7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.b22n.android.database; | |
| import java.lang.ref.WeakReference; | |
| import android.annotation.SuppressLint; | |
| import android.content.ContentResolver; | |
| import android.content.ContentValues; | |
| import android.database.Cursor; | |
| import android.net.Uri; | |
| import android.os.Handler; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Resources marked with > are used, have been used, or are actively advocated in the threads. This applies for everything in the [Necessities] section. | |
| [Necessities] | |
| Hiragana & Katakana: http://www.realkana.com/ | |
| Kanji: http://kanjidamage.com/ | |
| Japanese IME: http://www.google.com/intl/ja/ime/ | |
| Anki Flashcards: http://ankisrs.net/ | |
| Genki (↓Bottom↓) | |
| Tae Kim Japanese: http://www.guidetojapanese.org/learn/grammar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.android.volley.toolbox.HurlStack; | |
| import com.squareup.okhttp.OkHttpClient; | |
| import java.io.IOException; | |
| import java.net.HttpURLConnection; | |
| import java.net.URL; | |
| /** | |
| * An {@link com.android.volley.toolbox.HttpStack HttpStack} implementation which | |
| * uses OkHttp as its transport. | |
| */ |
NewerOlder