Android :: No Need Of Antivirus For EVO?
Aug 26, 2010
I have seen many posts for this but all old and such and none really evo. So I hear there is really no need for antivirus. Is this true? Cuz I know it eats a ton of my battery. Just seen a lot of mixed reviews on this subject so I thought I'd ask the pros.
View 6 Replies
Jun 6, 2010
I have Antivirus for my desire, is this really necessary? How likely am I to contract a virus using Android?
View 1 Replies
View Related
May 31, 2010
Does it count as antivirus? I've been browsing some threads and people say antivirus apps are causing texting to force close and randomly delete all messages. I keep having this problem and was wondering if uninstalling Wave secure would help
View 4 Replies
View Related
Jul 17, 2010
I see a few antivirus offerings in the market, but don't hear much talk about the need for them on the android platform. Are they necessary? Do they slow the OS down noticeably?
View 2 Replies
View Related
May 23, 2010
Do you need an antivirus with Android? Will it slow down my system?
View 8 Replies
View Related
Feb 24, 2010
I've been reading a lot about the task killer and AV apps here, but I am wondering if
1 - are TK apps really nessessary? Does it help with battery life and why would you want to kill an app? I've read somewhere that TK apps are not nesscessary b/c android is a linux system.
2 - Can we get viruses on our phones? Are the Free AV apps we get here in Canada, since we cannot buy apps, good? Do they really protect our phones?
View 8 Replies
View Related
Oct 9, 2010
I had a message pop up saying I needed a spyware, malwRe, antivirus program. Any ideas about this? This only happened after I downloaded a chess game off the market
View 3 Replies
View Related
Jul 27, 2010
As the title states, are they necessary to have on android phones? Why or why not? I'm leaning towards No but am I right?
View 17 Replies
View Related
Feb 7, 2013
I keep getting prompted to install an antivirus app on my phone. Is this just an add?
View 3 Replies
View Related
Apr 27, 2010
Just got my new Tattoo, my 1st android device. It feels quite different from my nokia days. Would like to start with a good antivirus that would work on the tattoo. Pleeease help. I'm afraid of visiting the android market on my phone to prevent any infections, I did on my laptop but couldn't come up with any.
View 12 Replies
View Related
Jun 10, 2010
Is there such a thing as an EVO stand alone antivirus application? Is it recommended to run your PC's antivirus on the EVO while it's plugged in as an additional hard drive? It'll only see the SD card's content right?
View 5 Replies
View Related
Mar 1, 2010
Is antivirus needed?
View 30 Replies
View Related
Jul 29, 2010
Has anyone installed an antivirus app?
View 8 Replies
View Related
Aug 9, 2010
Do I need to install an antivirus program? If so which one is recommended?
View 1 Replies
View Related
Sep 24, 2010
I installed the free antivirus on my Samsung Captivate and noticed the message, "this phone belongs to: protected by antivirus". I deleted it and uninstalled it and turned off and on my phone 2-3 times. It is still not going away? What am I doing wrong? Also can someone give me any other method to delete this?
View 4 Replies
View Related
Jul 29, 2010
I wanted to know if any of you could suggest a good antivirus app. I'd like one that scans email and all that as well as apps I download. I am currently using lookout.
View 10 Replies
View Related
Sep 30, 2010
So my phone is rooted and I want to know if when I run an antivirus will it show my root or apps as viruses if they have superuser permissions? Because when I run antivirus it shows several viruses. If I clean them idk what it will do. And when I say several I mean like 50 to 100 files show infections.
View 11 Replies
View Related
Jan 15, 2010
Is it a good idea to put antivirus software app on your phone, or is it just a waste of time?
View 2 Replies
View Related
Oct 15, 2010
I got Droid X my question is, should or is recommended download the antivirus For Android.
View 4 Replies
View Related
Feb 9, 2010
I see some antivirus applications in the Market. Really? I have to worry about that on my phone? How would my phone get a virus? Has anyone here got a virus on their android phone?
View 10 Replies
View Related
Sep 10, 2010
What is the best AV app out currently? Now I know a lot of you guys will say "what is the point". Think outside of the consumer market box. Dell and other companies are targeting Corporate America. You know full and well that upper management will want to see AV on these devices. You also have to think about what you are attaching your device to as well. Docs to go manipulates Excel documents and so on. Even if the defs target Windows based virus activity that is a good start in protecting your PC and email from virus activity. I stumbled on Antivirus Free
View 13 Replies
View Related
Oct 19, 2010
today i meet the problem.i need technic can control the android machine from server.then i want send data from server to android with no request from android.
View 2 Replies
View Related
Apr 14, 2010
I'm trying to open a dialog window, but every time I try to open it it throws this exception:
CODE:.................
I'm creating it by calling showDialog with the display's id. The onCreateDialog handler logs fine and I can step through it without an issue, but I've attached it since it seems like I'm missing something:
CODE:............
Is there something missing from this? Some questions have talked about having this problem when creating a dialog from onCreate, which happen because the activity isn't created yet, but this is coming from a call from a menu object, and the appContext variable seems like it is correctly populated in the debugger.
View 3 Replies
View Related
Jun 3, 2010
I'm writing an application which connects to a back office site. The backoffice site contains a whole slew of JavaScript functions, at least 100 times the average site. Unfortunately it does not load them, and causes much of the functionality to not work properly. So I am running a test. I put a page out on my server which loads the FireBugLite javascript text. Its a lot of javascript and perfect to test and see if the Android WebView will load it. The WebView loads nothing, but the browser loads the Firebug Icon. What on earth would make the difference, why can it run in the browser and not in my WebView? Any suggestions.
More background information, in order to get the stinking backoffice application available on a Droid (or any other platform except windows) I needed to trick the bakcoffice application to believe what's accessing the website is Internet Explorer. I do this by modifying the WebView User Agent.Also for this application I've slimmed my landing page, so I could give you the source to offer me aid. package ksc.myKMB;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.Window;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebSettings;
import android.webkit.WebViewClient;
import android.widget.Toast;
public class myKMB extends Activity {
I already have JavaScript on the web browser on, the problem is the web view is acting to different from the web browser.
View 1 Replies
View Related
Aug 15, 2010
I want to implement my own Tokenizer base on the file
"MultiAutoCompleteTextView.java",
but I encounter an error "com.android.internal.R cannot be resolved" when I try to
import "MultiAutoCompleteTextView.java" to my project.
code:.................
I haven't research any solutions to resolve this problem.How to correct "com.android.internal.R.attr.autoCompleteTextViewStyle" my own attr?
View 1 Replies
View Related
Jan 11, 2010
1- Does Android Browser (Éclair code base) support the "plug-in" or not?
2- Why "Google Gears" support is removed from the clair code base?
I searched the forum and came to know that earlier version of the Android does not support it at all? Here is the link for that, but this query asked in Dec'2008.
View 2 Replies
View Related
Jan 5, 2010
At first,I have a database created by using Ruby on rails.I just already implement insert function(HTTPPost) in my Android Application and it's work.But I don't know how to retrieve specific record from my databases and insert it back to specific record in Android (Like edit function in RoR)This is my insert code :
private void insertComment() {DefaultHttpClient client = new DefaultHttpClient();HttpPost post = new HttpPost("http://10.10.3.87:3000/comments");
// Configure the form parameters
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("comment[content]", t_comment.getText().toString();
nvps.add(new BasicNameValuePair("comment[id_account]", "1"));
nvps.add(new BasicNameValuePair("comment[id_place]", Integer.toString(position)I really try many ways out but it doesn't work and it takes very long time to fight with this piece of code. Actually, I really don't know how to specify RowID to HTTPPost.
View 2 Replies
View Related
Sep 17, 2010
I am doing some android development, and now I need to send some android application generated data onto a remote server (a database)?How can I do that? can I use direct JDBC connection and sql?
View 1 Replies
View Related
Oct 9, 2010
So i am making a android app, and i want it to be so if i call lets say 911 it sends my GPS coordinents to a certain IP, i know everything but how i make it so if i call 911 it sends the info and how i can make it send the info to the IP via 3g,
View 3 Replies
View Related
Jul 10, 2010
I released updates of my apps yesterday and they are being hidden from android 1.5 and 1.6 phones.
This is due to a Market bug which hides apps with bluetooth permissions from android 1.5 and 1.6.
Come on Google fix the market. We spend countless hours making are apps work on ALL android versions and now you do this...
This issue has been raised since June, but has only affected me since i made an update to the market yesterday.
View 1 Replies
View Related