点击报错信息中的app, 按照提示,修改compile 为 implementation 再次同步即可 结果…
1.替换 compile为implementation. 2.file->invalidate caches 或者build中的clear…
报错截图: 问题原因:compile会被在2018年底取消,会被imlementation替代,所以会报这个警告,解决警告的方式就是换成 imlementation 就好了 解决方法: 在 app 的 Gradle 中: compile 改为 implementation androidTestCompile 改为 androidTestImplementation testCompile 改为 testImplementation 这样替换了过时的,再重新编译即可.…
项目中Gradle版本升级到4.4后,项目构建时,每次出现红色的警告信息: WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation'. It will be removed at the end of 2018 Affected Modules: MyCorn-MyCorn 复制代码 但本地项目代码中compile都已经完成了implementation,警告信息依然出现. 一…
每次升级Android Studio时,一般情况下Gradle版本的也会相应的升级,我之前Android Studio 3.0.1.Gradle 是4.1升级后为:Android Studio 3.1.2.Gradle 为4.4. 升级完成后提示警告信息:Configuration 'compile' is obsolete and has been replaced with 'implementation'.  如下图所示: 在Android Studio3.0开始的时候就将 compile…
android Studio 中打开react-native项目的android文件夹 在sync的过程中 发生warning: WARNING: API 'variant.getMergeAssets()' is obsolete and has been replaced with 'variant.getMergeAssetsProvider()'. RN 版本:0.58 buildToolsVersion = "28.0.3"minSdkVersion = 16compileS…
WARNING: API 'variant.getJavaCompiler()' is obsolete and has been replaced with 'variant.getJavaCompileProvider()'.It will be removed at the end of 2019.For more information, see https://d.android.com/r/tools/task-configuration-avoidance.REASON: It i…
Failed to resolve: common Open File  Warning:Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-con…
react-native 0.59打包报错,信息如下,根据错误信息是因为react-native-cookies的sdk版本问题导致的 ./gradlew assembleRelease > Configure project :react-native-cookies WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be rem…
React Native (web Android)环境搭建踩坑(真的是一个艰辛的过程,大概所有坑都被我踩了 官方文档地址 : https://facebook.github.io/react-native/docs/getting-started 选择  Building Projects with Native Code 大家可以参照官方文档一步一步来,下面是我遇到的一些问题总结 查看一下node版本           node -v ------- 进入安装之前最好查一下JDK版本   …