Skip to content

Commit 3225fdb

Browse files
author
seal
committed
Release Version 1.1.1
Fix reflect overload methods would happen error
1 parent 5d1804d commit 3225fdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This is a tool library for Kotlin to use java reflect APIs in Kotlin simply meth
2020
* Apply library in dependency config:
2121
2222
```groovy
23-
compile 'wu.seal:kotlin-reflect-tools-for-android:1.1.0'
23+
compile 'wu.seal:kotlin-reflect-tools-for-android:1.1.1'
2424
```
2525
2626
## APIs
@@ -29,7 +29,7 @@ This is a tool library for Kotlin to use java reflect APIs in Kotlin simply meth
2929
|:------------- |:-------------|
3030
|Any.getPropertyValue(propertyName: String): Any?|get object property value by name|
3131
|Any.changePropertyValue(propertyName: String, newValue: Any?) |change object property value by name|
32-
|Any.changePropertyValueByPropertyReference(kProperty: KProperty<R>, newValue: Any?)|change object property value by name|
32+
|Any.changePropertyValueByPropertyReference(kProperty: KProperty<R>, newValue: Any?)|change object property value by property reference|
3333
|Any.invokeMethod(methodName: String, vararg args: Any?): Any?|invoke a method through object by method name|
3434
|<R> KProperty<R>.changeValue(thisObj: Any, newValue: Any?)|change current this property valuev|
3535
|<R> KProperty<R>.packageLevelGetPropertyValueByName(otherPropertyName: String): Any? |get other package level property value by other package level property name which is in the same kotlin file|

0 commit comments

Comments
 (0)