首页 \ 问答 \ Cordova Android分类为恶意软件(Cordova Android Classification as Malware)

Cordova Android分类为恶意软件(Cordova Android Classification as Malware)

我制作了一个版本为5.2.0的科尔多瓦应用程序。我的一位朋友寄给我一张图片,上面写着(从德国自由翻译):

AVG反病毒免费警报

应用程序被分类为恶意软件。 点击Deinstallation删除应用程序

有谁知道这是从哪里来的? 当然,我没有实施恶意软件。 谷歌只给了我这篇文章 ,这取决于Cordova 4.0.1任何想法如何解决这个问题?


I made a Cordova App with Version 5.2.0 A friend of me send me a Picture that states (freely translated from German):

AVG AntiVirus FREE Alert

App is classified as Malware. Click on Deinstallation to remove the App

Does anybody know where this comes from? Of course I implemented no Malware. Google only gave me this article and it is up to Cordova 4.0.1 Any ideas how to fix this?


原文:https://stackoverflow.com/questions/32522843
更新时间:2022-01-12 12:01

最满意答案

如果你需要找到一个特定的符号,你可以参考W3的字符实体参考图

可以使用以下方法之一显示平方根(√)符号

√
√
√
√

例如:

<input type="button" value="&radic;" />       <!-- or... -->
<input type="button" value="&Sqrt;" />        <!-- or... -->
<input type="button" value="&#x0221A;" />     <!-- or... -->
<input type="button" value="&#8730;" />

就我个人而言,我会选择&#x0221A;&#8730; 因为这些直接引用符号的Unicode ID。 浏览器可能不一定有为&radic;定义的任何映射&radic;&Sqrt;

JSFiddle演示


If you need to find a specific symbol you can refer to W3's Character Entity Reference Chart.

The Square Root (√) symbol can be displayed using one of the following:

&radic;
&Sqrt;
&#x0221A;
&#8730;

For example:

<input type="button" value="&radic;" />       <!-- or... -->
<input type="button" value="&Sqrt;" />        <!-- or... -->
<input type="button" value="&#x0221A;" />     <!-- or... -->
<input type="button" value="&#8730;" />

Personally I'd opt for either &#x0221A; or &#8730; as these directly reference the symbol's Unicode ID. A browser may not necessarily have any mapping defined for &radic; or &Sqrt;.

JSFiddle demo.

相关问答

