zom / Zom-iOS-XMPP

THIS PROJECT IS NOW CLOSED. WE HAVE MOVED TO A NEW ZOM 2.0 MATRIX CORE. FOLLOW THE LINK!
https://github.com/zom/zom-ios-matrix
Mozilla Public License 2.0
37 stars 23 forks source link

In 'Add Friends' pull WhatsApp and iMessage icons from app code #605

Closed cstiens closed 6 years ago

cstiens commented 6 years ago

@N-Pex @tladesignz Is there any way on iOS that we can pull the app icons for WhatsApp and iMessage from their app code instead of using static images in our UI. If we can make them live, we would avoid being outdated. ;) I know we've done this on Android in the past.

tladesignz commented 6 years ago

Sorry, but this is not possible. Apps don't have access to stuff outside their sandbox and other's apps icons are on the outside. Besides that, these icons can change in a way, which could break our design, so in that regard, that's also not a good idea.

Even though this might be possible on Android, it's discouraged to do so there, too.

The only way I could think of to achieve something like this, would be by loading icons from a web service. But that would introduce a dependency on a (foreign) web service and add dangerous traffic which might leak information.

cstiens commented 6 years ago

Got it. Thanks!