Android开发:AndroidStudio 代码报错(报红色),但可正常运行解决方法(5种方式)_小五博客园-CSDN博客
Android 文件外/内部存储的获取各种存储目录路径_移动开发_csdn_aiyang的博客-CSDN博客
https://blog.csdn.net/csdn_aiyang/article/details/80665185
Android Gradle 墙
maven{ url 'https://maven.aliyun.com/repository/jcenter'}
maven{ url 'https://maven.aliyun.com/repository/google'}
https://www.jianshu.com/p/d4e02ab0c7c0
通过gradlew assembleRelease打release包时,出错
Could not resolve all files for configuration ':app:lintClassPath'.
> Could not download groovy-all.jar (org.codehaus.groovy:groovy-all:2.4.15)
解决: 可能和网络被墙下载不了有关, 不行可以通过下面配置
but when i searched 'Execution failed for task ':app:lintVitalRelease' when i was waiting ,i found another solution,add the following lines to android{} in app\build.gradle
"lintOptions {
checkReleaseBuilds false
abortOnError false
}"
android vivo oppo 真机调试 apk、安装失败,系统老是报“解析包时出现问题” - qq_36355271的博客 - CSDN博客
oppo手机永久打开USB调试模式 - Daxian的博客 - CSDN博客
安装APP一直安装不了, 提示launch 。。。。
解决:先右面导航执行gradlew uninstallAll命令
android studio 升级到最新版遇到的各种配置问题
[解决]No toolchains found in the NDK toolchains f... - 简书
Android App 启动页(Splash)黑/白闪屏现象产生原因与解决办法 - 我早就想,要这样载着你,翻山越岭 - CSDN博客
滚动到顶要两句
scrollView.fling(0);
scrollView.smoothScrollTo(0, 0);
//长时间编译,且下载失败 Gradle Download:https://jcenter.bintray.com, 先注释其他远程仓库,再添加maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
依赖冲突问题
我是如何解决依赖库版本冲突的? | DRPrincess的博客
查看依赖树命令行
gradlew :app:dependencyInsight --dependency support-annotations --configuration debugAndroidTestCompileClasspath