Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #215

Merged
merged 20 commits into from
Feb 25, 2024
Merged

Dev #215

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9c75757
- update: fix issue with dualsim in pixel devices
sherlockwisdom Feb 16, 2024
764df7e
- fix
sherlockwisdom Feb 16, 2024
e7117bc
update: added new way of managing the existing records without migrat…
sherlockwisdom Feb 20, 2024
792816b
- update: still working on RMQ. Something changed in services which m…
sherlockwisdom Feb 21, 2024
46982de
- update: the problem had been with the channels processing sent and …
sherlockwisdom Feb 21, 2024
d15a3b5
- update: factory exist multiple times and as such it recovers itself…
sherlockwisdom Feb 22, 2024
7e528bb
- update: version used by CHPR for continues delivery and sending
sherlockwisdom Feb 22, 2024
c2f68c8
- update: can delete Gateway clients projects
sherlockwisdom Feb 23, 2024
6d9ea14
- update: singleton database structure
sherlockwisdom Feb 23, 2024
a7faad2
- update: modified the PagingSource between the Search and Conversati…
sherlockwisdom Feb 23, 2024
91a449e
- update: migration test pass
sherlockwisdom Feb 23, 2024
4aa7e44
- update: migration test pass
sherlockwisdom Feb 23, 2024
1252a11
- update: let the migrations be automatic
sherlockwisdom Feb 23, 2024
adbaeb8
- update: major refactor to maintain things in singleton form
sherlockwisdom Feb 23, 2024
62f9f94
- update: not tested, but changed how muting works from the db level
sherlockwisdom Feb 23, 2024
a5b9990
- update: more working testing out the mute and unmute functions
sherlockwisdom Feb 23, 2024
1ebb65e
- update: more working testing out the mute and unmute functions
sherlockwisdom Feb 23, 2024
2bf65ce
- update: fixed issue with block manager
sherlockwisdom Feb 24, 2024
edc34b8
- update: fixed issue with Contact Names
sherlockwisdom Feb 25, 2024
9a7d9bb
Merge branch 'staging' into dev
sherlockwisdom Feb 25, 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
6 changes: 6 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,17 @@ android {
// generateLocaleConfig true
// }
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())

main {
jniLibs.srcDirs = ['libs']
java {
exclude 'com/afkanerd/deku/Images/Images/'
/* The holder name I want to excludes its all classes */
}
resources {
srcDirs 'src/main/resources'
}
}
}

Expand Down Expand Up @@ -121,6 +126,7 @@ android {

dependencies {
implementation project(':smswithoutborders_libsignal-doubleratchet')
implementation 'androidx.room:room-testing:2.6.1'
def paging_version = "3.2.1"

testImplementation 'junit:junit:4.13.2'
Expand Down
Loading