mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-19 03:29:28 +01:00
Update configuration
This commit is contained in:
parent
b9503a0869
commit
a517fb75c9
@ -161,7 +161,7 @@ ext {
|
||||
work_version = "2.3.0-alpha02"
|
||||
koin_version = "2.1.0-alpha-1"
|
||||
lifecycle_version = "2.2.0-rc01"
|
||||
coil_version = "0.9.0"
|
||||
coil_version = "0.9.1"
|
||||
room_version = "2.2.3"
|
||||
}
|
||||
|
||||
@ -299,7 +299,6 @@ dependencies {
|
||||
implementation "io.coil-kt:coil:${coil_version}"
|
||||
implementation "io.coil-kt:coil-gif:${coil_version}"
|
||||
implementation "io.coil-kt:coil-svg:${coil_version}"
|
||||
//implementation 'com.github.coil-kt:coil:9769e11f19'
|
||||
|
||||
implementation 'com.github.natario1:Autocomplete:v1.1.0'
|
||||
|
||||
|
@ -205,14 +205,12 @@ class ConversationItem(
|
||||
if (conversationDrawable != null) {
|
||||
load(conversationDrawable)
|
||||
} else {
|
||||
if (model.name?.contains("marco") == false) {
|
||||
load(ApiUtils.getUrlForAvatarWithName(
|
||||
user.baseUrl,
|
||||
model.name, R.dimen.avatar_size))
|
||||
{
|
||||
addHeader("Authorization", user.getCredentials())
|
||||
transformations(CircleCropTransformation())
|
||||
}
|
||||
load(ApiUtils.getUrlForAvatarWithName(
|
||||
user.baseUrl,
|
||||
model.name, R.dimen.avatar_size))
|
||||
{
|
||||
addHeader("Authorization", user.getCredentials())
|
||||
transformations(CircleCropTransformation())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -36,10 +36,9 @@
|
||||
|
||||
<ImageView
|
||||
android:id="@id/dialogAvatar"
|
||||
android:layout_width="@dimen/small_item_height"
|
||||
android:layout_height="@dimen/small_item_height"
|
||||
android:contentDescription="@null"
|
||||
tools:src="@drawable/ic_call_black_24dp" />
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:scaleType="centerCrop" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/passwordProtectedRoomImageView"
|
||||
|
@ -29,12 +29,11 @@
|
||||
|
||||
# Specifies the JVM arguments used for the daemon process.
|
||||
# The setting is particularly useful for tweaking memory settings.
|
||||
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=4096m
|
||||
org.gradle.jvmargs=-Xms1024m -Xmx8000m
|
||||
|
||||
android.useAndroidX=true
|
||||
android.enableJetifier=true
|
||||
|
||||
# org.gradle.parallel=true
|
||||
org.gradle.daemon=true
|
||||
org.gradle.configureondemand=true
|
||||
org.gradle.caching=true
|
||||
|
Loading…
Reference in New Issue
Block a user