草庐IT

warn_memset_zero_len

全部标签

Android Studio 2.3 更新 : Warning:Using incompatible plugins for the annotation processing: android-apt. 这可能会导致意外行为

因此,我已经阅读了我可以在本网站上找到的关于此问题的所有问题。我还在评论中与一位遇到类似问题的开发人员进行了交谈,他能够解决这个问题。我的gradle脚本中没有写apt或annotationProcessor。我的代码中没有任何地方写过android-apt这个词。我什至继续检查了所有的图书馆。这已包含在我的项目中。这是一个非常大的问题,需要解决。我在下面附上修改后的build.gradle,请建议:applyplugin:'com.android.application'applyplugin:'realm-android'android{dexOptions{jumboMode=t

android - Robolectric - 如何清理消息 : "WARNING: unknown service autofill"

在使用Robolectric进行测试期间,我总是在控制台(无LogCat)中收到一条警告消息,内容为:“警告:未知服务自动填充”。有人知道如何清理它吗?提前致谢。 最佳答案 您可以将sdk版本设置为25。因此,测试将针对api级别25运行。应该在未来的robolectric版本中删除/实现警告。要设置sdk版本,请参阅:http://robolectric.org/configuring/ 关于android-Robolectric-如何清理消息:"WARNING:unknownserv

android - 如何解决 "WARNING: Application does not specify an API level requirement"?

你好我正在编写一个android应用程序,但是当我运行这个应用程序时,会生成以下应用程序并且应用程序不会出现在Windows上,请帮忙..!!!!如果我得到正确的解决方案,我将不胜感激,,,,,, 最佳答案 要解决此警告,请添加到AndroidManifest.xml中的manifest标签。将4替换为您要支持的最低SDK版本数。 关于android-如何解决"WARNING:ApplicationdoesnotspecifyanAPIlevelrequirement"?,我们在Stac

android - [12728] :WARNING:android/base/files/IniFile. cpp :158:Failed to process . ini文件C :\Users\User_Name\. android\emu-update-last-check.ini 用于读取

在AndroidStudio上,我不断收到此警告:[12728]:WARNING:./android/base/files/IniFile.cpp:158:Failedtoprocess.inifileC:\Users\user_name.android\emu-update-last-check.iniforreading.我不知道这是什么意思。 最佳答案 在我的机器上,出于某种原因,我丢失了emu-update-last-check.ini文件。我在消息中列出的文件夹中创建了一个空文件,将其命名为emu-update-last-

testing - 安卓 WebView SSL 'Security Warning'

我正在为客户构建应用的测试版本。此应用程序的一部分使用调用基于SSL的站点的WebView。反过来,客户端提供了一个测试域,其中证书名称与FQDN不匹配。las,他们无法提供匹配的证书。:(我正在使用一行代码在配套的iOS即席应用程序上解决这个问题(同样,不用于生产用途-仅用于测试目的)。我在Android操作系统上搜索过类似的信息,但相比之下,我在这里和其他地方看到的解决方案足以让我头晕目眩!有没有直接的方法来解决这个问题?即使是隐藏在某个地方的面向用户的设置?感谢提供线索! 最佳答案 创建一个WebViewClient并处理如下

android - react-native android assembleDebug日志: Unknown source file : warning: string 'catalyst_debugjs' has no default translation

测试一个新的react-native项目:react-nativeinitreact-native运行-android日志:...:app:bundleDebugJsAndAssetsSKIPPED:app:processDebugManifest:app:processDebugResourcesUnknownsourcefile:warning:string'catalyst_debugjs'hasnodefaulttranslation.Unknownsourcefile:warning:string'catalyst_element_inspector'hasnodefault

安卓工作室 : Unexpected top level exception (finished with non-zero exit value 2. 。)

当我尝试调试我的Android应用程序时,我收到以下错误消息:Error:Executionfailedfortask':app:transformClassesWithDexForDebug'.com.android.build.transform.api.TransformException:com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:Process'command'/Library/Java/JavaVirtualMachines/jdk1.8.

android - WARN in logcat ResourceType : For resource . .., entry index(...) is beyond type entryCount(1)

每次应用程序呈现某些布局时,我都会在logcat上收到这些警告。试图搜索但找不到线索。我认为与资源(可绘制对象、字符串或值)有关,但我不知道是什么原因造成的。这不是错误,但有点烦人。有人有想法吗?04-2215:28:33.20421943-21943/xx.xxx.xxxxxxx.xxxxx.xxxxxW/ResourceType﹕Forresource0x01030128,entryindex(296)isbeyondtypeentryCount(1)04-2215:28:33.20421943-21943/xx.xxx.xxxxxxx.xxxxx.xxxxxW/ResourceT

安卓工作室 0.5.9 : 2 annoying Gradle warnings

我已经升级到AndroidStudio0.5.9并且总是收到这些警告:Configurationondemandisanincubatingfeature.RelyingonpackagingtodefinetheextensionofthemainartifacthasbeendeprecatedandisscheduledtoberemovedinGradle2.0有什么我应该做的吗?如果没有,我可以禁用它们吗? 最佳答案 谷歌搜索Gradle孵化功能结果thispage:C.1.2.IncubatingFeaturesarei

android - ProGuard : Warning: butterknife. internal.InjectViewProcessor:

我在使用idea13生成apk时遇到了这个错误ProGuard:Warning:butterknife.internal.InjectViewProcessor:can'tfindsuperclassorinterfacejavax.annotation.processing.AbstractProcessor 最佳答案 即使您没有发布实际问题,我假设您希望该警告消失。将以下行添加到您的ProGuard配置中:-dontwarnbutterknife.internal.**-keepclass**$$ViewInjector{*;}