๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
๐Ÿ“šํ”„๋กœ๊ทธ๋ž˜๋ฐ/๐Ÿ‘จ๐Ÿป‍๐Ÿ’ปUnity

[์œ ๋‹ˆํ‹ฐ] ์œ ๋‹ˆํ‹ฐ ์•ˆ๋“œ๋กœ์ด๋“œ ๋นŒ๋“œ ์˜ค๋ฅ˜ ํ•ด๊ฒฐ : LauncherManifest

by ||MELON|| 2024. 2. 2.

 

 

์œ ๋‹ˆํ‹ฐ์—์„œ ์•ˆ๋“œ๋กœ์ด๋“œ ์•ฑ์„ ๋นŒ๋“œํ•˜๋‹ค๋ณด๋ฉด ์ˆ˜๋งŽ์€ ์˜ค๋ฅ˜๋“ค์ด ์ถœ๋ชฐํ•œ๋‹ค. ํ•œ๋ฒˆ์— ๋นŒ๋“œ๋ฅผ ์„ฑ๊ณตํ•ด๋ณธ์ ์ด ๊ทนํžˆ ๋“œ๋ฌผ๋‹ค. ์ด๋ฒˆ ์˜ค๋ฅ˜๋Š” Andriod plugin์— ๋Œ€ํ•œ ์˜ค๋ฅ˜๋‹ค.

 

์ •ํ™•ํžˆ๋Š” Andriod plugin์— LauncherManifest ๊ด€๋ จํ•ด์„œ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์„๋•Œ์˜ ๋ฌธ์ œ์ด๋‹ค. ์ด ๊ฒฝ์šฐ๋Š” LauncherManifest์—์„œ ์˜ค๋ฅ˜๊ฐ€ ๋‚œ๊ฑด์ง€ ํ™•์‹ค์น˜ ์•Š์•„์„œ ํ•ด๊ฒฐํ•˜๋Š”๋ฐ ์• ๋ฅผ ๋งŽ์ด ์ผ๋‹ค.

 

์ด ๊ธ€์€ ์œ ๋‹ˆํ‹ฐ 2022.3.19f1 ๋ฒ„์ „์—, ์•ˆ๋“œ๋กœ์ด๋“œ ํƒ€๊ฒŸ API๋Š” 33์„ ๋Œ€์ƒ์œผ๋กœ ์ž‘์„ฑ๋˜์—ˆ๋‹ค.

 

 

์†Œ์Šค์ฝ”๋“œ

<?xml version="1.0" encoding="utf-8"?>
<!-- GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN-->
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.unity3d.player"
    xmlns:tools="http://schemas.android.com/tools"
    android:installLocation="preferExternal">

    <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:xlargeScreens="true"
        android:anyDensity="true"/>

    <application
        android:extractNativeLibs="true"
        android:label="@string/app_name"
        android:icon="@mipmap/app_icon"
        android:allowBackup="false"
        android:fullBackupContent="false"
        tools:replace="android:allowBackup">
    </application>
</manifest>

 

 

 

LauncherManifest์˜ HTML ์ฝ”๋“œ๋ฅผ ์œ„์™€ ๊ฐ™์ด ์ˆ˜์ •ํ•ด์ฃผ๋ฉด ์•„์ฃผ ๊น”๋”ํ•˜๊ฒŒ ํ•ด๊ฒฐ์ด ๋œ๋‹ค.

 

๋Œ“๊ธ€