Undoing Process Separation

Process separation is no longer supported. Please follow the below procedure.

1. build.gradle

Please replace implementation 'com.buzzvil:buzzscreen-multi-process:' with implementation 'com.buzzvil:buzzscreen:'.

2. AndroidManifest.xml

Please remove android:process=":locker" from the custom locker attribute.

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