Aliaksei Levin
Aliaksei Levin
There is the method `optimizeStorage`.
It is done to preserve the total order of sent media files, including stickers. For example, we shouldn't change order of sent photos and videos, even some of them was...
File identifiers aren't persistent and are valid only until TDLib instance is closed. Apps supposed to save nothing between TDLib restarts. The correct approach is to fetch the message from...
> Will getMessage use network request or assemble result from local copy? If a request is possible to complete locally, it will be completed locally. > And when user will...
You need to check TDLib logs with verbosity level at least 3.
This is not possible. TDLib logs can only slow down execution.
By default log is written to stderr, not a file. If an unaccessible path is specified in `setLogStream`, then the method will return an error.
This makes sense. You actually had logs enabled from the very beginning and writing data to stderr can be very slow if stderr is tied with a terminal.
Bindings for specific languages are provided by third-party developers. You need to create an issue in repository of the specific wrapper, or try any other wrapper from https://github.com/tdlib/td/blob/master/example/README.md#dart.
libtdjson.so should be built using Android NDK to be used on Android. Prebuilt Android library provides only JNI interface, so if you want to use JSON interface, you need to...