Integrating Android SDK it broke my app ?!?
완료Hello,
I'm developing an application in Kotlin with compile and target sdk version 33, and minimum version 23.
the application has multiple activities for different purposes, and they have some custom animations (slide from / to right, on enter /exit), and all was working fine until I added the zendesk SDK. Even without instantiating anything, it just broke it all. Initially I was able to open the activities , but couldnt navigate back :O . Since some of my 3rd party libs were a bit outdated, I've updated them all, but now whenever I try to open an activity that uses the overridePendingTransitions, to use custom animations, it just shows a black screen.
I'm able though to click back.
If I remove all calls to overridePendingTransitions, it works fine, but with the pop from bottom animations (as default on my Sansung S8, with Android 9).
On an emulator of an android 33, everything seems to be working fine. Animations and all.
Do you have any ideas of what could be wrong? or where I should look ?
NOTE: all activities are based of AppCompactActivity, if that makes any difference.
Thanks in advance!
-
just for FYI
I managed to get this to work by excluding old libs that Zendek SDK is using , and probably creating some conflicts with my appcompat libs
implementation('com.zendesk:support:5.1.2') {
exclude group: 'androidx.appcompat', module: 'appcompat'
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8'
} -
Hey Sergio,
Glad to hear you got yourself sorted. Let us know if you need anything.
댓글을 남기려면 로그인하세요.
2 댓글