Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f65f8d2
Update the minimum yml changes to make ci working
TonyTangAndroid Sep 15, 2024
27ed6e7
Update the minimum gradle changes to support android api 30 Robolectr…
TonyTangAndroid Sep 15, 2024
e643582
Add rxjava2 as test dependencies
TonyTangAndroid Sep 15, 2024
16bb64b
Add more SimpleStore and AtomicFile integration test
TonyTangAndroid Sep 15, 2024
dbad1e5
Fix the race condition issue on creating the parent folder.
TonyTangAndroid Sep 15, 2024
3997ec0
Add AtomicFileConcurrentTest.kt
TonyTangAndroid Sep 15, 2024
5cc34ad
Add AtomicFileConcurrentTest.kt that reproducing the failed exception
TonyTangAndroid Sep 15, 2024
8685557
Bump up the ci
TonyTangAndroid Sep 15, 2024
8c1bc76
Use `./gradlew spotlessApply` to fix the file format.
TonyTangAndroid Sep 15, 2024
24f5f0f
Fix the release ci
TonyTangAndroid Sep 15, 2024
cfe78e0
Fix the main ci
TonyTangAndroid Sep 15, 2024
09c9fb8
Fix the main ci
TonyTangAndroid Sep 15, 2024
2ef8720
Fix the main ci by bumping down malinskiy/action-android
TonyTangAndroid Sep 15, 2024
115d2ef
Fix the main ci by using RIBs
TonyTangAndroid Sep 15, 2024
1733e14
Fix the main ci by using pure RIBs script
TonyTangAndroid Sep 15, 2024
fd3fa2f
Only apply to pull request
TonyTangAndroid Sep 15, 2024
1419aa7
Make the ConcurrentTestUtil more intensive
TonyTangAndroid Sep 15, 2024
a677929
Ignore the flaky test
TonyTangAndroid Sep 15, 2024
0438626
Refine the test comment
TonyTangAndroid Sep 15, 2024
e68a3a9
Keep original changes.
TonyTangAndroid Sep 15, 2024
faf1391
Apply the minimum fix with test code
TonyTangAndroid Sep 15, 2024
9446f54
Apply java.nio.file.Files.createDirectories for Android SDK 26 or lat…
TonyTangAndroid Sep 16, 2024
bf929c9
Revert "Apply java.nio.file.Files.createDirectories for Android SDK 2…
TonyTangAndroid Sep 16, 2024
790a1f2
Revert "Apply the minimum fix with test code"
TonyTangAndroid Sep 16, 2024
5b77bd7
resolveParentFolder with Files.createDirectories without concurrent fix
TonyTangAndroid Sep 16, 2024
c2eae06
Revert "resolveParentFolder with Files.createDirectories without conc…
TonyTangAndroid Sep 16, 2024
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
1 change: 1 addition & 0 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def androidx = [
]

def test = [
concurrentunit : 'net.jodah:concurrentunit:0.4.6',
junit : 'junit:junit:4.13.1',
junitX : 'androidx.test.ext:junit:1.0.0',
truth : 'com.google.truth:truth:1.1',
Expand Down
1 change: 1 addition & 0 deletions simplestore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ dependencies {
testImplementation deps.test.junitX
testImplementation deps.test.truth
testImplementation deps.test.truthX
testImplementation deps.test.concurrentunit
testImplementation deps.test.robolectric

androidTestImplementation deps.test.runner
Expand Down