We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 218d600 + 317646b commit b271d85Copy full SHA for b271d85
pluto-kotlin-client-sdk/build.gradle
@@ -4,8 +4,8 @@ apply plugin: 'kotlin-android-extensions'
4
apply plugin: 'maven-publish'
5
6
buildscript {
7
- ext.versionCode = 15
8
- ext.versionName = '0.7'
+ ext.versionCode = 16
+ ext.versionName = '0.7.1'
9
}
10
11
android {
pluto-kotlin-client-sdk/src/main/java/com/mushare/plutosdk/PlutoUser.kt
@@ -46,5 +46,8 @@ data class PlutoUser(
46
47
val google: Binding?
48
get() = bindings.firstOrNull { it.loginType == Pluto.LoginType.GOOGLE }
49
+
50
+ val wechat: Binding?
51
+ get() = bindings.firstOrNull { it.loginType == Pluto.LoginType.WECHAT }
52
53
0 commit comments