android游戏开发大全 pdf
“Wo! 太棒了! “这是《安卓游戏盒子开发大全》第14章的益智类手机游戏,主要熟悉安卓系统中利用OpenGL ES 2.0渲染的2D手游开发。
2016年当时使用的Android Studio的开发环境是2.2的早期版本,所以至今发生了很多变化,很多朋友在引进项目时都遇到了障碍。
修改,build.gradle文件中的版本号,将其修改为新的空项目版本号或正常运行的版本号。
,如果报告了错误:
Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all artifacts for configuration ‘:classpath’.
意思決定:
在build.gradle归类的前几行中,修改如下:
,如果报告了错误:
ERROR:the minSdk version should not be ceclared in the android manifest file
删除WoWater项目的AndroidManifest.xml中的所有uses-sdk。
删除这个部分
,如果报告了错误:
the source set‘instrument test’isnotrecognizedbytheandroidgradleplugin
您只需在build.gradle中找到它,然后将instrumentTest替换为androidTest即可。
当鼠标指针悬挂在instrumentTest上时,会有智能提示,您可以单击自动更换。
,如果报告了错误:
Configuration ‘compile’ is obsolete and has been replaced with ‘implementation’.
用build.gradle智能地画水平线,把compile改为implementation就可以了。
这是安卓studio 3.0以后的改进,超仔今天使用的是AS版本是现阶段的主流3.6.2。
,如果报告了错误:
Could not resolve all files for configuration ‘:app:_internal_aapt2_binary’.
在build.gradle的任意合适位置添加以下代码即可。
最后全部做好了。 把游戏项目最后生成的apk发送到手机上玩吧~
在运行2020年主流安卓10系统的手机上:
完