Skip to content

Instantly share code, notes, and snippets.

View YoonKyoungTae's full-sized avatar

Yoon Kyoung Tae YoonKyoungTae

View GitHub Profile
@YoonKyoungTae
YoonKyoungTae / TextClock.xml
Created July 26, 2019 14:44
Layout Sample
<TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:format12Hour="hh:mm"
android:format24Hour="HH:mm"/>
class VersionCompare {
init {
compareVersion("1.0.0", "1.0.1")
compareVersion("1.0.0", "1.1.0")
compareVersion("1.0.0", "2.0.0")
compareVersion("1.0.9", "2.0.1")
compareVersion("1.9.0", "2.1.0")
compareVersion("4.0.0", "3.0.0")
}