gradle
qq风轻云淡
安卓开发工程师
展开
-
使用不同版本的Java可能会产生多个Gradle守护进程
Using different JDK locations on different processes might cause Gradle tospawn multiple daemons, for example, by executing Gradle tasks from a terminalwhile using Android Studio.原创 2022-10-21 21:13:32 · 3271 阅读 · 1 评论 -
Gradle版本与Java版本的对应关系
Gradle版本与Java版本的对应关系原创 2022-10-21 20:37:42 · 11649 阅读 · 0 评论 -
No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android
最近运行一个Android项目报这个错:No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android,百度了一下,网上大多数都是复制粘贴来的,都是同一篇文章,没有找到解决办法。最后,看到一位老哥写的博客,感觉挺有道理的,产生这个问题的原因是官方不推荐使用mipsel-linux-android了,所以gradle没有支持,因此如果你从Github下载的老项目,使用新版gradle的时候原创 2022-02-28 15:13:48 · 2421 阅读 · 0 评论 -
Could not initialize class com.android.sdklib.repository.AndroidSdkHandler
今天从GitHub上下载一个项目运行的时候报错,原因是这个项目太老了,gradle的版本也太老了,我的AS是北极狐版本的,所以运行不起来,所以就需要升级gradle版本,具体操作如下:把根目录下的gradle从3.0.1改为4.1.2 dependencies { classpath 'com.android.tools.build:gradle:3.0.1' // NOTE: Do not place your application d原创 2022-01-05 16:05:17 · 15654 阅读 · 2 评论 -
Unable to get provider android.arch.lifecycle.ProcessLifecycleOwnerInitializer:
由于我的项目中添加了很多的依赖,导致,APP运行的时候出现这个bug:Unable to get provider android.arch.lifecycle.ProcessLifecycleOwnerInitializer: java.lang.ClassNotFoundException: Didn't find class "android.arch.lifecycle.Process...原创 2018-11-15 09:01:45 · 4438 阅读 · 0 评论 -
WARNING: One of the plugins you are using supports Java 8 language features. To try the support buil
从github上下载一个项目导入到Android studio3.2.0上以后,发现报错:WARNING: One of the plugins you are using supports Java 8 language features. To try the support built into the Android plugin, remove the following from yo...原创 2018-09-25 22:12:15 · 5250 阅读 · 0 评论 -
Unable to find method 'com.android.build.gradle.api.BaseVariant.getOutputs()Ljava/util/List;'.
我的Android Studio是3.1.4的,今天在项目中用了最新的黄油刀butterknife8.8.1的依赖,结果报错:Unable to find method 'com.android.build.gradle.api.BaseVariant.getOutputs()Ljava/util/List;'.Possible causes for this unexpected erro...原创 2018-09-20 12:32:32 · 1109 阅读 · 0 评论 -
More than one file was found with OS independent path 'META-INF/rxjava.properties'
今天在打包apk的时候突然报错:More than one file was found with OS independent path 'META-INF/rxjava.properties'。截图如下:解决这个问题也挺简单的:在如图所示的app的build.gradle文件的android标签内加上红框里的几行代码就可以了。我也把代码复制出来方便大家复制粘贴。packa...原创 2018-09-20 09:31:10 · 1411 阅读 · 0 评论 -
InnerClass annotations are missing corresponding EnclosingMember annotations. Such InnerClass annota
Android studio升级到3.1.4以后,buildApk时出现了如下提示:InnerClass annotations are missing corresponding EnclosingMember annotations. Such InnerClass annotations are ignored.截图如下:这个只能算是警告吧,也没报错,而且也能正常打出包来,但...原创 2018-09-16 22:08:08 · 7567 阅读 · 1 评论 -
Cannot set the value of read-only property 'outputFile' for ApkVariantOutputImpl_Decorated{apkData=M
android studio升级到3.1.4之后gradle里的很多配置也相应发生了一些改变。在打包的时候我就遇到了这样的问题。报错为:Cannot set the value of read-only property 'outputFile' for ApkVariantOutputImpl_Decorated{apkData=Main{type=MAIN, fullName=debug,...原创 2018-08-13 10:59:14 · 12272 阅读 · 6 评论