Question about having 2 Whatsapps on the same phone - General Questions and Answers

I need to set up an alternative Whatsapp for work and generally people I don't trust.
I installed Whatsapp in Parallel Space
I got a free alternative number with the Flyp app (very handy). I don't plan to make any calls, only text.
I was now going to proceed to confirm the Whatsapp installed in Parallel Space with the Flyp number so in theory, only people that have that number could see me, but what I don't get is:
Whatsapp looks at your SIM card contacts. Parallel Space's Whatsapp is also looking at this same SIM card contact list even if I confirmed the Whatsapp account with another number.
So wouldn't they see that it's me but with another number?
How the hell I guarantee they don't find out? (as in, how do I keep contacts separated from one Whatsapp to another???)
Please help

Related

[Q] SMS to SIM app?

Hey guys,
I'm looking to ditch my Desire in a month or two for a Samsung Focus, the only problem is that I want to save a LOT of my SMS messages to my SIM card, but haven't found one solution to this. I've searched around for an app that can export all of my messages to my SIM (not just one-by-one), but haven't found anything. I know there's apps that export your SMS stuff to the microSD card, but I'm pretty sure the only way to retrieve your old SMS messages on Windows Phone 7 (at least from vacating another OS) is to grab them from your SIM card. I've looked around and have found some Gmail apps that backup your messages to your Gmail account, but that is not what I'm looking for.
If any of you guys can give some advice on how to do this, please respond as soon as you can. I really would hate to lose 3800 messages.
Thanks!

[Q] Viber mixes up all names

