mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-02-07 14:58:24 +00:00
Added protobuf javalite dependency to parse native crash tombstone
This commit is contained in:
parent
7076acc540
commit
7b115caf61
2 changed files with 5 additions and 0 deletions
|
|
@ -179,6 +179,9 @@ dependencies {
|
|||
//noinspection GroovyConstructorNamedArguments
|
||||
android.defaultConfig.manifestPlaceholders = [appAuthRedirectScheme: 'org.linphone']
|
||||
|
||||
// To be able to parse native crash tombstone and print them with SDK logs the next time the app will start
|
||||
implementation "com.google.protobuf:protobuf-javalite:3.22.3"
|
||||
|
||||
//noinspection GradleDynamicVersion
|
||||
implementation 'org.linphone:linphone-sdk-android:5.4.+'
|
||||
}
|
||||
|
|
|
|||
|
|
@ -101,6 +101,8 @@ class ConversationMediaListFragment : SlidingPaneChildFragment() {
|
|||
return true
|
||||
}
|
||||
}
|
||||
// This isn't supported by GridLayoutManager, it will crash
|
||||
// layoutManager.stackFromEnd = true
|
||||
binding.mediaList.layoutManager = layoutManager
|
||||
|
||||
if (binding.mediaList.adapter != adapter) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue