Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Room Park Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav Bogdashkin
Room Park Android
Commits
345acb4f
Commit
345acb4f
authored
Sep 24, 2019
by
Vladislav Bogdashkin
🎣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added rxJava (3.0.0 rc03)
parent
fb5fc928
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
1 deletion
+32
-1
build.gradle
app/build.gradle
+3
-0
AuthContract.kt
...m/biganto/visual/roompark/domain/contract/AuthContract.kt
+10
-0
auth.kt
...ain/java/com/biganto/visual/roompark/domain/model/auth.kt
+12
-0
authUseCase.kt
...om/biganto/visual/roompark/domain/use_case/authUseCase.kt
+6
-0
dependencies.gradle
dependencies.gradle
+1
-1
No files found.
app/build.gradle
View file @
345acb4f
...
...
@@ -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'
...
...
app/src/main/java/com/biganto/visual/roompark/domain/contract/AuthContract.kt
0 → 100644
View file @
345acb4f
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
app/src/main/java/com/biganto/visual/roompark/domain/model/auth.kt
0 → 100644
View file @
345acb4f
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
app/src/main/java/com/biganto/visual/roompark/domain/use_case/authUseCase.kt
0 → 100644
View file @
345acb4f
package
com.biganto.visual.roompark.domain.use_case
/**
* Created by Vladislav Bogdashkin on 24.09.2019.
*/
dependencies.gradle
View file @
345acb4f
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment