apk 파일 빌드를 했더니 Gradle build failed. See the Console fo details. 빌드 에러가 발생했다.
그리고 다음 과정을 통해
빌드를 성공했다.
만약 해당 오류를 겪는 분이 있다면
다시금 아래의 과정들을 해보자.
1번부터 차례대로 검토해보자.
Project Settings - Player - Other Settings로 들어간다.
Project Settings - Player - Texture compression format 설정을 ETC2로 변경 한다.
Project Settings - Player - Vulkan Settings - Apply display rotation during rendering 옵션을 체크 해제 한다.
Project Settings - Player - identification - Minimum API Level 옵션을 8.0 이상 버전으로 설정한다.
Override Default Package Name 옵션을 체크하고, PackageName을 지정해준다.
Project Settings - Player - Configuration - Scripting Backend 옵션을 IL2CPP로 변경한다.
Project Settings - Player- Configuration - ARMv7, ARM64 옵션을 체크한다.
Project Settings - Player - Publishing Settings로 들어가자
Project Settings - Player - Publishing Settings 의
Custom Main Manifest, Custom Main Gradle Template, Custom Gradle Properties Template 옵션을 체크한다.
그리고 스크립트들을 다음과 같이 수정한다.
//-----------------------------------------------------------------------
// <copyright file="CardboardStartup.cs" company="Google LLC">
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// </copyright>
//-----------------------------------------------------------------------
using Google.XR.Cardboard;
using UnityEngine;
/// <summary>
/// Initializes Cardboard XR Plugin.
/// </summary>
public class CardboardStartup : MonoBehaviour
{
/// <summary>
/// Start is called before the first frame update.
/// </summary>
public void Start()
{
// Configures the app to not shut down the screen and sets the brightness to maximum.
// Brightness control is expected to work only in iOS, see:
// https://docs.unity3d.com/ScriptReference/Screen-brightness.html.
Screen.sleepTimeout = SleepTimeout.NeverSleep;
Screen.brightness = 1.0f;
// Checks if the device parameters are stored and scans them if not.
if (!Api.HasDeviceParams())
{
Api.ScanDeviceParams();
}
}
/// <summary>
/// Update is called once per frame.
/// </summary>
public void Update()
{
if (Api.IsGearButtonPressed)
{
Api.ScanDeviceParams();
}
if (Api.IsCloseButtonPressed)
{
Application.Quit();
}
if (Api.IsTriggerHeldPressed)
{
Api.Recenter();
}
if (Api.HasNewDeviceParams())
{
Api.ReloadDeviceParams();
}
#if !UNITY_EDITOR
Api.UpdateScreenParams();
#endif
}
}
CardboardStartup.cs
apply plugin: 'com.android.library'
**APPLY_PLUGINS**
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.gms:play-services-vision:15.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.google.protobuf:protobuf-javalite:3.8.0'
**DEPS**}
android {
ndkPath "**NDKPATH**"
compileSdkVersion **APIVERSION**
buildToolsVersion '**BUILDTOOLS**'
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
defaultConfig {
minSdkVersion **MINSDKVERSION**
targetSdkVersion **TARGETSDKVERSION**
ndk {
abiFilters **ABIFILTERS**
}
versionCode **VERSIONCODE**
versionName '**VERSIONNAME**'
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
}
lintOptions {
abortOnError false
}
aaptOptions {
noCompress = **BUILTIN_NOCOMPRESS** + unityStreamingAssets.tokenize(', ')
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
}**PACKAGING_OPTIONS**
}
**IL_CPP_BUILD_SETUP**
**SOURCE_BUILD_SETUP**
**EXTERNAL_SOURCES**
mainTemplate
org.gradle.jvmargs=-Xmx**JVM_HEAP_SIZE**M
org.gradle.parallel=true
unityStreamingAssets=**STREAMING_ASSETS**
**ADDITIONAL_PROPERTIES**
android.enableJetifier=true
android.useAndroidX=true
gradleTemplate
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unity3d.player"
xmlns:tools="http://schemas.android.com/tools">
<application android:requestLegacyExternalStorage="true">
<activity android:name="com.unity3d.player.UnityPlayerActivity"
android:theme="@style/UnityThemeSelector">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
</activity>
</application>
</manifest>
AndroidManifest
위의 과정을 거쳐 설정을 완료하고
Build Settings에서 우리가 apk로 빌드 해서 볼 씬을 Add Open Scene으로 추가해준다.
Android Platform이 맞는지도 확인한다.
(Windodw, Mac, Linux 로 되어있다면 Android로 Switch Platform 해준다.
그리고 Build를 눌러 저장 위치를 지정하고
저장 버튼을 클릭하면
다음과 같이 apk가 빌드된다.

'메모장' 카테고리의 다른 글
게임 인공지능프로그래밍 (0) | 2024.05.13 |
---|---|
Text 폰트 TMP(TextMeshPro) 한글 폰트 생성하기 (0) | 2024.05.04 |
게임 엔징 프로그래밍 문제 메모 (0) | 2024.03.31 |
게임 플랫폼 응용 프로그래밍 문제 메모 (0) | 2024.03.28 |
게임 그래픽 프로그래밍 문제 메모 (0) | 2024.03.28 |