更多
  • 如果你分别查看cmath和math的文档,你会发现: cmath “提供对复数的数学函数的访问” math “函数不能与复数一起使用;如果需要支持复数,请使用cmath模块中相同名称的函数。” (**)运算符映射到pow函数,其重要区别是pow将其参数转换为float。 因此,对于相同的参数,您可能会看到三个函数的不同结果,如此处所示。 请注意,如果表达式具有真正的解决方案,则math.sqrt返回的值与math.sqrt返回的值的实数部分之间没有区别。 但是,如果没有可用的实际解决方案,则会遇到math. ...
  • 不会导致精度损失的类型转换可能不会引发警告。 他们隐含地投下。 int --> double //no loss in precision (e.g 3 became 3.00) double --> int //loss in precision (e.g. 3.01222 became 3) 什么触发了一个警告,什么不是很大程度上取决于编译器和提供给它的标志,然而,大多数编译器(至少我使用过的) 不认为隐式类型转换足够dangerous以保证警告,因为它是语言规范中的一项功能。 警告或不警告: C99 ...
  • z只是一个数字,但*参数扩展语法要求您传入一个序列(例如, list , tuple或str )。 删除 * (并使您的函数仅适用于单个参数),或者在函数签名中使用*z使z成为0或更多捕获参数的元组: def f(x, y, z): k = x(z) l = y(z) return k == l 要么 def f(x, y, *z): k = x(*z) l = y(*z) return k == l 后者现在适用于具有多个参数的函数: f(math.po ...
  • sqrt不会舍入任何东西 - 当您将整数转换为double时,您会这样做。 双精度不能代表64位整数可以不失精度的所有数字。 特别从2 53开始,有多个整数将被表示为相同的double值。 所以如果你把一个大于2 53的整数转换为double,那么你会失去一些最不重要的位,这就是为什么(double)(~0ull)是18446744073709552000.0,而不是18446744073709551615.0(或者更确切地说后者实际上等于前者因为它们代表相同的双数)。 sqrt doesn't round ...
  • 将代数平方根的参数拆分为代数,也许?: return sqrt((3*x*x+1)/2) * sqrt((6*y*y-5)/2); 或根据您的需求进一步分解。 如果x足够大,您可以忽略+1并创建第一项: sqrt((3*x*x)/2) = fabs(x) * sqrt(3.0/2.0) 和第二学期一样,制作它 sqrt((6*y*y)/2) = fabs(y) * sqrt(3.0); 编辑:在OP编辑他的问题后: return sqrt(((3*x*x+1)*(6*y*y-5)-1)/4); ...
  • 原因是您的转换逻辑仅适用于val > 1 注意你测试sqrt(.5)因为当val == 0.5你得到S = val * val ,它是0.25 。 这会将min重设为0.25由于sqrt = (max + min) / 2; 而最初的max是val (0.5),你永远不能超过0.5 。 你必须确定,因为你的初始值小于1,所以你想让你的初始max为1,这样你的平均值就是val < sqrt < 1 如果你这样做,那么你应该收敛在正确的价值。 我目前无法访问C编译器。 但是,通过初步检查,第一个平均值为1.5/ ...
  • 根据规范 sqrt返回xie的平方根,值√x。 如果x <0, 结果是不确定的 。 这意味着会发生任何事情,但有些实现会忽略参数上的符号位并返回一个正数。 according to the spec sqrt returns the square root of x. i.e., the value √x. Results are undefined if x<0. Which means anything can happen, but some implementations would just ig ...
  • 如果你需要找到一个特定的符号,你可以参考W3的字符实体参考图 。 可以使用以下方法之一显示平方根(√)符号 : √ √ √ √ 例如:
  • 这不是100%与Python相关的。 你不能计算负数的平方根(当处理实数时)。 当b**2 - (4*a*c)为负数时,您没有采取任何预防措施。 >>> import numpy as np >>> >>> np.sqrt(4) 2.0 >>> np.sqrt(-4) __main__:1: RuntimeWarning: invalid value encountered in sqrt nan 我们来测试一下你是否有负值: >>> import numpy as np >>> >>> a = 0.7 ...

相关文章

更多

最新问答

更多
  • 获取MVC 4使用的DisplayMode后缀(Get the DisplayMode Suffix being used by MVC 4)
  • 如何通过引用返回对象?(How is returning an object by reference possible?)
  • 矩阵如何存储在内存中?(How are matrices stored in memory?)
  • 每个请求的Java新会话?(Java New Session For Each Request?)
  • css:浮动div中重叠的标题h1(css: overlapping headlines h1 in floated divs)
  • 无论图像如何,Caffe预测同一类(Caffe predicts same class regardless of image)
  • xcode语法颜色编码解释?(xcode syntax color coding explained?)
  • 在Access 2010 Runtime中使用Office 2000校对工具(Use Office 2000 proofing tools in Access 2010 Runtime)
  • 从单独的Web主机将图像传输到服务器上(Getting images onto server from separate web host)
  • 从旧版本复制文件并保留它们(旧/新版本)(Copy a file from old revision and keep both of them (old / new revision))
  • 西安哪有PLC可控制编程的培训
  • 在Entity Framework中选择基类(Select base class in Entity Framework)
  • 在Android中出现错误“数据集和渲染器应该不为null,并且应该具有相同数量的系列”(Error “Dataset and renderer should be not null and should have the same number of series” in Android)
  • 电脑二级VF有什么用
  • Datamapper Ruby如何添加Hook方法(Datamapper Ruby How to add Hook Method)
  • 金华英语角.
  • 手机软件如何制作
  • 用于Android webview中图像保存的上下文菜单(Context Menu for Image Saving in an Android webview)
  • 注意:未定义的偏移量:PHP(Notice: Undefined offset: PHP)
  • 如何读R中的大数据集[复制](How to read large dataset in R [duplicate])
  • Unity 5 Heighmap与地形宽度/地形长度的分辨率关系?(Unity 5 Heighmap Resolution relationship to terrain width / terrain length?)
  • 如何通知PipedOutputStream线程写入最后一个字节的PipedInputStream线程?(How to notify PipedInputStream thread that PipedOutputStream thread has written last byte?)
  • python的访问器方法有哪些
  • DeviceNetworkInformation:哪个是哪个?(DeviceNetworkInformation: Which is which?)
  • 在Ruby中对组合进行排序(Sorting a combination in Ruby)
  • 网站开发的流程?
  • 使用Zend Framework 2中的JOIN sql检索数据(Retrieve data using JOIN sql in Zend Framework 2)
  • 条带格式类型格式模式编号无法正常工作(Stripes format type format pattern number not working properly)
  • 透明度错误IE11(Transparency bug IE11)
  • linux的基本操作命令。。。