Added protobuf javalite dependency to parse native crash tombstone

This commit is contained in:
Sylvain Berfini 2024-03-28 13:04:51 +01:00
parent 7076acc540
commit 7b115caf61
2 changed files with 5 additions and 0 deletions

View file

@ -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.+'
}

View file

@ -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) {