cocos打包安卓: gradlew打包Android环境搭建

简介: cocos打包安卓: gradlew打包Android环境搭建
cd frameworks\runtime-src\proj.android-studio
gradlew
复制代码

gradlew命令其实运行的是proj.android-studio目录下的gradlew.bat脚本

1.安装Java和下载gradlew

第一次会提示没有java

ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation.
复制代码

Java下载页面,我选择的是jdk8,安装完毕,检查下Java是否正确安装

网络异常,图片无法展示
|

重新执行gradlew,会下载需要的gradle

网络异常,图片无法展示
|

2.配置SDK

运行失败,提示

> SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.
复制代码

我使用的是android-sdk_r24.4.1-windows

定义local.properties文件,或者定义ANDROID_HOME环境变量

我选择增加local.properties文件,需要注意路径的书写方式

sdk.dir=D://dev/android-sdk-windows
复制代码

3.下载项目使用的SDK platform 和 build-tools版本

再次执行gradlew

> You have not accepted the license agreements of the following SDK components:
  [Android SDK Build-Tools 26.0.2, Android SDK Platform 29].
  Before building your project, you need to accept the license agreements and complete the installation of the missing components using the Android Studio SDK Manager.
  Alternatively, to learn how to transfer the license agreements from one workstation to another, go to http://d.android.com/r/studio-ui/export-licenses.html
复制代码

提示指定版本的sdk的license有问题,我选择了重新安装来绕过了这个问题 运行SDK Manager.exe,重新安装下build-toolssdk platform

网络异常,图片无法展示
|
提示信息和项目配置对应的

网络异常,图片无法展示
|

4. 配置NDK

再次执行gradlew,提示ndk没有配置

> NDK not configured.
  Download it with SDK manager
复制代码

查阅资料得知cocos2dx v3.16官方建议使用NDK - R14在local.properties中配置

ndk.dir=D://dev//android-ndk-r14b
复制代码

再次执行,如果发现报错NDK中缺少ABI,多半是NDK版本混用导致的

> No toolchains found in the NDK toolchains folder for ABI with prefix: aarch64-linux-android
复制代码

5.配置libcocos2dx需要的SDK

再次执行,发现项目可以正常通过,但是libcocos2dx缺少对应的sdk,同步骤3,安装即可

A problem occurred configuring project ':libcocos2dx'.
> You have not accepted the license agreements of the following SDK components:
  [Android SDK Platform 14].
复制代码

网络异常,图片无法展示
|

再次执行gradlew

如果你看到如下图所示的build successful,只是说明通过了配置的环境检查

网络异常,图片无法展示
|

gradlew的使用

根据上一步的提示:

gradlew --help可以查看详细的命令参数

