File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/java/com/smartarmenia/dotnetcoresignalrclient Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,5 +26,5 @@ dependencies {
2626 implementation ' com.android.support.constraint:constraint-layout:1.0.2'
2727 implementation " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
2828 implementation ' com.google.code.gson:gson:2.8.1'
29- compile project(path : ' :dotnetcoresignalrclient' )
29+ implementation project(path : ' :dotnetcoresignalrclient' )
3030}
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ dependencies {
2727 implementation ' com.android.support:appcompat-v7:26.1.0'
2828 implementation ' org.java-websocket:Java-WebSocket:1.3.4'
2929 implementation ' com.google.code.gson:gson:2.8.1'
30- compile " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
30+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
3131}
3232repositories {
3333 mavenCentral()
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import com.google.gson.JsonElement
55class SignalRMessage {
66 var invocationId: String? = null
77 var type: Int? = null
8- var target: String? = null
8+ var target: String? = null
99 var nonBlocking: Boolean? = null
10- var arguments: Array <JsonElement >? = null
10+ var arguments: Array <JsonElement >? = null
1111}
You can’t perform that action at this time.
0 commit comments