Android support the multiple user on single android device by seperating user account and application data.
#Multi-user support
Multi-user feature is supported in android Lollipop (5.0) and later android versions.
#Types of user
1 - primary user (admin)
2 - secondary user
3 - guest user
By default android support maximum five multi-user on single device including guest user.
Note: you can't remove guest user
So if you want to use more then one user account then you can create multiple user accounts maximum upto five (default) like,
Primary user , user-1 , user-2 , user-3 , guest
Now if you want to create user-4 then you can't because there is already five user account.
So if you want to increase this limit to create more than five account then follow below steps...
#Requirement:
1 - rooted Android (OS 5.0+)
2 - text editor
Here we are using build.prop trick to support more than 5 multi-user.
Step 1 - go to device/system/build.prop
Step 2 - open build.prop and add following two lines
fw.max_users=10
fw.show_multiuserui=1
Here in first line 10 is number of multi-user you want. you can change it as per your wish.
Step 3 - now save and reboot
I hope this post is helpful to you...
Enjoy...enjoy...enjoy...
No comments:
Post a Comment