Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b9d3df2
Creating a DAO for the Comments room table.
develric Jul 30, 2021
92b4d2f
Adding the Comments DAO to the database with migration.
develric Jul 30, 2021
1afd124
Adding db version 3 schema.
develric Jul 30, 2021
756f0c6
Adding room testing support for androidTest.
develric Jul 30, 2021
3d7ae9d
Testing the DAO.
develric Jul 30, 2021
6f54e86
Testing the migration.
develric Jul 30, 2021
2ead92c
Fixing lint.
develric Jul 30, 2021
d4c6f98
Adding a wrapper for CommentErrorUtils.
develric Jul 30, 2021
61aaef6
Adding a generic class to host the data and errors from the clients A…
develric Jul 30, 2021
0535440
Adding utility class to map between DTO <-> Entity <-> Legacy Comment…
develric Jul 30, 2021
1de3e5d
Adding a wrapper for DateTimeUtils.
develric Jul 30, 2021
530f7ad
Porting rest and xmlrpc clients to kotlin.
develric Jul 30, 2021
0be66b1
Testing the comments mapper.
develric Jul 30, 2021
7408c01
Testing the rest client.
develric Jul 30, 2021
e6d3ce5
Testing the xmlrpc client.
develric Jul 30, 2021
9af8360
Fixing lint.
develric Jul 30, 2021
ebd16f8
Removing superseded todo.
develric Jul 30, 2021
3e454d6
Adding actions to allow comment code not yet ported with the unificat…
develric Jul 30, 2021
a404859
Porting the CommentStore to kotlin with coroutines. We also included …
develric Jul 30, 2021
df27bbb
Testing the CommentsStore.
develric Jul 30, 2021
89ab41d
Adding default error message.
develric Jul 30, 2021
8366ec0
Fixing lint.
develric Jul 30, 2021
3435e83
Merge pull request #2078 from wordpress-mobile/feature/uc-v1-room-db
khaykov Jul 30, 2021
6a38e01
Merge pull request #2079 from wordpress-mobile/feature/uc-v1-network-…
khaykov Jul 30, 2021
84bef13
Merge pull request #2080 from wordpress-mobile/feature/uc-v1-comments…
khaykov Jul 30, 2021
023719c
Defending against possible null value in comments.
develric Jul 31, 2021
bb8101c
Merge branch 'develop' into feature/uc-v1-feature-branch
develric Aug 5, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ android {
}
}
}

sourceSets {
// Adds exported schema location as test app assets.
getByName("androidTest").assets.srcDirs += "$projectDir/../fluxc/schemas"
}
}

if (["tests.properties", "tests.properties-extra"].any { file(it).exists() }) {
Expand Down Expand Up @@ -115,6 +120,7 @@ dependencies {
implementation "androidx.room:room-runtime:$roomVersion"
kapt "androidx.room:room-compiler:$roomVersion"
implementation "androidx.room:room-ktx:$roomVersion"
androidTestImplementation "androidx.room:room-testing:$roomVersion"

// Dagger
implementation "com.google.dagger:dagger:$daggerVersion"
Expand Down
Loading