After recovering viber + data with titanium backup every time I have updated my rom, it suddenly started to mix up the names in all the conversations a couple of months ago.
My fathers name is on me and my sisters conversation and my father is named some random name from my contact list that does not have viber, but still it shows an image of him.
Everytime I recover viber the names are different. I wonder what my dad is going to be named now?
This has been driving me crazy as I have sent a message to wrong person thinking I sent it to the right several times.
What to do? I don't want to remove viber completely with all it´s data because I have conversations that I want to keep.
Anyone?
boeing94 said:
After recovering viber + data with titanium backup every time I have updated my rom, it suddenly started to mix up the names in all the conversations a couple of months ago.
My fathers name is on me and my sisters conversation and my father is named some random name from my contact list that does not have viber, but still it shows an image of him.
Everytime I recover viber the names are different. I wonder what my dad is going to be named now?
This has been driving me crazy as I have sent a message to wrong person thinking I sent it to the right several times.
What to do? I don't want to remove viber completely with all it´s data because I have conversations that I want to keep.
Click to expand...
Click to collapse
This happens because Viber keeps Android contact IDs in its database and the contact IDs change when you update your ROM, wipe your contacts and then set up your contacts again (e.g. by syncing to Google)
If you know SQL then you can fix the data by hand - I had the same problem.
Install sqlite3 on your computer (it comes with Mac OS X), then pull the Viber databases in /data/data/com.viber.voip/databases and the Android contacts databases in /data/data/com.android.providers.contacts/databases onto your computer.
Look in the contacts table in /data/data/com.android.providers.contacts/databases/contacts2.db to find the new IDs of the contacts who you use Viber to send messages to. Then look in the participants table in /data/data/com.viber.voip/databases/viber_messages to find out the OLD contact IDs that viber is using. Then update viber_messages and participants, for example I needed to change old contact ID 1364 to new contact ID 683 and old contact ID 1440 to new contact ID 1666 and I used these statements:
Code:
update messages set person = 683 where person = 1364;
update messages set person = 1666 where person = 1440;
update participants set contact_name = display_name, contact_id = 683 where contact_id = 1364;
update participants set contact_name = display_name, contact_id = 1666 where contact_id = 1440;
When you're done push the Viber messages database back to your phone. Use these commands (change 10065 to the user ID for Viber on your phone):
Code:
adb shell 'rm /data/data/com.viber.voip/databases/viber_messages*'
adb push viber_messages /data/data/com.viber.voip/databases/
adb shell chmod 660 /data/data/com.viber.voip/databases/viber_messages*
adb shell chown 10065 /data/data/com.viber.voip/databases/viber_messages*
adb shell chgrp 10065 /data/data/com.viber.voip/databases/viber_messages*
Viber is crap program
caused me many problems in the past. some contacts names doesnt show up!!
Hi everyone,
This is an official member of the Viber R&D Team. I'm here to provide direct support.
About the Titanium backup issue - please note that Titanium is a third-party application that does not officially link to Viber, and so we (Viber) naturally cannot guarantee that it will smoothly work with Viber's features.
You might want to contact Titanium developers for more information and assistance
@The Prince1 -
The source of this issue could greatly vary. Please read this short page in our HelpDesk, outlining some possible workarounds that will help reboot synchronization of the contact list: http://bit.ly/rRtPqk
(The instructions refer to iPhone, but are relevant to all phones nevertheless).
Viber Team said:
Hi everyone,
This is an official member of the Viber R&D Team. I'm here to provide direct support.
About the Titanium backup issue - please note that Titanium is a third-party application that does not officially link to Viber, and so we (Viber) naturally cannot guarantee that it will smoothly work with Viber's features.
You might want to contact Titanium developers for more information and assistance
@The Prince1 -
The source of this issue could greatly vary. Please read this short page in our HelpDesk, outlining some possible workarounds that will help reboot synchronization of the contact list: http://bit.ly/rRtPqk
(The instructions refer to iPhone, but are relevant to all phones nevertheless).
Click to expand...
Click to collapse
Thanks for your answer! I really appreciate that Viber team are answering questions out on the forums cause this is not the first time I see you around. I can really notice a presence of you guys.
I will continue using Viber despite my problems(that I do not blame you for, after all Titanium backup is a third-party application) with it.
On topic: I will look further into this, probably using SQL.
It's our pleasure to help!
If you have any more questions/suggestions for us in the future, please don't hesitate to contact me again
Viber Team said:
Hi everyone,
About the Titanium backup issue - please note that Titanium is a third-party application that does not officially link to Viber, and so we (Viber) naturally cannot guarantee that it will smoothly work with Viber's features.
You might want to contact Titanium developers for more information and assistance
Click to expand...
Click to collapse
All what TB does is to backup the data folder "as it is", it has nothing to do with Viber or know how viber works, and nobody should contact TB team because the restore of Viber app doesn't work, mainly because the issue here is Viber itself. also because from the 100's of apps I backup with TB, only Viber suffer from this issue.
what frankoid described is the real issue, so the solution should be that Viber finds a different way of connecting its contacts with the Android Contacts.
anyway, thanks for the response.
@mcbyte_it -
You are right - technologically, it is not an impossible task to implement the options you mentioned into our app. However, please bear in mind that you are not the only user who requests features from us among our millions of users worldwide.
Aside from that, we also have other projects running in our company, like Viber on whole new platforms, for example.
All of the above doesn't mean we neglect our users' requests. We invite you to enter our Feature Request page and post your suggestion there, or join an existing similar suggestion. The more people join on a request, the faster it will become reality
You can find it here: http://helpme.viber.com/index.php/Knowledgebase/Article/View/43/9/have-an-idea-for-a-new-feature
I may have solved this problem..
I backed up my contacts using titanium backup.. But all of my contacts are synced in Google. Then, I restored it in titanium backup, contacts are not appearing.. Login to Google contacts synced then when I accessed Viber. Names are not mixed up!!
Anyway, Viber should have put an export and import function. I hope this will be implemented on the future
Sent from my GT-I9300 using Tapatalk 2
I have found an easier way of doing this than going thru this finding and updating.
I had the same issue, I deleted the vibers copy of contacts stored in this db /data/data/com.viber.voip/databases/viber_data
Once this is deleted, inside viber > contacts, all contacts are gone, now press menu and select update contacts.
All contacts are back and mapped correctly to conversations.
ashokjp said:
I have found an easier way of doing this than going thru this finding and updating.
I had the same issue, I deleted the vibers copy of contacts stored in this db /data/data/com.viber.voip/databases/viber_data
Once this is deleted, inside viber > contacts, all contacts are gone, now press menu and select update contacts.
All contacts are back and mapped correctly to conversations.
Click to expand...
Click to collapse
Great. This is handy, only thing that I hate is I need to root my phone just to restore my viber messages
Sent from my LT29i using Tapatalk 2
Well this buy happens only for root users and so the solution requiring root would be normal.
I mean titanium backup and restore of data directly, is possible only for root users, so this bug arises and you can fix this easily by deleting that DB and refreshing contacts
ashokjp said:
I have found an easier way of doing this than going thru this finding and updating.
I had the same issue, I deleted the vibers copy of contacts stored in this db /data/data/com.viber.voip/databases/viber_data
Once this is deleted, inside viber > contacts, all contacts are gone, now press menu and select update contacts.
All contacts are back and mapped correctly to conversations.
Click to expand...
Click to collapse
I don't know why but it doesn't work for me. I'm able to see only one contact and no names in messages that I restored from viber_messages.
boeing94 said:
After recovering viber + data with titanium backup every time I have updated my rom, it suddenly started to mix up the names in all the conversations a couple of months ago.
My fathers name is on me and my sisters conversation and my father is named some random name from my contact list that does not have viber, but still it shows an image of him.
Everytime I recover viber the names are different. I wonder what my dad is going to be named now?
This has been driving me crazy as I have sent a message to wrong person thinking I sent it to the right several times.
What to do? I don't want to remove viber completely with all it´s data because I have conversations that I want to keep.
Click to expand...
Click to collapse
Just clear app data, set up your number on viber again,and all contacts should show up with their actual name.
ashokjp said:
I have found an easier way of doing this than going thru this finding and updating.
I had the same issue, I deleted the vibers copy of contacts stored in this db /data/data/com.viber.voip/databases/viber_data
Once this is deleted, inside viber > contacts, all contacts are gone, now press menu and select update contacts.
All contacts are back and mapped correctly to conversations.
Click to expand...
Click to collapse
First of thanks (again!)
I can confirm this still works, worked for me anyways!
Only difference is before I got to press 'update contatcs'.... Viber updated them automatically on launch and problem solved
My problem was wrong contacts for existing messages, I do as many others use TB to backup app+data.
Cheers!
nerdo said:
First of thanks (again!)
I can confirm this still works, worked for me anyways!
Only difference is before I got to press 'update contatcs'.... Viber updated them automatically on launch and problem solved
My problem was wrong contacts for existing messages, I do as many others use TB to backup app+data.
Cheers!
Click to expand...
Click to collapse
There is a-lot easier way to fix this problem.
Open People app (the phone's contact manager) and edit broken contact:
1- Delete end number of mobile number and save the contact.
2- Open Viber then hit back.
3- Again edit broken contact and add deleted number at end of mobile number.
4- Open Viber you'll see broken contact-thread is fixed
This will work for non-root users too.
Hi,
We are excited and proud to announce that we have just released a major new update to our mobile application: Viber 4.0!
What's new in the new version?
- Choose from over 1,000 stickers in the brand new Sticker Market. The Sticker Market features endless possibilities for brightening up your conversations. Download themed sticker packages and enjoy the party!
- Push-to-talk voice messaging. Send messages instantly with the new push-to-talk feature that streams your voice message as you record it.
- (Android only) Supported tablet compatibility. Viber is now fully compatible with your tablet device(s). Enjoy quality conversations, wherever is most comfortable for you!
- Group capacity increased to 100 members. Whether you want to share with your nearest and dearest or just send a message to a large group of people, Viber groups let you get in touch with even more people, all in one place.
- Beautiful conversation backgrounds in the new background gallery. Choose elegant backgrounds to decorate your conversations from our new collection, designed by our very own Viber artists.
- Forward messages to your groups. Sharing is caring. The popular feature for contacts is now also available for all groups!
As usual, we will be right here to receive your thoughts and feedback. If anyone encounters any problems or would like to share their experiences from our new update, please don't hesitate to contact us.
Best regards,
the Viber Team.
nDman.sk said:
There is a-lot easier way to fix this problem.
Open People app (the phone's contact manager) and edit broken contact:
1- Delete end number of mobile number and save the contact.
2- Open Viber then hit back.
3- Again edit broken contact and add deleted number at end of mobile number.
4- Open Viber you'll see broken contact-thread is fixed
This will work for non-root users too.
Click to expand...
Click to collapse
Thanks, this worked perfectly for me :good:
Sorry for digging up and old thread but I can confirm that this is still and issue with the current versions of Viber on at least 3 separate phones that I've used.
I just fixed some rogue contact lists the other night - for some reason using Viber it merges different contacts together.

[Q] viber on two different phones

Hi guys
It's probably been asked before, but I'll do it anyway
I have two android phones using my main SIM number, I alternate according to my mood or battery draining
I have viber installed on both, and every time I change phone, and start viber, the app asks my number to insert the new code blá-blá, and all my messages and call log vanish
Is there any trick to overcome this issue?
I have two different cell numbers from different carriers
My phones are Samsung S3 mini and Sony Xperia E
Cheers
Antonio
Hey Antonio,
Your Viber ID is your phone number - just as you can only have one phone number per device, you can only have on Viber ID per mobile device.
As a security feature, when Viber is activated on a new device, your account is deactivated on your old device. This ensures that if your phone is lost or stolen, the person that gets your old phone won't be able to access your account. This is why you lose your call and message history. We recommend that you keep Viber installed on one device, but if you must switch please read here: http://bit.ly/1dapLXE for info on how to back up your message history before deactivation.
antonioduarte said:
Hi guys
It's probably been asked before, but I'll do it anyway
I have two android phones using my main SIM number, I alternate according to my mood or battery draining
I have viber installed on both, and every time I change phone, and start viber, the app asks my number to insert the new code blá-blá, and all my messages and call log vanish
Is there any trick to overcome this issue?
I have two different cell numbers from different carriers
My phones are Samsung S3 mini and Sony Xperia E
Cheers
Antonio
Click to expand...
Click to collapse
You're telling me that you disallow two mobile phones logging into the same account, which is technically possible, because you think I might lose my phone and would want to sign out the other account.
Perhaps then, you could create a button in the interface to log out all other devices.
But no, you assumed what your customer would want.
Viber Team said:
Hey Antonio,
Your Viber ID is your phone number - just as you can only have one phone number per device, you can only have on Viber ID per mobile device.
As a security feature, when Viber is activated on a new device, your account is deactivated on your old device. This ensures that if your phone is lost or stolen, the person that gets your old phone won't be able to access your account. This is why you lose your call and message history. We recommend that you keep Viber installed on one device, but if you must switch please read here: (link removed because this forum does not want me to post links, yet another ****up) for info on how to back up your message history before deactivation.
Click to expand...
Click to collapse
Viber Team said:
Hey Antonio,
Your Viber ID is your phone number - just as you can only have one phone number per device, you can only have on Viber ID per mobile device.
As a security feature, when Viber is activated on a new device, your account is deactivated on your old device. This ensures that if your phone is lost or stolen, the person that gets your old phone won't be able to access your account. This is why you lose your call and message history. We recommend that you keep Viber installed on one device, but if you must switch please read here: http://bit.ly/1dapLXE for info on how to back up your message history before deactivation.
Click to expand...
Click to collapse
so, the same security feature is not included in the tablet/laptop version? this doesn t make sense. users should have the option to decide for themselves..
---------- Post added at 09:24 AM ---------- Previous post was at 09:23 AM ----------
has anyone tried backing viber up on a tablet with titanium and then restoring it on the phone?
nikapos said:
so, the same security feature is not included in the tablet/laptop version? this doesn t make sense. users should have the option to decide for themselves..
---------- Post added at 09:24 AM ---------- Previous post was at 09:23 AM ----------
has anyone tried backing viber up on a tablet with titanium and then restoring it on the phone?
Click to expand...
Click to collapse
just tried it, doesnt work...
Yes it work.
Oh is that genuine viber team replying? I do not but the theory of security. I have same account viber on my ph, small tablet, big tablet, 2 laptop and a desktop. Now recently got another phone and decided to use both alternately, viber cannot extend to second ph with sim. If i can fool viber that it is tablet, my problem would have solved.
I just lost all contacts and chat history when i try to install Viber on new phone (with same number). Viber on new phone was also without chat history and contacts. This "security feature" was completly unknown to me, and it is incredibly counter-intuitive and stupid. Facebok Messinger of course worked perfectly normal on both phones., when it was installed on new phone.
Same crap...this is quite not user friendly from Viber... I lost all my chats, and I can only use on 1 device. Shame on Viber.
Same to me. I logged in on the new phone prior to changing SIMs (beacuse I wanted the new phone to be ready when I do so), and every and all messages was deleted without notification. Also, my laptop wanted me to revalidate it with QR. Why doesn't it only warn me there is no fresh backup?
have you tried this? https://www.androidinfotech.com/2016/04/use-same-viber-account-in-two-different.html
I have installed Viber on my laptop, using Phoenix OS, and I lose all the things in my smartphone.
Really bad, just thought it's like in the Windows 10
As soon as I have bought new tablet with android 7.0 installed, I can't have any more viber on my blackberry Q5 and the new tablet at the same time.
I can't post the link because I don't have 10 posts on the forum.
support dot viber dot com slash costumer slash en slash portal slash articles slash 1593168
"Before you start
Download the latest version of Viber on your phone before you add Viber to your tablet. If you don't have the latest version, Viber will not sync between your phone and your tablet."
I need to use viber version 5.6.5.1885 on Q5, because only this version work on BB10 OS, and on android 7.0 tablet I can have the latest version. And when I activate viber on the phone, I am immediately logged out from tablet. And vice versa. While I was using viber on my older tablet with android 4.2.2. installed, I didn't have this problem.
So I need to use viber only on one device.
I don't know, but viber is definitely forcing us with such manners to have only the latest viber, if we want to have synchronized chats, and also in such manners we have to use only newest mobile devices.
Went to install Viber on my old phone while I work on the current phone. Didn't realize phones counted as 'primary devices', and that you can have only one. So as soon as I activated Viber on my old phone, I lost everything on the other phone. Some sort of warning would have been nice... @Viber Team
Viber support is anything but supportive... They cant even understand basic issues like why is there a possibility to use viber primary on phone and secondary on tablet and why cant this be done...
We have to find a new app that can do that
Just want to say that telegram sorted it out in a best way possible. You can have as many devices as u like and never will lose chat history. And viber has much bigger user base then telegram! Shame on you viber! If it isn't that a lot of people in my country use viber I would never install it! Telegram is much better in all things!
.

SMS app to combine conversations from the same contact in the same chat window

Hy there,
I hope I posted where I should and if I didn't please tell me the correct section where I should do this. Also, I am not a developer, I do not have root on my phone. I do not want solutions that require changing XML files or anything. I am just asking about an app that I could find in the Play Store, or, maybe, and apk to download (this being the second option)
I have a problem with the messaging app since I left my HTC One S for the Nexus 5X in June 2016 and I did not find an app to replace that, not even on my current Oneplus 5T.
So, I have a contact in my phonebook saved with multiple numbers - work / mobile / home etc. and she texts SMS from either of the numbers (doesn't really matter because they are included in the carrier plan as unlimited). But my messaging app is sorting those SMS as different entries by phone number, and not by contact. So if we start a conversation in a chat window based on the home number, the answer may end up in a different chat windows (she has a dual sim phone so it depends on the settings on which is right now, and because the SMSs are "free", she tends to not look at which carrier is using, because, why would you if they are all free?), but this actually disrupts the logical flow of the conversation.
I know that a such app exists because I used it on HTC One S in 2012 and I was able to send SMS to which number I wanted to select (home / mobile / work of the same contact from the phonebook) and I had all the conversation in only one place, but after I changed on Nexus 5X and now on OnePlus 5T I can not find this feature in the installed app messenger (Google's or Oneplus's), neither on Google searches or specialized websites. I have tested some of the SMS apps, looked for settings, but all of them seem to show the SMSs based on the phone number, and not based on the contact entries.
Can someone suggest an app that could do that? Maybe I didn't search good enough.
P.S. The MMS option to send grouped messages is not an option because this means I will send the same SMS to multiple numbers, but those numbers are of the same person so there is no need to do that ...
Thank you very much for Your answer.

Is there a way to lock down a phone?

Hi,
I want to lock down a phone, so that:
- i have control over which applications can do data traffic
- which numbers can be called
- who can call
the first part's easy, root and afwall+ and that is that.
The part that right now has me stumped is the rest, I'd like to set something up so that only contacts from the address book can be called, and calls without caller ID get rejected. Also, no international calls at all.
I do not want to rely on "call barring" or the likes, that requires the numbers that are allowed to actually be on the sim card, which means I don't have the ability to add numbers to the list without having the phone in my hands... I was thinking I could use davdroid and an account on my nextcloud, then edit the contacts on the cloud web ui.
Is there a way to do it? The hardware in question is most likely going to be an older samsung. It can have lineageOS or stock samsung android installed, whatever is needed.
Cheers
[L]

Categories

Resources