Skip to content

Commit

Permalink
Version 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xsafter committed Sep 16, 2023
1 parent 4d6c2b1 commit af080c7
Show file tree
Hide file tree
Showing 10 changed files with 120 additions and 22 deletions.
20 changes: 19 additions & 1 deletion .idea/sonarlint/issuestore/index.pb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 19 additions & 1 deletion .idea/sonarlint/securityhotspotstore/index.pb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ android {

minSdk = 28
targetSdk = 34
versionCode = 4
versionName = "1.1.2"
versionCode = 5
versionName = "1.1.3"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Binary file modified app/release/app-arm64-v8a-release.apk
Binary file not shown.
Binary file modified app/release/app-armeabi-v7a-release.apk
Binary file not shown.
Binary file modified app/release/app-x86_64-release.apk
Binary file not shown.
20 changes: 10 additions & 10 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,35 +16,35 @@
}
],
"attributes": [],
"versionCode": 4,
"versionName": "1.1.2",
"versionCode": 5,
"versionName": "1.1.3",
"outputFile": "app-armeabi-v7a-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "arm64-v8a"
"value": "x86_64"
}
],
"attributes": [],
"versionCode": 4,
"versionName": "1.1.2",
"outputFile": "app-arm64-v8a-release.apk"
"versionCode": 5,
"versionName": "1.1.3",
"outputFile": "app-x86_64-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "x86_64"
"value": "arm64-v8a"
}
],
"attributes": [],
"versionCode": 4,
"versionName": "1.1.2",
"outputFile": "app-x86_64-release.apk"
"versionCode": 5,
"versionName": "1.1.3",
"outputFile": "app-arm64-v8a-release.apk"
}
],
"elementType": "File"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ConversationRepository @Inject constructor (val client: Client) {

suspend fun getMessages(conversation: Conversation): Flow<DecodedMessage> = flow {
val messages = conversation.messages().asFlow()
Log.d("MESSAGES", messages.toString())
//Log.d("MESSAGES", messages.toString())
val streamMessages = conversation.streamMessages()
val messageFlow = merge(messages, streamMessages)
emitAll(messageFlow)
Expand Down
74 changes: 67 additions & 7 deletions app/src/main/res/drawable/logo_dark.xml

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ osmdroidAndroid = "6.1.16"
pagingCompose = "3.2.0"
pagingRuntime = "3.2.0"
playServicesLocation = "21.0.1"
runtimeTracing = "1.0.0-alpha04"
sentryComposeAndroid = "6.28.0"
sentryAndroid = "6.28.0"
testng = "7.8.0"
Expand Down Expand Up @@ -76,6 +77,7 @@ androidx-material3 = { module = "androidx.compose.material3:material3", version.
androidx-paging-runtime = { module = "androidx.paging:paging-runtime", version.ref = "pagingRuntime" }
androidx-room-paging = { module = "androidx.room:room-paging", version.ref = "room" }
androidx-room-testing = { module = "androidx.room:room-testing", version.ref = "room" }
androidx-runtime-tracing = { module = "androidx.compose.runtime:runtime-tracing", version.ref = "runtimeTracing" }
androidx-test-ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-test-ext-junit" }
coil-svg = { module = "io.coil-kt:coil-svg", version.ref = "coilSvg" }
espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
Expand Down

0 comments on commit af080c7

Please sign in to comment.