USAGE: gradlew [option...] [task...]
-?, -h, --help          Shows this help message.
-a, --no-rebuild        Do not rebuild project dependencies.
-b, --build-file        Specify the build file.
--build-cache           Enables the Gradle build cache. Gradle will try to reuse outputs from previous builds. [incubating]
-c, --settings-file     Specify the settings file.
--configure-on-demand   Configure necessary projects only. Gradle will attempt to reduce configuration time for large multi-project builds. [incubating]
--console               Specifies which type of console output to generate. Values are 'plain', 'auto' (default) or 'rich'.
--continue              Continue task execution after a task failure.
-D, --system-prop       Set system property of the JVM (e.g. -Dmyprop=myvalue).
-d, --debug             Log in debug mode (includes normal stacktrace).
--daemon                Uses the Gradle Daemon to run the build. Starts the Daemon if not running.
--foreground            Starts the Gradle Daemon in the foreground. [incubating]
-g, --gradle-user-home  Specifies the gradle user home directory.
-I, --init-script       Specify an initialization script.
-i, --info              Set log level to info.
--include-build         Include the specified build in the composite. [incubating]
-m, --dry-run           Run the builds with all task actions disabled.
--max-workers           Configure the number of concurrent workers Gradle is allowed to use. [incubating]
--no-build-cache        Disables the Gradle build cache. [incubating]
--no-daemon             Do not use the Gradle Daemon to run the build.
--no-scan               Disables the creation of a build scan. (https://gradle.com/build-scans) [incubating]
--offline               Execute the build without accessing network resources.
-P, --project-prop      Set project property for the build script (e.g. -Pmyprop=myvalue).
-p, --project-dir       Specifies the start directory for Gradle. Defaults to current directory.
--parallel              Build projects in parallel. Gradle will attempt to determine the optimal number of executor threads to use. [incubating]
--profile               Profile build execution time and generates a report in the <build_dir>/reports/profile directory.
--project-cache-dir     Specify the project-specific cache directory. Defaults to .gradle in the root project directory.-q, --quiet             Log errors only.
--recompile-scripts     Force build script recompiling.
--refresh-dependencies  Refresh the state of dependencies.
--rerun-tasks           Ignore previously cached task results.
-S, --full-stacktrace   Print out the full (very verbose) stacktrace for all exceptions.
-s, --stacktrace        Print out the stacktrace for all exceptions.
--scan                  Creates a build scan. Gradle will emit a warning if the build scan plugin has not been applied. (https://gradle.com/build-scans) [incubating]
--status                Shows status of running and recently stopped Gradle Daemon(s).
--stop                  Stops the Gradle Daemon if it is running.
-t, --continuous        Enables continuous build. Gradle does not exit and will re-execute tasks when task file inputs change. [incubating]
-u, --no-search-upward  Don't search in parent folders for a settings.gradle file.
-v, --version           Print version info.
-w, --warn              Set log level to warn.
-x, --exclude-task      Specify a task to be excluded from execution.
复制代码

打包

gradlew tasks命令中,我们会发现很多task

------------------------------------------------------------
All tasks runnable from root project
------------------------------------------------------------
Android tasks
-------------
androidDependencies - Displays the Android dependencies of the project.
signingReport - Displays the signing info for each variant.
sourceSets - Prints out all the source sets defined in this project.
Build tasks
-----------
assemble - Assembles all variants of all applications and secondary packages.
assembleAndroidTest - Assembles all the Test applications.
assembleDebug - Assembles all Debug builds.
assembleRelease - Assembles all Release builds.
build - Assembles and tests this project.
buildDependents - Assembles and tests this project and all projects that depend on it.
buildNeeded - Assembles and tests this project and all projects it depends on.
clean - Deletes the build directory.
cleanBuildCache - Deletes the build cache directory.
compileDebugAndroidTestSources
compileDebugSources
compileDebugUnitTestSources
compileReleaseSources
compileReleaseUnitTestSources
extractDebugAnnotations - Extracts Android annotations for the debug variant into the archive file
extractReleaseAnnotations - Extracts Android annotations for the release variant into the archive file
mockableAndroidJar - Creates a version of android.jar that's suitable for unit tests.
Build Setup tasks
-----------------
init - Initializes a new Gradle build.
wrapper - Generates Gradle wrapper files.
Help tasks
----------
buildEnvironment - Displays all buildscript dependencies declared in root project 'proj.android-studio'.
components - Displays the components produced by root project 'proj.android-studio'. [incubating]
dependencies - Displays all dependencies declared in root project 'proj.android-studio'.
dependencyInsight - Displays the insight into a specific dependency in root project 'proj.android-studio'.
dependentComponents - Displays the dependent components of components in root project 'proj.android-studio'. [incubating]
help - Displays a help message.
model - Displays the configuration model of root project 'proj.android-studio'. [incubating]
projects - Displays the sub-projects of root project 'proj.android-studio'.
properties - Displays the properties of root project 'proj.android-studio'.
tasks - Displays the tasks runnable from root project 'proj.android-studio' (some of the displayed tasks may belong to subprojects).
Install tasks
-------------
installDebug - Installs the Debug build.
installDebugAndroidTest - Installs the android (on device) tests for the Debug build.
installRelease - Installs the Release build.
uninstallAll - Uninstall all applications.
uninstallDebug - Uninstalls the Debug build.
uninstallDebugAndroidTest - Uninstalls the android (on device) tests for the Debug build.
uninstallRelease - Uninstalls the Release build.
Verification tasks
------------------
check - Runs all checks.
connectedAndroidTest - Installs and runs instrumentation tests for all flavors on connected devices.
connectedCheck - Runs all device checks on currently connected devices.
connectedDebugAndroidTest - Installs and runs the tests for debug on connected devices.
deviceAndroidTest - Installs and runs instrumentation tests using all Device Providers.
deviceCheck - Runs all device checks using Device Providers and Test Servers.
lint - Runs lint on all variants.
lintDebug - Runs lint on the Debug build.
lintRelease - Runs lint on the Release build.
lintVitalRelease - Runs lint on just the fatal issues in the release build.
test - Run unit tests for all variants.
testDebugUnitTest - Run unit tests for the debug build.
testReleaseUnitTest - Run unit tests for the release build.
复制代码

其中Build Tasks中的build是我们需要的打包命令

gradlew build --build-cache

加快打包速度:

--build-cache           Enables the Gradle build cache. Gradle will try to reuse outputs from previous builds. [incubating]
复制代码

NDK版本的问题: process_begin: CreateProcess failed. make (e=2)

process_begin: CreateProcess(NULL, 
D:/dev/android-ndk-r14b/build//../toolchains/arm-linux-androideabi-4.9/prebuilt/windows-x86_64/bin/arm-linux-androideabi-g++ 
-MMD -MP -MF
.... 我这里做了省略,这里的报错超级超级长
 ...) failed.
  make (e=2): ?????????????????
复制代码

CreateProcess给出的报错信息中,使用到了ndk的一个目录下的文件ndk/toolchains/arm-linux-androideabi-4.9/prebuilt/windows-x86_64/bin/arm-linux-androideabi-g++ 实际上,我发现是没有这个文件的

网络异常,图片无法展示
|

然后我下载了r16b解压后发现是有的:

网络异常,图片无法展示
|

Werror=format-security

切换到r16b后再次进行编译

/frameworks/cocos2d-x/cocos/3d/../platform/CCPlatformMacros.h:221:67: 
error: format not a string literal and no format arguments [-Werror=format-security]
#define CCLOGERROR(format,...)  cocos2d::log(format, ##__VA_ARGS__)
复制代码
  • 解决办法1:在app/jni/Android.mk中加入,不对prinft的参数进行常量字符串检查

LOCAL_DISABLE_FORMAT_STRING_CHECKS :=true

  • 解决办法2(未验证):app/jni/Application.mk加入

APP_CFLAGS += -Wno-error=format-security 意思是无视这个error

  • 解决办法3(未验证) 在CMake脚本文件CMakeLists.txt里面添加一行add_definitions (-Wno-format-security)即可。 这种情况实际是编译器把warining作为error处理了,遇到其他类似情况同样处理,报[-Werror,-WXXX]add_definitions (-Wno-XXX)

不知原因的问题

error: undefined reference to 'vtable
the vtable symbol may be undefined because the class is missing its key function
复制代码

把构造,析构的实现放在cpp里面就解决了

android studio 下载

下载地址gradle版本对照表

build.gradle 4.x 需要下载Android Studio3.0

java heap space

gradle.properties修改jvm options即可,堆空间设置的大一点

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.jvmargs=-Xmx4096m
复制代码

真机安装

gradlew installDebug

网络异常,图片无法展示
|
手机系统中有应用阻止了安装

小米手机:在手机的开发者模式中关闭MIUI优化

lint导致打包停止

* What went wrong:
Execution failed for task ':xxxx:lint'.
> Lint found errors in the project; aborting build.
  Fix the issues identified by lint, or add the following to your build script to proceed with errors:
  ...
  android {
      lintOptions {
          abortOnError false
      }
  }
  ...
复制代码

按照fix提示,修改build.gradle即可

小结

类似问题最好遇到一次记录一次,防止反复查阅,很费时间的


目录
相关文章
|
2月前
|
IDE Java 开发工具
深入探索安卓应用开发:从环境搭建到第一个"Hello, World!"应用
本文将引导读者完成安卓应用开发的初步入门,包括安装必要的开发工具、配置开发环境、创建第一个简单的安卓项目,以及解释其背后的一些基本概念。通过一步步的指导和解释,本文旨在为安卓开发新手提供一个清晰、易懂的起点,帮助读者顺利地迈出安卓开发的第一步。
222 65
|
2月前
|
存储 Oracle Java
深入探索安卓应用开发:从环境搭建到第一个"Hello, World!"
本文旨在为安卓开发初学者提供一个清晰、简洁的入门指南。我们将一步步引导您完成安卓开发环境的搭建,并详细介绍如何创建您的第一个安卓应用程序。通过这篇文章,您不仅能够理解安卓应用开发的基本流程,还能掌握一些实用的技巧和方法,为进一步深入学习打下坚实的基础。
|
3月前
|
安全 Java Android开发
【Android P】OTA升级包定制,移除不需要更新的分区,重新打包签名
如何解压OTA升级包、编辑升级包内容(例如移除不需要更新的分区)、重新打包、签名以及验证OTA文件的过程。
274 2
【Android P】OTA升级包定制,移除不需要更新的分区,重新打包签名
|
3月前
|
Android开发
我的Android进阶修炼:安卓启动流程之init(1)
本文深入分析了Android系统中的init进程,包括其源码结构、主要功能以及启动流程的详细注解,旨在帮助读者理解init作为用户空间的1号进程在Android启动过程中的关键作用。
63 1
|
3月前
|
Java 网络安全 开发工具
UNITY与安卓⭐一、Android Studio初始设置
UNITY与安卓⭐一、Android Studio初始设置
|
5月前
|
Oracle 安全 Java
安卓逆向 -- Unidbg环境搭建篇
安卓逆向 -- Unidbg环境搭建篇
206 3
|
5月前
|
人工智能 安全 物联网
【Android】安卓开发的前景
【Android】安卓开发的前景
112 1
|
4月前
|
Android开发
【亲测,安卓版】快速将网页网址打包成安卓app,一键将网页打包成app,免安装纯绿色版本,快速将网页网址打包成安卓apk
【亲测,安卓版】快速将网页网址打包成安卓app,一键将网页打包成app,免安装纯绿色版本,快速将网页网址打包成安卓apk
131 0
|
5月前
|
Java 开发工具 Android开发
详细解读Android开发DNK开发将.c文件打包成os
详细解读Android开发DNK开发将.c文件打包成os
32 0
|
5月前
|
jenkins 持续交付 开发工具
Android使用Jenkins打包自动维护sdk版本号
Android使用Jenkins打包自动维护sdk版本号
57 0