Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Current »

프로세스 분리는 더 이상 지원되지 않습니다. 하기의 절차를 따라 원상 복구를 진행해주세요.

1. build.gradle 수정

build.gradle에서 implementation 'com.buzzvil:buzzscreen-multi-process:'implementation 'com.buzzvil:buzzscreen:'로 대체합니다.

Error rendering macro 'excerpt-include' : No link could be created for '(Excerpt) BS SDK version: multi-process'.

2. AndroidManifest.xml 수정

커스터마이징한 잠금화면을 사용했을 경우 AndroidManifest.xml 내의 커스터마이징한 잠금화면 속성에서 android:process=":locker"를 제거해야 합니다.

<manifest>
    <application>
        ...
        <activity
            android:name=".CustomLockerActivity"
            android:excludeFromRecents="true"
            android:launchMode="singleTask"
            <!-- android:process=":locker" -->
            android:screenOrientation="portrait"
            android:taskAffinity="${applicationId}.Locker" />
    </application>
</manifest>

  • No labels