Aliaksei Levin
Aliaksei Levin
Censorship circumvention is much harder then just finding a working IP through different sources. There is a lot of important implementation details, dependent on exact user account, which can't be...
It's a CMake bug. You need to update CMake or manually replace in the file example/java/td/lib/cmake/Td/TdTargets.cmake all 3 occurrences of "LINK_ONLY:td" with "LINK_ONLY:Td::td". Replacement should be case sensitive to not...
The class files and docs are placed relative to a folder specified using CMAKE_INSTALL_PREFIX option to cmake. Have you built from `build` folder and specified `-DCMAKE_INSTALL_PREFIX:PATH=..` to cmake?
Could you show value of `CMAKE_INSTALL_PREFIX` from `CMakeCache.txt`, for example, ``` grep CMAKE_INSTALL_PREFIX ~/Downloads/tdlib/example/java/build/CMakeCache.txt ``` ?
Thanks, @Koekerk.
It seems that KaiOS supports only HTML5-based apps. It is powered by Gecko, so it should be possible to use TDLib through WebAssembly to create such application. But there should...
TDLib 1.4.0 includes an [example](https://github.com/tdlib/td/tree/master/example/web) of TDLib usage in a browser and an NPM package [tdweb](https://www.npmjs.com/package/tdweb), which can be used to create an HTML5-based KaiOS app. But still there should...
@Bricolas This is a "hello world" project, not a real Telegram app for KaiOS.
@thiagoabreu You can try to wrap one of the pure JS implementations from the JavaScript contest https://contest.com/javascript-web-2.
Most of them don't use TDLib and instead reimplement everything from scratch. Between, the main difference between Asm.JS and WebAssembly in our tests was in uncompressed source size, but desktop...