Guys I need help on Registration Page :
I need repeat password validation.
Mean there are 2 EditTexts fields for passwords
1. Enter Password
2. Enter Password Again
Now I want to validate both the passwords...I know I can do it simply by if else, but I think I can do that on button click like when the user clicks the Register button.
But what I need is when the user enters or entering the password it verifies at that time only and match it with the first field...
Hope I'm explained my issue well...Still if I'm not clear let me know..
Thanks
coolbud012 said:
Guys I need help on Registration Page :
I need repeat password validation.
Mean there are 2 EditTexts fields for passwords
1. Enter Password
2. Enter Password Again
Now I want to validate both the passwords...I know I can do it simply by if else, but I think I can do that on button click like when the user clicks the Register button.
But what I need is when the user enters or entering the password it verifies at that time only and match it with the first field...
Hope I'm explained my issue well...Still if I'm not clear let me know..
Thanks
Click to expand...
Click to collapse
Check out Android Validator library, that is a nice way to handle any login action.
SimplicityApks said:
Check out Android Validator library, that is a nice way to handle any login action.
Click to expand...
Click to collapse
Anything without using Library?
coolbud012 said:
Anything without using Library?
Click to expand...
Click to collapse
Well not really other than comparing both Strings and displaying a ViewBadge to show that the Password is incorrect. Did you try the library and didn't like it or why don't you use it?
And to check Passwords on the fly whenever the text is changed in one of them, you need to set a TextWatcher on both TextFields and use its afterTextChanged method.
SimplicityApks said:
Well not really other than comparing both Strings and displaying a ViewBadge to show that the Password is incorrect. Did you try the library and didn't like it or why don't you use it?
And to check Passwords on the fly whenever the text is changed in one of them, you need to set a TextWatcher on both TextFields and use its afterTextChanged method.
Click to expand...
Click to collapse
Nopes to be frank I didnt try the LIB. I always try to do the things without Library. If I dont get it without Lib then only I go for i...And yeah I should try TextWatcher...will give a try.
Thanks for the suggestion...that didnt strike me...
coolbud012 said:
Nopes to be frank I didnt try the LIB. I always try to do the things without Library. If I dont get it without Lib then only I go for i...And yeah I should try TextWatcher...will give a try.
Thanks for the suggestion...that didnt strike me...
Click to expand...
Click to collapse
Well at first I thought I could do everything on my own also and wouldn't need libraries, but then tried out one or two and once you get used to implementing them it's just a lot easier! I can only advice you to try it out, but it's cool to do it on your own as well I guess.
If you have other fields after password say like DOB, then you make it like when the focus moves on to the next field i.e DOB, get the edittext data and then do
Code:
if (passwd.equals(passwd2))
System.out.println("password match!);
else
System.out.println("Password does not match!");
Assuming passwd is the password and passwd2 is password entered for verifying.
And this is how most online webforms work afaik.
Sent from my GT-N7000 using xda app-developers app
Thanks
SimplicityApks said:
Well at first I thought I could do everything on my own also and wouldn't need libraries, but then tried out one or two and once you get used to implementing them it's just a lot easier! I can only advice you to try it out, but it's cool to do it on your own as well I guess.
Click to expand...
Click to collapse
Hmmmmm seems a valid point. Actually I'm still in learning phase so just trying out different stuff for a single task.
Thanks
Related
Hi guys, I've had my HD2 for a few weeks now and i'm loving it (Just come from an iPhone aswell). But there are two things anoying me, and I want to fix them.
1. Is there anyway to stop the Squares showing in the Email preview, as far as I know they are image placeholders and they make the email preview look a mess.
2. Is there a way to download all the images in the email message automatically. Because at the moment its telling me its blocked due to privicy settings and I have to click to download them in every email..
Thanks for any help guys.
Hiya, that is annoying me too maybe it is a limitation of sense 2.5? and I am pretty certain the other bit about internet content being blocked such as pictures cannot be turned off.
I have tried this myself by downloading all the email +attachments but nothing so far works.
Anyone know a fix for these like the original poster commented on?
Yeah, I'd like to know if there's a reg hack or similar for that, does my head in as well. It completely spoils an otherwise very good email app
reeco said:
Is there anyway to stop the Squares showing in the Email preview, as far as I know they are image placeholders and they make the email preview look a mess.
Click to expand...
Click to collapse
This looks like a font issue to me. Maybe there's characters in the emails that aren't in the font that the email preview tab uses. I don't know, but that's what it looks like.
reeco said:
Is there a way to download all the images in the email message automatically. Because at the moment its telling me its blocked due to privicy settings and I have to click to download them in every email..
Click to expand...
Click to collapse
You can't make it automatically download images for security reasons. Embedded images can be the cause of much spam, and can also be used (in rare cases) for spreading malware.
Also, the email application that you see when you click an email in the Sense UI is actually part of Windows, not Sense.
I'll be very suprised if you ever find a way to make it automatically download images, and I wouldn't want my phone to become virus-ridden so would never use it if it did exist.
The squares you see in the email preview are the symbols for the "enter" key.
When you get an email from someone that has more lines and that person pressed enter or more enters at the end of a line those enters end up being squares in the email preview.
Unfortunately you cant do anything about it. I'm a software developer and i know about this issue from my work. It's HTC's job to eliminate the squares and it has to be done in the code. We can't do it by ourselves.
I would love to have the images downloaded automatically as well, but Microsoft didn't provided an option for this. At least let us chose whether we want to be secure or not.
lorin.bute said:
The squares you see in the email preview are the symbols for the "enter" key.
Click to expand...
Click to collapse
It's not that at all. It's any character that is not defined in the font that's used. If you like, I can take a screenshot of an email that is FULL of boxes, and I know for a fact that they're not all line breaks/page returns.
The enter key doesn't cause it, or you'd see it at the end of every line that has a line break/page return, and you don't. But anyway, this isn't resolving the issue, so I'll bow out
Yeah, i'm sure the font doesn't cover all the characters... well... its HTC's fault on this one.
lorin.bute said:
Yeah, i'm sure the font doesn't cover all the characters... well... its HTC's fault on this one.
Click to expand...
Click to collapse
Laying fault anywhere, whether correct or not, does not help these guys resolve the issues they've raised. Let's keep it on topic eh?
johncmolyneux said:
Laying fault anywhere, whether correct or not, does not help these guys resolve the issues they've raised. Let's keep it on topic eh?
Click to expand...
Click to collapse
Well, i could suggest that someone with good knowledge of wm should look into the fonts being used in the emails. Maybe they can be changed. I'm sure new fonts can be installed but i don't know how to change them and where.
Its also possible that this issue is unsolvable because of the current coding of the email tab in sense. We need to know for sure what's causing the problem.
any follow up on this guys ?? would like to get it sorted
All testing has been moved HERE:
http://forum.xda-developers.com/showthread.php?t=784898
Very Nice.
just signed up - but I'm hesitant to put my email up there. PM'ed it to you, if thats ok.
Yeah, i changed the sign up sheet a little
After your great write-up on rooting 2.2 I have no problems testing your programs however when I click on the sign here link it asks me to sign in with my gmail account and I am weary about using my credentials through a link thats asks for that first. Can I pm you my email for testing? Thanks.
I pmed you, love to help out
hmmm, everyone should be able to see and edit the list.... no matter if they are signed in or not...
I was able to edit spreadsheet without being logged in.
As for the program, it works good for me. I haven't accounted any bugs.
except suggestion: make it so it only has to check environment once, it takes a little bit to run the check everytime.
rockage said:
I was able to edit spreadsheet without being logged in.
As for the program, it works good for me. I haven't accounted any bugs.
except suggestion: make it so it only has to check environment once, it takes a little bit to run the check everytime.
Click to expand...
Click to collapse
Yeah, I thought about that, but I also thought about, what if they copy it to another computer, or they uninstall something, the flag would still be there saying the environment is clear, even when it's not. I will definitely take this into consideration.
regaw_leinad said:
hmmm, everyone should be able to see and edit the list.... no matter if they are signed in or not...
Click to expand...
Click to collapse
It could be that I am accessing the link through my evo. I work nights so I wont be able to grab any links until I get home but I am definitely up for testing.
Oh, forgot, also please fill in your windows version on the spreadsheet. This info is very valuable for me and future programs
lovethyEVO said:
It could be that I am accessing the link through my evo. I work nights so I wont be able to grab any links until I get home but I am definitely up for testing.
Click to expand...
Click to collapse
Oh, that could be it. I sent you the email though w/ your test program.
regaw_leinad said:
Oh, that could be it. I sent you the email though w/ your test program.
Click to expand...
Click to collapse
I got the link and I will give it a once over when I get home and then mess with it throughout the week. Thanks.
Working great, haven't encountered any bugs
DirtyShroomz said:
Working great, haven't encountered any bugs
Click to expand...
Click to collapse
awesome! you got the most updated version of the program, i just updated it...
No worries everyone else, all I updated was the server info for downloading the apks. everything still works the exact same
regaw_leinad said:
awesome! you got the most updated version of the program, i just updated it...
No worries everyone else, all I updated was the server info for downloading the apks. everything still works the exact same
Click to expand...
Click to collapse
did have a question though, since it's creating a system/app folder, essentially this would override the one on your phone erasing pretty much everything, correct? I wanted to test the "push to phone"
DirtyShroomz said:
did have a question though, since it's creating a system/app folder, essentially this would override the one on your phone erasing pretty much everything, correct? I wanted to test the "push to phone"
Click to expand...
Click to collapse
no it does not format the /system or /data
it just updates it with whatever you add
regaw_leinad said:
no it does not format the /system or /data
it just updates it with whatever you add
Click to expand...
Click to collapse
got it
10chars
Signed up!!
Damn the time zones. I'm always asleep when you west coast fokers release new cool stuff
Just tested the program and everything looks good.
It's a good alternative to re-installing htc and sprint apps when the user has deleted them and didn't back them up.
Haven't tested the push to phone option yet and will have to make a most recent nand before I do.
i have a nexus s and it seems someone has taken it. i am borrowing my friends phpne to do this. i know thw phone is still at the school. is there any way i could use the online market to download an app to help me track my phone or any other way to track my phone? thanks please help
Sent from my DROIDX using XDA App
kicknik said:
i have a nexus s and it seems someone has taken it. i am borrowing my friends phpne to do this. i know thw phone is still at the school. is there any way i could use the online market to download an app to help me track my phone or any other way to track my phone? thanks please help
Sent from my DROIDX using XDA App
Click to expand...
Click to collapse
yes, you can install an app, but not it will not activate without having it already configured
AntiDroidTheft is a very good one
https://market.android.com/details?id=com.android.antidroidtheft
and then you can find your phone online
http://www.antidroidtheft.com/
unfortunately for it and all other similar software to work, you will need to have had it pre-installed and configured
Anti DT requires the least config to work
if you have a smart Coder friend, maybe he can upload a new version of this App modified to install and start automatically with a predefined secret password
then you install it from the new Android Market
and it will install and activate itself on its own, and you might have a chance at finding your phone, and trace it to where the guy live
will tmobile be able to help at all if i call them because none of my frienda would be able to make that program. thanks though please any ideas
Sent from my DROIDX using XDA App
You can download this app: https://market.android.com/details?id=org.gtmedia.findMyPhone remotely to your phone.
Then send a SMS to your phone with the secret code and command. The default secret code is 1234.
List of commands:
1234 help
1234 locate
1234 alarm
1234 wipe (wipe sd card is not set by default)
1234 calls
Unless your gps is on, the location of your phone isn't going to be accurate. Just hope that if a person did steal the phone, they won't be removing the app. Since when the phone receives the message, it will play the ringtone and notifications will pop up.
hmm... interesting
trying that as we speak to see if it works
DKYang said:
You can download this app: https://market.android.com/details?id=org.gtmedia.findMyPhone remotely to your phone.
Then send a SMS to your phone with the secret code and command. The default secret code is 1234.
List of commands:
1234 help
1234 locate
1234 alarm
1234 wipe (wipe sd card is not set by default)
1234 calls
Unless your gps is on, the location of your phone isn't going to be accurate. Just hope that if a person did steal the phone, they won't be removing the app. Since when the phone receives the message, it will play the ringtone and notifications will pop up.
Click to expand...
Click to collapse
hmm... the app is no longer supported, they are forwarding people to a PAID app instead
whhat is the name of the new app?
Also how do i know what the code is if i dont have my phone?
I'm only asking because you didn't mention it specifically, but did you try the simplest method first of calling you're own number and seeing if someone answers? Also, send a text message to the phone saying please call me.
You said "seems like" someone took it. Maybe you dropped it or left it and an honest person has it and will gladly return it. Worth a shot if you haven't yet.
ya i did do both those thigns.
i just need to know if there is a way to remotely locate it because find my phone owuld have been perfect but it doenst work anymore
AllGamer said:
hmm... interesting
trying that as we speak to see if it works
hmm... the app is no longer supported, they are forwarding people to a PAID app instead
Click to expand...
Click to collapse
No longer supported but still works. The app doesn't depend on a server or anything, just the phone.
kicknik said:
whhat is the name of the new app?
Also how do i know what the code is if i dont have my phone?
Click to expand...
Click to collapse
Like I said, the default code is 1234. Just use 1234 as the code. If you want to change the code, then I can't help you with that.
kicknik said:
ya i did do both those thigns.
i just need to know if there is a way to remotely locate it because find my phone owuld have been perfect but it doenst work anymore
Click to expand...
Click to collapse
Did you actually try it yet? It works for me. I tested it.
Go to the market and have it remotely downloaded onto your phone. Then send the phone commands.
If you can't get the app (or any other app) downloaded onto your phone for whatever reason, then of course this won't work or any other method that I can think of.
I wouldn't be suggesting it if it didn't work. What's the point in doing that? I got nothing to gain from it.
DKYang said:
Like I said, the default code is 1234. Just use 1234 as the code. If you want to change the code, then I can't help you with that.
Did you actually try it yet? It works for me. I tested it.
Go to the market and have it remotely downloaded onto your phone. Then send the phone commands.
If you can't get the app (or any other app) downloaded onto your phone for whatever reason, then of course this won't work or any other method that I can think of.
I wouldn't be suggesting it if it didn't work. What's the point in doing that? I got nothing to gain from it.
Click to expand...
Click to collapse
I'll confirm this works. I just went to the link you provided earlier on my CR-48, then told the Market to install it to my phone which is across the room from me.
I waited a few minutes, then used my Google Voice web account to send the "1234 Locate" to my phone. A few seconds later I heard a text message arrive on the phone. A few seconds later I got a text message back from the phone that said my location would be determined in under 5 minutes, and then about a minute later I got another message from the phone that was the latitude and longitude of the phone, and then another link with a link that opened Google Maps on my laptop to right where my phone is.
AWESOME.
I've got WaveSucure & MobileDefense both on my phones, and this is simpler and easier than either of those. Good find.
The only negative here is that on my other two phones when I tried to install it on them, the Market told me that I hadn't logged into the Market on those phones in a while and that I would have to open the Market on those phones before I could remotely install. I'd have been screwed on those phones.
distortedloop said:
I'll confirm this works. I just went to the link you provided earlier on my CR-48, then told the Market to install it to my phone which is across the room from me.
I waited a few minutes, then used my Google Voice web account to send the "1234 Locate" to my phone. A few seconds later I heard a text message arrive on the phone. A few seconds later I got a text message back from the phone that said my location would be determined in under 5 minutes, and then about a minute later I got another message from the phone that was the latitude and longitude of the phone, and then another link with a link that opened Google Maps on my laptop to right where my phone is.
AWESOME.
I've got WaveSucure & MobileDefense both on my phones, and this is simpler and easier than either of those. Good find.
The only negative here is that on my other two phones when I tried to install it on them, the Market told me that I hadn't logged into the Market on those phones in a while and that I would have to open the Market on those phones before I could remotely install. I'd have been screwed on those phones.
Click to expand...
Click to collapse
DKYang said:
No longer supported but still works. The app doesn't depend on a server or anything, just the phone.
Like I said, the default code is 1234. Just use 1234 as the code. If you want to change the code, then I can't help you with that.
Did you actually try it yet? It works for me. I tested it.
Go to the market and have it remotely downloaded onto your phone. Then send the phone commands.
If you can't get the app (or any other app) downloaded onto your phone for whatever reason, then of course this won't work or any other method that I can think of.
I wouldn't be suggesting it if it didn't work. What's the point in doing that? I got nothing to gain from it.
Click to expand...
Click to collapse
Hey man thanks a lot for all your help i just assumed it didnt work because of the error message but im trying it out. I downloaded it online and in the MY Account tab on the market website it says the download is complete so i texted it from my dads phone saying 1234 locate. I havent gotten a response yet but heres to hoping it will work.
Thanks again everyone i really appreciate all the help.
kicknik said:
Hey man thanks a lot for all your help i just assumed it didnt work because of the error message but im trying it out. I downloaded it online and in the MY Account tab on the market website it says the download is complete so i texted it from my dads phone saying 1234 locate. I havent gotten a response yet but heres to hoping it will work.
Thanks again everyone i really appreciate all the help.
Click to expand...
Click to collapse
Make sure to let us know what happens.
kicknik said:
Hey man thanks a lot for all your help i just assumed it didnt work because of the error message but im trying it out. I downloaded it online and in the MY Account tab on the market website it says the download is complete so i texted it from my dads phone saying 1234 locate. I havent gotten a response yet but heres to hoping it will work.
Thanks again everyone i really appreciate all the help.
Click to expand...
Click to collapse
if you can't locate your phone after a few days
report the IMEI # as stolen so they can block it, and make the phone useless for resale
Found!!!!! O how I missed it
Sent from my Nexus S using XDA App
kicknik said:
Found!!!!! O how I missed it
Sent from my Nexus S using XDA App
Click to expand...
Click to collapse
where was it?
did some one actually took it?
Yea, where was it?!?!?!
~Sent from my Nexus S with Swype~
Yeah, Where the (bleep!) was it?!
kicknik said:
Found!!!!! O how I missed it
Sent from my Nexus S using XDA App
Click to expand...
Click to collapse
Sent from my Nexus S using XDA App
some how it had fallen in my friends backpack. he didnt find it until a while later but man was i scared it had been stolen, the relief i had when i saw him holding it...
plus for some reason all the apps werent downloading even though the phone was on the whole time...
I'm so relieved for you man. Glad it found its way back!
Sent from my Nexus S using XDA App
Nexus MC said:
I'm so relieved for you man. Glad it found its way ]
X2
~Sent from my Nexus S with Swype~
Click to expand...
Click to collapse
Hey guys, need some help.
Have a Nexus 7 I use for personal use and also occasionally hand-off to an employee for work related functions.
Here's what I'd like to do and need some solutions to get it done:
I'd like unfettered access to all apps, settings, data, etc. but when handing off to employee I'd like to be able to lock down tablet to only allow access to Chrome.
More specifically, if possible, I'd like to limit access in Chrome to a list of specific pages.
I'd like the solution to be easily engaged and unengaged...i.e. a single password...
Is anything like this possible??? Ideas? Suggestions?
Thanks!
pjacobson said:
Hey guys, need some help.
Have a Nexus 7 I use for personal use and also occasionally hand-off to an employee for work related functions.
Here's what I'd like to do and need some solutions to get it done:
I'd like unfettered access to all apps, settings, data, etc. but when handing off to employee I'd like to be able to lock down tablet to only allow access to Chrome.
More specifically, if possible, I'd like to limit access in Chrome to a list of specific pages.
I'd like the solution to be easily engaged and unengaged...i.e. a single password...
Is anything like this possible??? Ideas? Suggestions?
Thanks!
Click to expand...
Click to collapse
Download a "Profile Creator" App, set up 2 profiles, one with full access and one profile with just access to Chrome, then on that profile limit the pages you want to be able to access through Chrome itself. Hope this helps.
Wilks3y said:
Download a "Profile Creator" App, set up 2 profiles, one with full access and one profile with just access to Chrome, then on that profile limit the pages you want to be able to access through Chrome itself. Hope this helps.
Click to expand...
Click to collapse
Thanks so much! Would you have any suggestions for a Profile Creator app? Not familiar with these.
Thanks!
This looks like a good one, I've never used it though
http://www.sbsh.net/profile-manager-android-phoneweaver
This looks good too:
https://play.google.com/store/apps/details?id=fahrbot.apps.switchme
pjacobson said:
Thanks so much! Would you have any suggestions for a Profile Creator app? Not familiar with these.
Thanks!
Click to expand...
Click to collapse
Not a problem mate, glad I could help, looks like the poster above has linked you to a couple of good ones.
Try one if that doesn't work or isn't as you like it try the other
Sign up to the link in my sig if you really want to thank me (jokes, but ya can if you want to)
Just getting the word out to everyone. This works without root and makes it super easy for you to remove any Bloatware you would like and fully control it.
http://forum.xda-developers.com/android/software/debloater-remove-carrier-bloat-t2998294
gatesjunior said:
Just getting the word out to everyone. This works without root and makes it super easy for you to remove any Bloatware you would like and fully control it.
http://forum.xda-developers.com/android/software/debloater-remove-carrier-bloat-t2998294
Click to expand...
Click to collapse
I've already run it but thanks for sharing it in here:good:
didn't you already post it junior ?
Fine job making a Windows program. Unfortunately I do not know most of those apps so I will not select them. Is it too much to ask someone for a list of apk name versus function name?
ronaldheld said:
Fine job making a Windows program. Unfortunately I do not know most of those apps so I will not select them. Is it too much to ask someone for a list of apk name versus function name?
Click to expand...
Click to collapse
The apk name is listed along with the packagename in the list. If you are unsure what things are safe to block/disable. There are plenty of people on the forum that would be willing to help you.
I did not see the package name so I will have run it again and read more carefully or try to change the size of that field.
ronaldheld said:
I did not see the package name so I will have run it again and read more carefully or try to change the size of that field.
Click to expand...
Click to collapse
The apk is on the left and the package name is on the right. Are you saying you would like to see the App Drawer Name ??
That would be really helpful. Thanks.
This says without root then the other page this links to says root required which is it
jolly_roger_hook said:
This says without root then the other page this links to says root required which is it
Click to expand...
Click to collapse
Ability to remove apk on rooted devices and only disables on unrooted kitkat devices.
jpa77 said:
Ability to remove apk on rooted devices and only disables on unrooted kitkat devices.
Click to expand...
Click to collapse
Thanks for the clarification but dang though I'd be able to unistall this Facebook app preinstalled as a system app ughhhhhh...
gatesjunior said:
Just getting the word out to everyone. This works without root and makes it super easy for you to remove any Bloatware you would like and fully control it.
http://forum.xda-developers.com/android/software/debloater-remove-carrier-bloat-t2998294
Click to expand...
Click to collapse
Thanks for sharing..
Brilliant!!
Let's start posting in the actual Debloater thread please.. Thank you all for your compliments..
May have blocked one too many, 2 items don't work but other wise great-
Calender
Software updates- there's no error message but the circle just spins with no connection. After a while i simply cancel
Thanks
pbman1953 said:
May have blocked one too many, 2 items don't work but other wise great-
Calender
Software updates- there's no error message but the circle just spins with no connection. After a while i simply cancel
Thanks
Click to expand...
Click to collapse
Yeah, it sounds like you blocked a little too many, Lol. You can simply go and save your blocked list and then Unblock all and start going one by one until you figure out which ones you do need.
Please bring all feedback and questions over to the forum dedicated for this.
http://forum.xda-developers.com/android/software/debloater-remove-carrier-bloat-t2998294
gatesjunior said:
Yeah, it sounds like you blocked a little too many, Lol. You can simply go and save your blocked list and then Unblock all and start going one by one until you figure out which ones you do need.
Please bring all feedback and questions over to the forum dedicated for this.
http://forum.xda-developers.com/android/software/debloater-remove-carrier-bloat-t2998294
Click to expand...
Click to collapse
Here's one thing to think about also, by accident I blocked the Google stock email , not the Gmail. I went back to unblock and I had to re-enter all my emails back again. So what I'm saying after a block and then an un-block it wipes the app. Did you expect that to happen or should I expect that to happen for most apps be turned back on?
Thanks
pbman1953 said:
Here's one thing to think about also, by accident I blocked the Google stock email , not the Gmail. I went back to unblock and I had to re-enter all my emails back again. So what I'm saying after a block and then an un-block it wipes the app. Did you expect that to happen or should I expect that to happen for most apps be turned back on?
Thanks
Click to expand...
Click to collapse
That's odd, it doesn't wipe any data. Nor have I had an issue like that. Let me look into it.
pbman1953 said:
Here's one thing to think about also, by accident I blocked the Google stock email , not the Gmail. I went back to unblock and I had to re-enter all my emails back again. So what I'm saying after a block and then an un-block it wipes the app. Did you expect that to happen or should I expect that to happen for most apps be turned back on?
Thanks
Click to expand...
Click to collapse
svc.apk
I got lucky, was akind of dumb on one, all I had to do is look at the app name on the right for the calander. The update connection was SyncMLSsvc.apk
Debloater !!!
Thank you for this Program at least we can modify our phones to run better so I can enjoy my phone instead of be mad that the phone is full of stuff i don't want running great Application and simple to use as well
Thank you !!