1:导入新项目右下角弹出报错
The directory C:\andro…aoRecyclerView-master is registered as a Git root, but no Git repositories were found there.
https://blog.csdn.net/yhch1024/article/details/81220858
2:新手机连不上电脑。
先打开开发者模式,打开usb调试,都做好了后,还连不上,就右击我的电脑-管理-设备管理器
-端口里面的选项右键-更新驱动。。不行的话找usb,hdb那些,右击更新驱动设备试试。。
手机会弹出允许当前设备调试。。。。
3:遇到超长log,在as控制器和adb logcat ->c:/end.log都显示不全的情况下,可以选择断点复制log。
具体步骤,debug运行程序,打开as最下面一排下面的Debug窗口,上面会出现Frames和Variables窗口。在要查看的log.v那一行打上断点,用手点手机上的app,让程序执行到那一步。可以在Variables窗口看到log,右键复制就可。参考网址https://www.jianshu.com/p/5753fbd4e855
3:No cached version of com.android.tools.build:gradle:3.1.4 available for offline mode
解决方法
File – Setting – Gradle – 取消勾选Offine work,选择回默认的gradle wrapper
https://blog.csdn.net/llrraa2010/article/details/83514290
4:Cause:unable tofindvalid certification path to requested target
需要把gradle文件里面的两个jcenter()改为
maven {
url "http://jcenter.bintray.com"
}
如果没有jcenter(),在两个repositories地方加maven {
url "http://jcenter.bintray.com"
}即可
5:Gradle之Could not find com.android.tools.buildgradle3.0.0. Searched in the followi
https://blog.csdn.net/dirksmaller/article/details/82381609
6:32,64 so兼容库。
https://blog.csdn.net/vhawk/article/details/49964475
同以上:
is 32-bit instead of 64-bit动态库错误分析
https://blog.csdn.net/u014316462/article/details/70155293
7:解决添加aar(so库)后报couldn't find "***.so"错误,导致崩溃的问题
https://www.jianshu.com/p/4a6fb36d4f33
Android studio添加第三方库和so
https://blog.csdn.net/anhenzhufeng/article/details/78913341
8:android studio生成aar包并在其他工程引用aar包
https://blog.csdn.net/u011511601/article/details/80579543
9:点了android studio右上角的Gradle,在Tasks里面的build点了assemble,build,以及其他的,发现RUN按钮不好用了。且RUN的解释说明里面,还带了一个中括号,是之前在build里面点的内容。RUN旁边的手机型号也灰色。重新打开了一个工程,发现手机型号旁边的android图标栏,显示的是APP,而出问题的,显示的是带中括号[build]的,,将这里改成app的名称,即可恢复正常。
以前在这个位置可以直接编译release版本,但是最新android studio不支持,只能去bulid-generate signed bundle编译。如果config.gradle提前设置了sign = [storeKey,storePassword那些。不用create new一个key store了。key store path,即在项目主目录sign文件夹下。下面的密码,别名,别名密码,照着填就行了。
10:android studio抓包
https://blog.csdn.net/lxm20819/article/details/90210584
11:Gradle sync failed: Unable to start the daemon process.This problem might be caused by incorrect configuration of the daemon.
https://www.jianshu.com/p/a1e13e207de0
12:若是网络请求的数据不对,可以尝试抓包分析具体原因。
使用AndroidStudio网络抓包
网友评论