Skip to content

Commit

Permalink
Compile to implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Gurgen committed Sep 25, 2017
1 parent 31ef682 commit 8e31604
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ dependencies {
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.google.code.gson:gson:2.8.1'
compile project(path: ':dotnetcoresignalrclient')
implementation project(path: ':dotnetcoresignalrclient')
}
2 changes: 1 addition & 1 deletion dotnetcoresignalrclient/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'org.java-websocket:Java-WebSocket:1.3.4'
implementation 'com.google.code.gson:gson:2.8.1'
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}
repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.google.gson.JsonElement
class SignalRMessage {
var invocationId: String? = null
var type: Int? = null
var target:String? = null
var target: String? = null
var nonBlocking: Boolean? = null
var arguments:Array<JsonElement>? = null
var arguments: Array<JsonElement>? = null
}

0 comments on commit 8e31604

Please sign in to comment.