티스토리 뷰
유니티(unity)
[unity/android] 유니티에서 export한 안드로이드 프로젝트 스플레쉬 스크린 없애기(Android 12버전)
개발자 고포고 2022. 9. 2. 17:21반응형
[unity/android] 유니티에서 export한 안드로이드 프로젝트 스플레쉬 스크린 없애기(Android 12버전)
유니티 프로젝트는 unityLibrary / launcher 공통
build.gradle(launcher)
# implementation 'androidx.core:core-splashscreen:1.0.0-beta02' 추가
# compileSdkVersion 31 추가
dependencies {
implementation project(':unityLibrary')
implementation 'androidx.core:core-splashscreen:1.0.0-beta02'
}
android {
compileSdkVersion 31
buildToolsVersion '30.0.3'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
build.gradle(unityLibrary)
# implementation 'androidx.core:core-splashscreen:1.0.0-beta02' 추가
# compileSdkVersion 31 추가
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.core:core-splashscreen:1.0.0-beta02'
}
android {
compileSdkVersion 31
buildToolsVersion '30.0.3'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
gradle.properties
#android.useAndroidX=true 추가
org.gradle.jvmargs=-Xmx4096M
org.gradle.parallel=true
android.useAndroidX=true
unityStreamingAssets=.unity3d
res/values-v31/styles.xml 파일 생성 후
아래 내용 추가
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="BaseUnityTheme" parent="android:Theme.Holo.Light.NoActionBar.Fullscreen">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowSplashScreenAnimatedIcon">@android:color/transparent</item>
</style>
</resources>
res/drawable/transparent.png 추가(파일 첨부)
#splash #splashscreen 없애기 #스플레쉬 없애기 #유니티 #안드로이드 #android 12 버전
반응형
'유니티(unity)' 카테고리의 다른 글
[unity/UniTask] UniTask를 활용하여 백그라운드에서 리소스(texure) 로드하는 방법 (0) | 2022.11.10 |
---|---|
[arpro/unity] avpro 기본 재생 하는 방법 (0) | 2022.11.04 |
[videoplayer/unity]유니티에서 비디오 플레이 시 전 영상 잠깐(깜빡/잔상) 보일때 (0) | 2022.08.29 |
[unity/android] 안드로이드에서 json을 이용하여 파일 저장/불러오기 구현(소스있음/패키지있음) (0) | 2022.08.09 |
[unity/android] 유니티에서 안드로이드 외부저장소 정리(persistentDataPath/streaming Asset) (0) | 2022.08.09 |
댓글
반응형