[Xposed][App] Multiple Users for phone

Search This thread

safet.me

Senior Member
Jan 18, 2013
283
468
Enable multiple users/multiple profiles xposed mod on phone

Requirements
  • Android 4.2+ running on AOSP ROM
  • Xposed Framework


Experimental
  • Long click on power menu to stop users

Download

Google Play: https://play.google.com/store/apps/details?id=droidmate.multiuser.xposed

Latest version: View attachment MultiUserXposed_ver0.94_xda.apk

Previous versions:
View attachment MultiUserXposed_ver0.92_xda.apk
View attachment MultiUserXposed_V0.91_XDA.apk
View attachment MultiUserXposed_V0.9_XDA.apk

Please reboot your phone after enable this mod.
Tablet already supports multiple users

Know issue:
- Phone app does not work on new created users

Change logs
Ver 0.94
- Add color for running users
- Better performance on power button press

Ver 0.92
- Show users on power menu

Ver 0.91
- Fixed default value [ON] of switcher
 
Last edited:

safet.me

Senior Member
Jan 18, 2013
283
468
1618513_739664392733876_313319354_n.png

1779340_739663989400583_1623638302_n.png

10004075_739664002733915_1068404503_n.jpg

6985_739664019400580_918067090_n.png

10006563_739664036067245_1310098182_n.png
 
Last edited:

vivek_1984

Member
Feb 7, 2014
8
0
Facing problem

Sent from my C5302 using xda app-developers app
 

Attachments

  • uploadfromtaptalk1394442436489.jpg
    uploadfromtaptalk1394442436489.jpg
    34.5 KB · Views: 9,490
I don't have such device to test. Could you change to stock keyguard and test if it works on your device?

Sorry, what is stock keyguard? Do you mean stock Rom?

Well the device is Micromax A110 mtk 6577, a rebrand\clone of wiko cink king (there are actually such 5 or more rebrands) buddy chamging Rom for me now will be difficult so if you say I can provide you with log or logcat!?

Please assist.... :)

thanks & regards

Sent from my A110 using Tapatalk
 

sergej_7

Senior Member
May 22, 2012
285
65
if i create 8 users they wont fit on lockscreen, is that possible to fix? a settings menu to disable and enable lockscreen user interface and maybe layout change would be very cool if possible
 
Last edited:

DaRk MaDnEsS

Senior Member
Feb 17, 2011
243
80
Cairo
first of all thx for the MutliUser working fine on my XPeria Z but duo to my Lock Screen i can't switch so there is a small fix for the Normal Users

Install MoDaCo Toolkit

then in Google Nexus (all): Enable multi-user support it will appear in the Power Menu

8u08.jpg


i hope the Author doesnt mind my workaround
 
  • Like
Reactions: safet.me

dstruct2k

Senior Member
Jan 31, 2008
1,253
938
Winnipeg
Google Pixel 4
I'm not sure if it works with non aosp keyguard.
Could you possibly work around the Android limitation of the Phone app only working for the primary account by always forcing the Phone app to open under the primary userid, no matter which account launches it? In my head it looks like this:
Code:
when Phone is launched {
   if currentuser != primary {
      set tempvariable = currentuserid
      set currentuserid = primary
      launch Phone.apk
      on closing Phone {
         set currentuserid = tempvariable
      }
   } else {
      launch Phone.apk
   }
}

And yes, I know that's not real code. :p
 

Top Liked Posts

  • There are no posts matching your filters.
  • 31
    Enable multiple users/multiple profiles xposed mod on phone

    Requirements
    • Android 4.2+ running on AOSP ROM
    • Xposed Framework


    Experimental
    • Long click on power menu to stop users

    Download

    Google Play: https://play.google.com/store/apps/details?id=droidmate.multiuser.xposed

    Latest version: View attachment MultiUserXposed_ver0.94_xda.apk

    Previous versions:
    View attachment MultiUserXposed_ver0.92_xda.apk
    View attachment MultiUserXposed_V0.91_XDA.apk
    View attachment MultiUserXposed_V0.9_XDA.apk

    Please reboot your phone after enable this mod.
    Tablet already supports multiple users

    Know issue:
    - Phone app does not work on new created users

    Change logs
    Ver 0.94
    - Add color for running users
    - Better performance on power button press

    Ver 0.92
    - Show users on power menu

    Ver 0.91
    - Fixed default value [ON] of switcher
    4
    Change the profile position in lockscreen

    Hi developer,

    Can you change the profile position in lockscreen to the bottm. It overlaps the clock and doesnt look good. Apart from that it works flawlessly...a must have module in xposed...:good:
    3
    Please notice that you should login with "primary user" to delete other users. Do you see a "delete" button on "Users" screen inside Settings app?
    I already tried with the primary user, but the delete icon is not there.
    Do not log into the primary user to delete other users, this will not work,
    I assume this is only due to running a TW Rom, not tried it on AOSP myself, but the OP's screenshot show it works fine.
    if it's true ... the option to delete a user does not appear in TW 4.4.2):
    any solution?

    Enviado desde mi GT-I9500 mediante Tapatalk
    I have installed it on my Galaxy Note 3 Kitkat stock. And it is working find.

    But unfortunately I'm unable to delete created users.

    Any solution?

    Sent from my SM-G900F using Tapatalk
    I thought the same. Log into the user you want to delete, then to multi users in settings, press the menu button on the device and delete pops up, sorted :)
    I am running this on a 4.4.2 tw rom on my n9005.

    Also how do you get rid of the extremely annoying permanent 'switch user' button in the notification drop down? If i am on the default user, or any other it is always there. I have disabled and removed due to this.. one of those little things that you find very annoying haha.

    Sent from my SM-N9005 using Tapatalk
    2
    I'm not sure if it works with non aosp keyguard.
    Could you possibly work around the Android limitation of the Phone app only working for the primary account by always forcing the Phone app to open under the primary userid, no matter which account launches it? In my head it looks like this:
    Code:
    when Phone is launched {
       if currentuser != primary {
          set tempvariable = currentuserid
          set currentuserid = primary
          launch Phone.apk
          on closing Phone {
             set currentuserid = tempvariable
          }
       } else {
          launch Phone.apk
       }
    }

    And yes, I know that's not real code. :p