Google Play Build Example
This article demonstrates the process of publishing a Cocos Creator project as a Google Play application.
Please prepare a Cocos Creator project with at least one scene.
Setting Up the Publishing Environment
To publish a Google Play native application, you need to install the Android Studio development environment, along with specific versions of JDK (or OpenSDK), Android SDK, and NDK. For details, please refer to Configure Android Native Development Environment.
Publishing Process
Next, in Cocos Creator, find the Project menu, click the Build button to open the Build panel.
Creating a Build Task
Select Project -> Build menu to open the build panel
Click the New Build Task option in the panel:
Select Google Play as the build platform:
Select at least one scene as the initial loading scene. When there is only one scene, it will be added by default:
Enable ADPF (Optional)
Refer to Android Platform Build Options - Render Backend to select the render backend
Enter the package name
For naming conventions, please refer to Application ID Name
Change Application Icon (Optional)
Select Target API Level
If there's no dropdown box, please check if the SDK and NDK Configuration above is correct.
Enable Google Play Instant (Optional)
Enable Google Play Billing Feature
Without checking this option, you cannot use the Google Play Billing interface
For other options, please refer to Android Platform Build Options for configuration.
Build and Publish
Build: Click the Build button below to create a new build task and start building
Wait for the build to complete
Generate AAB Package via Creator
Click Generate
Wait for the generation to complete
Click the button below to open the generated project:
Find the publish directory
Find the generated AAB package
Generate AAB Package via Android Studio
找到工程对应的目录
Open Android Studio menu:
Open the built project at
{project path}/build/google-play/proj
:Build APK using Android Studio
After opening Android Studio, it will take some time for preparation. Once Android Studio has finished preparing the project, you can package the APK. The preparation process might take a while. If there's no response for a long time, please check your network or switch to another mirror. If you need to interrupt the current background task, you can refer to the following closing method:
When Android Studio has background tasks, you can click the background task bar at the bottom of the window:
Click the × on the right in the popup window to end the background task:
Open the Build menu and select Build Bundle(s) / APK(s):
After successful publication, you can find the Debug version of the APK in the proj/build directory:
Others
Other aspects are basically the same as Android. You can refer to Android Build Example