Androdi Studio 3.0常见问题

Androdi Studio 3.0常见问题

  • 安装时卸载不掉
Unknown failure (at android.os.Binder.execTransact(Binder.java:580)) Error while Installing APKs
原因:
Instant Run是Android Studio2.0以后新增的一个运行机制,InstantRun可以把更新内容推送到设备上,而无需重新build一个新的apk,能够显著减少你第二次及以后的构建和部署时间。
解决方法:
File -> Settings -> Build,Execution,Deployment -> Instant Run
把Enable Instant Run to选项去掉,再重新运行一次就可以通过了。
  • 构建时报错
error: style attribute '@android:attr/windowEnterAnimation' not found.
原因:
Android Studio 3.0已经不支持@开头使用android自带的属性
解决方法一:
在Project/gradle.properties中添加 android.enableAapt2=false
解决方法二:
将相关代码中的将‘@’去掉!

你可能感兴趣的:(Android)