02-19-2021, 04:23 PM
I went through the reference implementation you posted and got chatty to install properly. The biggest difficulty was running ninja -C build for chatty, I got a lot of errors like this:
I fixed the errors by appending the word 'extern' to the functions listed in the error messages and the command worked. For example:
becomes
I also built and installed the SMS plugin, carbos plugin, and libfeedback plug
I created a desktop file for the new Chatty and clicked on the new icon to launch it:
However, I'm still not able to receive images or emojis, and I tried running the new Chatty with wifi, then with only 4G, then I tried toggling between the four Verizon APNs listed (something like verizoniw, verizon internet, Verizon, and something else). I noticed I could send emojis but I don't remember if I could do that in Chatty previously or not. Each provider seems to be different so I wanted to post my experience and see if anyone has similar issues. Thank you for all your hard work!
Code:
/usr/bin/ld: src/chatty.p/chatty-folks.c.o:/home/mobian/chatty/build/../src/chatty-folks.h:27: multiple definition of `e_folks_modes'; src/chatty.p/chatty-conversation.c.o:/home/mobian/chatty/build/../src/chatty-folks.h:27: first defined here
I fixed the errors by appending the word 'extern' to the functions listed in the error messages and the command worked. For example:
Code:
vim /home/mobian/chatty/build/../src/chatty-folks.h
enum {
//code
} e_folks_modes;
becomes
Code:
extern enum {
// code
} e_folks_modes;
I also built and installed the SMS plugin, carbos plugin, and libfeedback plug
I created a desktop file for the new Chatty and clicked on the new icon to launch it:
Code:
mobian@mobian: cat ~/.local/share/applications/chattyMMS.desktop
[Desktop Entry]
Exec=/home/mobian/chatty/build/src/chatty
Type=Application
Name=chattyMMS
Icon=/home/mobian/.local/share/applications/mms.png
However, I'm still not able to receive images or emojis, and I tried running the new Chatty with wifi, then with only 4G, then I tried toggling between the four Verizon APNs listed (something like verizoniw, verizon internet, Verizon, and something else). I noticed I could send emojis but I don't remember if I could do that in Chatty previously or not. Each provider seems to be different so I wanted to post my experience and see if anyone has similar issues. Thank you for all your hard work!