android device arrive with alot of preinstalled app like facebook, flipboard, skype and for sure google service (youtube,maps,gmail,etc.) – for private use this is anoying, but for business it is essential to secure the usecase
android enterprise
when enabling Android Enterprise for Kiosk/Company devices, during setup the default apps could be disabled with this switch – PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED – Samsung offers this with it’s KNOX Mobile Enrollment and google with buildin zero-touch service
be aware that you loose the native camera app if your usecase require one

device management
after your device is enrolled in mobile device managment system (emm, uem or whatever) your able to restrict installed apps by package name, apps differ from device manufaturer and os level, package names also useful to arrange/allow in kiosk setup, for samsung XCover4s these are:
- com.samsung.android.messaging
- com.sec.android.app.samsungapps
- com.samsung.android.calendar
- com.samsung.android.email.provider
- com.sec.android.app.myfiles
- com.sec.android.gallery3d
- com.sec.android.app.clockpackage.clockpackage
- com.sec.android.app.clockpackage.alarm.alarmalert
- com.google.android.gm
- com.google.android.youtube
- com.google.android.googlequicksearchbox
- com.sec.android.app.fm
- com.google.android.apps.maps
- com.samsung.android.contacts
- com.samsung.android.dialer
- com.samsung.android.game.gamehome
- com.sec.factory.camera
- com.sec.android.app.camera
- com.sec.android.app.clockpackage
- com.sec.android.app.sbrowser
- com.microsoft.skydrive
- com.facebook.katana

adb tools
remove bloatware from a single device or find from from a reference device locally connected
- install USB drivers for your device
- download & install ADB tools
- enable Developer Options & USB debugging
- plug in your device into the computer
- open a terminal and type: adb devices
- will return the ID of your device
- in adb shell with: adb shell
- list all installed packages: pm list packages
- to remove packages type: pm uninstall -k -user 0 <package name>
take care to not disable system critical apps of android, check here