我创建了一个Android应用程序,但Avast将此检测为恶意软件.为什么是这样?
任何人都可以告诉我更多关于此的信息,所以我可以在这个应用程序中找到究竟被认为是病毒的内容.这是一个非常简单的应用程序,所以我不知道是什么导致了这个.
我已将此报告为误报,并通过他们的论坛与avast联系.但是我觉得在这里发布也不会有什么伤害,也许有人有类似的问题.
我使用本教程集成了Twitter for Android
它曾经正常运行,但突然它开始显示以下错误:
05-23 23:17:12.492:W/ResponseProcessCookies(17376):无效的cookie标题:"set-cookie:guest_id = v1%3A136932583219426033; Domain = .twitter.com; Path = /; Expires = Sat,23-May- 2015 16:17:12 UTC".无法解析expires属性:星期六,2015年5月23日16:17:12 UTC
在浏览器中显示登录页面并开始登录后,它会显示一个授权页面.当我尝试从这个页面进行授权时,我没有像我预期的那样返回我的应用程序.我怎样才能解决这个问题?
这是我从画廊拍照的代码.
public class FragmentLayout1 extends Fragment implements OnClickListener {
View root;
Context c;
Button add_image;
DialogAddImage image;
RelativeLayout layout_image;
String path;
RunAnimations anima;
public void setContext(Context c){
this.c = c;
Constants con = new Constants(c);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
anima = new RunAnimations();
image = new DialogAddImage((Activity) c);
Bundle bun = new Bundle();
path = bun.getString("path");
root = inflater.inflate(R.layout.layout_1, container, false);
add_image = (Button)root.findViewById(R.id.button2);
add_image.setOnClickListener(this);
layout_image = (RelativeLayout)root.findViewById(R.id.layout_image);
if(!TextUtils.isEmpty(path)){
Log.e("path", path);
Drawable d …Run Code Online (Sandbox Code Playgroud)