Mine is a Galaxy S3 as well. I don't know what to say except these instructions worked for me.
b2d2 I have to apologize. After you mentioned you also had an S3, I went through the instructions again step-by-step and realized that I skipped step 4. I didn't realize that step 3 was "
Contacts" and step 4 was "
Contacts Storage". You are absolutely right, it does work on an S3.
Thanks again.
BTW, if anybody wants to know how to get rid of the thousands of "Starred in Android" groups. I found a way.
It might now be the most sophisticated way to do it, but it works.
Go to
Windows scripting and Windows Macro Automation utilities - automate your PC with Windows scripting for Win9x/NT/ME/2000/XP.
Download and install the program. You can create macros with this program and the trial version is good for 30 days.
What you do is following:
1) Logon to your gmail account and open your contacts.
2) Click on "My Contacts".
3) Open Macro Scheduler and create new macro
4) Copy code below and adjust x,y coordinates according to your screen and the wait time. The wait is going to depend on your CPU Speed.
5) on the last line change the 40 to how many times you want the macro to be repeated.
What that macro does is following
1) It types the word starred in the search bar.
2) Then selects the first group "Starred in Android"
3) Then selects the "More" button and delete group
4) Confirms by clicking on OK
It still deletes one group at a time, but at least you can start the macro and let it run. Definitely beats the alternative, which is doing it yourself.
I had 3500+ "Starred in Android" groups. The macro was working on-and-off for 4 days. Imagine how long it would have taken me to delete these groups.
So, here is the code:
Code:
//Set IGNORESPACES to 1 to force script interpreter to ignore spaces.
//If using IGNORESPACES quote strings in {" ... "}
//Let>IGNORESPACES=1
Let>i=0
Repeat>i
Let>i=i+1
MouseMove>2307,114
LClick
SendText>starred
Wait>1.0
MouseMove>2238,148
Wait>0.5
LClick
Wait>1.5
MouseMove>2327,171
LClick
Wait>1
MouseMove>2346,259
LClick
Wait>0.5
MouseMove>2687,615
Wait>0.2
LClick
Wait>4
Until>i,40