Skip to content

Commit 4eb292a

Browse files
committed
Project: Bump to 0.2.0
Signed-off-by: Fung <fython@163.com>
1 parent 1ff9a78 commit 4eb292a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
BUILD_TOOLS_VERSION=26.0.0
1+
BUILD_TOOLS_VERSION=26.0.1
22
org.gradle.jvmargs=-Xmx1536m
3-
VERSION_NAME=0.1.6
3+
VERSION_NAME=0.2.0
44
TARGET_SDK_VERSION=26
5-
VERSION_CODE=5
5+
VERSION_CODE=6
66
MIN_SDK_VERSION=19

kotlinyan-appcompat-support/src/main/kotlin/moe/feng/kotlinyan/common/Properties.kt renamed to kotlinyan-appcompat-support/src/main/kotlin/moe/feng/kotlinyan/compat/Properties.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
package moe.feng.kotlinyan.common
1+
package moe.feng.kotlinyan.compat
22

33
import android.annotation.TargetApi
44
import android.graphics.Typeface
55
import android.graphics.drawable.Drawable
66
import android.support.v4.app.Fragment
77
import android.view.View
8+
import moe.feng.kotlinyan.common.LazyGetNonNullView
9+
import moe.feng.kotlinyan.common.LazyGetView
10+
import moe.feng.kotlinyan.common.ResourcesProperty
811

912
fun <T: View> Fragment.findView(viewId: Int): LazyGetView<Fragment, T?> {
1013
return LazyGetView(viewId, { fragment, id -> fragment.view?.findViewById(id) }, dontLazy = true)

0 commit comments

Comments
 (0)