Commit 345acb4f authored by Vladislav Bogdashkin's avatar Vladislav Bogdashkin 🎣

added rxJava (3.0.0 rc03)

parent fb5fc928
......@@ -93,6 +93,9 @@ dependencies {
transitive = true;
}
//RxJava
implementation "io.reactivex.rxjava3:rxjava:$rxJavaVersion"
//Tests
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
......
package com.biganto.visual.roompark.domain.contract
/**
* Created by Vladislav Bogdashkin on 24.09.2019.
*/
interface AuthContract {
// fun signInt(email:String,password:String): Observable<AuthInfoModel>
}
\ No newline at end of file
package com.biganto.visual.roompark.domain.model
/**
* Created by Vladislav Bogdashkin on 24.09.2019.
*/
data class AuthInfoModel(
val token:String,
val id:Int,
val name:String,
val email:String
)
\ No newline at end of file
package com.biganto.visual.roompark.domain.use_case
/**
* Created by Vladislav Bogdashkin on 24.09.2019.
*/
......@@ -18,5 +18,5 @@ ext {
koinVersion = '2.0.1'
timberVersion = '4.7.1'
picassoVersion = '2.71828'
rxJavaVersion = '3.0.0-RC3'
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment