Question Multiple users on Fold 3? (aka work profile) - Samsung Galaxy Z Fold3

hey everyone,
I am struggling to find the option for adding another user.
I found this and this article on samsung web however netiher works for me.
The goal would be a completely secondary user for my work (work profile) which is password protected.
do you guysknow how to enable it?
Thanks!

As your account is linked to a Samsung account.
Best gues is go to settings and tap on you name and see there

I believe multiple users requires a rooted phone if your carrier does not enable it for you. I have not done this on the Fold 3 since I want the camera to continue to work and rooting it will kill the camera - thanks Samsung!
This is how you change BuildProp to enable multi user if you have root: How to Add Multi User Support to any Android Device with a Build.Prop Mod
Once you have it enabled, here is how you add users:
How to add another user

pulyka said:
hey everyone,
I am struggling to find the option for adding another user.
I found this and this article on samsung web however netiher works for me.
The goal would be a completely secondary user for my work (work profile) which is password protected.
do you guysknow how to enable it?
Thanks!
Click to expand...
Click to collapse
Not sure about a completely different user, but does the Secure Folder work for you? Separate apps, contact lists, can't paste outside of it, separate files, etc. all password/fingerprint protected.

ButterflyFlutterflyMyOhMy said:
Not sure about a completely different user, but does the Secret Folder work for you? Separate apps, contact lists, can't paste outside of it, separate files, etc. all password/fingerprint protected.
Click to expand...
Click to collapse
thanks - I am trying that one out rn, however would prefer the completely separate profile - if possible

Flame Red said:
I believe multiple users requires a rooted phone if your carrier does not enable it for you. I have not done this on the Fold 3 since I want the camera to continue to work and rooting it will kill the camera - thanks Samsung!
This is how you change BuildProp to enable multi user if you have root: How to Add Multi User Support to any Android Device with a Build.Prop Mod
Once you have it enabled, here is how you add users:
How to add another user
Click to expand...
Click to collapse
thanks very much! I'll take a look.

pulyka said:
thanks - I am trying that one out rn, however would prefer the completely separate profile - if possible
Click to expand...
Click to collapse
I meant Secure Folder, and fixed it, but I'm glad you knew what I meant!

I used secure folder for my work purpose as well, all the company login, apps are completely separate via secure folders and the company admin won't be able to see my non-work information in this manner.

Have you looked at - Island App or the Play Store link?
Sounds like it does what you are looking for.

RRiVEN said:
Have you looked at - Island App or the Play Store link?
Sounds like it does what you are looking for.
Click to expand...
Click to collapse
This looks like it's the same as Secure Folder, but will work with non-Samsung phones.

Correct, it is a non-Knox solution.

Related

Creating simple contacts' application

Hello all!
I am looking into development of something which is similar to people's list in people hub. What I want is a huge list of people on one page with (of course) LonglistSelector. When I tap a member of the list, I want the user to be navigated to the details page of that item. User needs to be able to manipulate and modify the data on the details page. The list is going to be real huge. I have a few question about the approach.
1. What is the best way to store data? I am thinking of creating local database with a few columns with person's name in one column, age in another etc.
If this is the approach to go for, can anyone provide me detailed description about the databases? I have deeply gone through the MSDN, WindowsPhoneGeek and many other documentations. I feel dumb about the whole database scenario.
2. Is XML list as database a good approach for large amounts of data or it will be pain?
i would say SQL CE is your best bet to store huge amounts of data. XML is slow at large volumes of data when compared to JSON. I would prefer JSON over XML.
darthveda said:
i would say SQL CE is your best bet to store huge amounts of data. XML is slow at large volumes of data when compared to JSON. I would prefer JSON over XML.
Click to expand...
Click to collapse
So basically, I need to go with the local database using LINQ. Now, how do I do that? As I mentioned, I have read intensively. However, I just don't seem to get hang of it.
akshay2000 said:
So basically, I need to go with the local database using LINQ. Now, how do I do that? As I mentioned, I have read intensively. However, I just don't seem to get hang of it.
Click to expand...
Click to collapse
I created my local database with LINQ based off this sample:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh286405(v=vs.92).aspx
First define the columns which you would want to create and then modify the sample code to suit your needs.
For contacts, there is an excellent sample available:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh286416(v=vs.92)
if you are stuck with some particular piece of code then let me know, i would be glad to help you out
darthveda said:
I created my local database with LINQ based off this sample:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh286405(v=vs.92).aspx
First define the columns which you would want to create and then modify the sample code to suit your needs.
For contacts, there is an excellent sample available:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh286416(v=vs.92)
if you are stuck with some particular piece of code then let me know, i would be glad to help you out
Click to expand...
Click to collapse
I had gone through those links earlier! Back then, they made very little sense to me. I have researched a bit by now. I will update here if I get stuck somewhere.
hi
i had read the thread now and maybe this example of MS can help you... it's not based on local database, but uses ASP.NET Web API!
so maybe this is a way for you..
darthveda said:
if you are stuck with some particular piece of code then let me know, i would be glad to help you out
Click to expand...
Click to collapse
I'm attaching my code file to the post. When I try to run the app and click the button (it tries to add an item to the observablecollection) I get NullReferenceException error. Apparently, the collection's instant hasn't been created. But I tried to instantiate it using 'new' keyword - no luck. Am I doing anything wrong?
akshay2000 said:
I'm attaching my code file to the post. When I try to run the app and click the button (it tries to add an item to the observablecollection) I get NullReferenceException error. Apparently, the collection's instant hasn't been created. But I tried to instantiate it using 'new' keyword - no luck. Am I doing anything wrong?
Click to expand...
Click to collapse
solution folder will be better, you are using telerik controls, i can't recreate your solution.
It's done!
darthveda said:
solution folder will be better, you are using telerik controls, i can't recreate your solution.
Click to expand...
Click to collapse
Thanks for the response! After a lot of debugging and (almost literally) adding Debug.writeline after each line of code, I managed to solve it. It had nothing to do with the Database or the ObservableCollection. It was totally different - GroupDescriptor issue! More details here: http://stackoverflow.com/questions/...ion-while-adding-item-to-observablecollection
I'll post here if I get stuck with something again.
Again, thanks a lot!
Any reason you are using telerik controls? for starters and very simple programs, you can use controls from silverlight toolkit or coding4fun toolkit. i am using longlist selector which does the job just like the jumplist from telerik controls does.
darthveda said:
Any reason you are using telerik controls? for starters and very simple programs, you can use controls from silverlight toolkit or coding4fun toolkit. i am using longlist selector which does the job just like the jumplist from telerik controls does.
Click to expand...
Click to collapse
No specific reasons except that the Jumplist provides StickyHeader functionality. And animation framework seems nice addition too!

[Q] How can I add apps to the multiview?

I'd like to put a few others to use.
No EDIT button in Multi-View
Sebring5 said:
I'd like to put a few others to use.
Click to expand...
Click to collapse
I have the same question. multi-view is installed and fine. On some videos and images there appears an EDIT button which I don't seem to have. I have tried dragging apps off the multi-view bar to create new spaces but so far no success . I also cant see a settings menu or function...
My aim is to be able to access my folders while writing e-mail.
Simon.
At the moment this has only been programmed to allow a limited number of apps, a list of which can be found in a sticky thread in the 'general' forum here on xda-Note2
We believe we might have found a way to hack this feature to allow for more apps to be added but this is yet to be tested and perfected.
You would need root and/or a custom rom to allow this, if and when we do manage to 'fix' it.

[Q] Basics

I have a Samsung Galaxy SIII and just made my first NFC-steps using some Samsung TecTiles tabs.
After trying a few NFC apps from the Google play, I have a few basic questions.
While basic functions like p.ex. switching Bluetooth are available in all apps, other functions like p.ex. showing a pop-up, text-to-speech or calendar functions are only available in only in one particular app.
Is there a predefined set of nfc-functions for any given android version or the app-author is basically free to program any function he can think of?
I tried to import a tag in one app which i previously have written with another app. This didn't always succeed. I could understand that there is a problem with importing special functions which are unknow to an app, but at least the basic tag and the basic functions should be recognised by all nfc-apps.
As the nfc-apps progress, will we see new functions/possibilities or will it stay about at the present level as the available functions are limited by android?
My device is locked, mainly because it was mandatory by a VPN installation.
Is there a way to unlock it 'automatically' thru NFC? I know this can be a security issue, but it would be so handy just p.ex. to put the phone in the car-holder and it would automatically go to the home screen or the car screen, and also during driving its annoying when the device has a time lock and needs to be unlocked in the middle of an intersection......
What is the power consumption of the nfc-module in the S3?
Thanks for your input.
Rgds
sansibar said:
I have a Samsung Galaxy SIII and just made my first NFC-steps using some Samsung TecTiles tabs.
After trying a few NFC apps from the Google play, I have a few basic questions.
While basic functions like p.ex. switching Bluetooth are available in all apps, other functions like p.ex. showing a pop-up, text-to-speech or calendar functions are only available in only in one particular app.
Click to expand...
Click to collapse
I think, I know which app you mean
Is there a predefined set of nfc-functions for any given android version or the app-author is basically free to program any function he can think of?
Click to expand...
Click to collapse
There is a set of predefined nfc-functions, (like open a webpage, vcard, open an app..) but this set is very very limited and even the mentioned Bluetooth function is not included .... in fact, bluetooth needs a little hacking, because the official api does not support to turn on bluetooth without asking the user .....so basically a developer can (/ has to!) implement every function he wants, but in reality a lot of functions are blocked on non-rooted devices, because android defined them as security related....
I tried to import a tag in one app which i previously have written with another app. This didn't always succeed. I could understand that there is a problem with importing special functions which are unknow to an app, but at least the basic tag and the basic functions should be recognised by all nfc-apps.
Click to expand...
Click to collapse
As mentioned the basic set is very limited.... it´s based on the nfc forum specifications and using nfc to control your device, is something these guys never had in mind ....so, sure you could use some standard nfc writer and write a webpage on a tag..... and this should be something every nfc device (not only android, but also blackberry, windows phone etc...) could handle .... but if you want to control your device, you need a more sophisticated app .... and there is no way to import a tag from one app to another ...
As the nfc-apps progress, will we see new functions/possibilities or will it stay about at the present level as the available functions are limited by android?
Click to expand...
Click to collapse
The functions are limited by android .... and my feeling is, that with every android update it get´s more limited! --> on Gingerbread, nfc was enabled while screen was off --> a function they skipped with ICS (ok, again, on a rooted device you could change the NFC.apk, to re-enable it) ... the last JB update declared the airplane modes as a security feature ... so no luck with airplane mode since 4.2 ...only to mention 2 examples ...don´t get me wrong, I don´t think it will stay at the present level, but it´s definitiv not in googles focus yet .... personally, I have a lot of new functions and use cases on my ToDo list, so I would say it´s just the beginning
My device is locked, mainly because it was mandatory by a VPN installation.
Is there a way to unlock it 'automatically' thru NFC? I know this can be a security issue, but it would be so handy just p.ex. to put the phone in the car-holder and it would automatically go to the home screen or the car screen, and also during driving its annoying when the device has a time lock and needs to be unlocked in the middle of an intersection......
Click to expand...
Click to collapse
yep, but again some hacking is envolved ... root your phone, change the nfc.apk, etc. ...I think there are several threads regarding this topic available ....
EDIT: Link added: http://forum.xda-developers.com/showthread.php?t=1853721
What is the power consumption of the nfc-module in the S3?
Click to expand...
Click to collapse
Forget it .... it doesn´t make a significant difference, if you have NFC enabled or disabled ....
Thanks for your input.
Rgds
Click to expand...
Click to collapse
no problem

Medical app not compatible - is it potentially achievable for me to get it to work?

Hi,
I use continuous glucose monitoring to monitor my blood sugar, as I am a type 1 diabetic. The CGM I use uses Bluetooth to sync with an app (Medtronic's Guardian Connect app) and gives blood sugar data, safety alerts etc., but this app is only compatible with selected Android phones, which doesn't include any Oneplus phones. I really like the Oneplus 7t so I would rather not sell it if possible, so I was thinking of trying to make it compatible with the Oneplus and removing the phone model block. This has been done before with a different medical manufacturer's CGM app ( https://forum.xda-developers.com/oneplus-7t/help/medical-app-compatibility-t4015519 ), so I think it should be possible. Given my lack of programming ability, I was wondering if there are resources anywhere that might help with learning how to do this? Obviously they're not going to tell me "This is how you make this specific app work", but I'm just hoping to find some general resources on this type of coding. I have searched around with no success as I am not sure where to look. I gather it would take more than simply changing the buildprop file to trick the app into thinking it's a compatible phone.
Thanks.
Would help to know the app and what issues you're having. Is it not showing up in the play store? Does it give an error?
ziddey said:
Would help to know the app and what issues you're having. Is it not showing up in the play store? Does it give an error?
Click to expand...
Click to collapse
Sorry, not sure how I managed to omit all those details. The app is Guardian Connect (https://play.google.com/store/apps/details?id=com.medtronic.diabetes.guardianconnect&hl=en). I am able to download it, but when I open it it says "incompatible with your device", as it's only officially compatible with a limited subsection of Android phones (https://guardianconnect.medtronic-diabetes-mena.com/en_gb/app-compatibility). However, the Dexcom app that I linked in the first post also has limited compatibility, yet people have managed to get it to work with other android phones, so I'm cautiously optimistic that it will be possible for me to do the same.
I can't link URLs properly yet as I'm a new user, so I had to add those spaces in the links.
{Mod edit: Links inserted}
Riveon said:
Sorry, not sure how I managed to omit all those details. The app is Guardian Connect (https://play.google.com/store/apps/details?id=com.medtronic.diabetes.guardianconnect&hl=en). I am able to download it, but when I open it it says "incompatible with your device", as it's only officially compatible with a limited subsection of Android phones (https://guardianconnect.medtronic-diabetes-mena.com/en_gb/app-compatibility). However, the Dexcom app that I linked in the first post also has limited compatibility, yet people have managed to get it to work with other android phones, so I'm cautiously optimistic that it will be possible for me to do the same.
I can't link URLs properly yet as I'm a new user, so I had to add those spaces in the links.
{Mod edit: Links inserted}
Click to expand...
Click to collapse
Hello. Just wanted to inform you that I inserted the working links on your behalf (at least I assumed so).
I hope you'll find a solution for the issue soon.
Oswald Boelcke said:
Hello. Just wanted to inform you that I inserted the working links on your behalf (at least I assumed so).
I hope you'll find a solution for the issue soon.
Click to expand...
Click to collapse
Thanks for that
I have diabetes and want to use this app for checking my blood glucose level continiously on my oneplus 8pro phone but the app says its not compatible with the device. I don't know how to solve this problem.
Is there anybody who can help us with this?
Have you you guys tried to email the developer of the app to fix this?
I have diabetes and want to use this app for checking my blood glucose level continiously on my oneplus 8pro phone but the app says its not compatible with the device. I don't know how to solve this problem.
Is there anybody who can help us with this?
v.konvict said:
Have you you guys tried to email the developer of the app to fix this?
Click to expand...
Click to collapse
Yep, they weren't helpful at all though, unfortunately - they just gave a generic "keep an eye on the compatible device list" response. In the end I gave up and sold a Oneplus and got a Samsung.
Hi!
I just had contact with medtronic Belgium and they said; the more people call us the more 'problem cases' go to the IT'ers in America. So they mean how faster the problem will be solved so just give them a call
Greetings
https://m.apkpure.com/guardian-connect-us/com.medtronic.diabetes.guardianconnect.us/download?from=details
Needs stock, unrooted, bootloader locked, oos10
How can we fake the phone ID for an app?
HueyT said:
https://m.apkpure.com/guardian-connect-us/com.medtronic.diabetes.guardianconnect.us/download?from=details
Needs stock, unrooted, bootloader locked, oos10
Click to expand...
Click to collapse
Can this unlocking of phone be done for two other apps from Medtronic as listed below please?
CareLink™ Connect - Apps on Google Play
Diabetes data sharing
play.google.com
MiniMed™ Mobile - Apps on Google Play
Insulin pump display
play.google.com
Same error message as original post...
I am using an Asus ROG 5s Pro
Thanks in advance to anyone who can help
Can't use unlocked bootloader or rooted phones for medical apps as less secure
volkslove said:
Can this unlocking of phone be done for two other apps from Medtronic as listed below please?
CareLink™ Connect - Apps on Google Play
Diabetes data sharing
play.google.com
MiniMed™ Mobile - Apps on Google Play
Insulin pump display
play.google.com
Same error message as original post...
I am using an Asus ROG 5s Pro
Thanks in advance to anyone who can help
Click to expand...
Click to collapse
https://apkpure.com/developer/Medtronic%2C%20Inc.
Here is the list of all Medtronic's apps. Download the APK, then select the file from your Downloads folder in the Files app.
You may be prompted about the app being from an unknown source or risk to your device. Ignore the warning, tap OK, yes, or allow if prompted.
Hope this helps and as the post above already said I would consider calling Medtronic customer service and asking them to make the app available to all phones.
KemikalElite said:
https://apkpure.com/developer/Medtronic%2C%20Inc.
Here is the list of all Medtronic's apps. Download the APK, then select the file from your Downloads folder in the Files app.
You may be prompted about the app being from an unknown source or risk to your device. Ignore the warning, tap OK, yes, or allow if prompted.
Hope this helps and as the post above already said I would consider calling Medtronic customer service and asking them to make the app available to all phones.
Click to expand...
Click to collapse
Was actually hoping for a work around to use on phones that are not on the compatible list, i.e. for the app to not check for phone compatibility before starting.
volkslove said:
Can this unlocking of phone be done for two other apps from Medtronic as listed below please?
CareLink™ Connect - Apps on Google Play
Diabetes data sharing
play.google.com
MiniMed™ Mobile - Apps on Google Play
Insulin pump display
play.google.com
Same error message as original post...
I am using an Asus ROG 5s Pro
Thanks in advance to anyone who can help
Click to expand...
Click to collapse
I second this; rooted OnePlus 8 Pro running an A12 custom ROM
Personally I've actually come pretty close and was able to hide both Root and Developer Options from being detected using XPrivacyLua, but was unable to get MagiskProps working properly to get around the final "Your Phone is Incompatible" by spoofing as a Google Pixel (one of the primary "approved" devices) message, even after trying multiple older APKs combined with clearing data/cache
Zilch163 said:
I second this; rooted OnePlus 8 Pro running an A12 custom ROM
Personally I've actually come pretty close and was able to hide both Root and Developer Options from being detected using XPrivacyLua, but was unable to get MagiskProps working properly to get around the final "Your Phone is Incompatible" by spoofing as a Google Pixel (one of the primary "approved" devices) message, even after trying multiple older APKs combined with clearing data/cache
Click to expand...
Click to collapse
Thanks.
Actually the logic behind limiting the compatible devices boggles my mind because, other than replicating the screen of the insulin pump and sending data downloaded from the pump to health care providers, the app does not allow pump to accept commands from external devices. So I do not see what the concern is with allowing more devices to use the app...
volkslove said:
Thanks.
Actually the logic behind limiting the compatible devices boggles my mind because, other than replicating the screen of the insulin pump and sending data downloaded from the pump to health care providers, the app does not allow pump to accept commands from external devices. So I do not see what the concern is with allowing more devices to use the app...
Click to expand...
Click to collapse
There is no logic, just retarded medical industry bureaucracy BS.
I've contacted customer support multiple times and asked them the same question, only to get the same useless response of pretending to "pass on my feedback".
It's actually one of the reasons I wanna find out how to work around the problem even more; like who needs them to take proper control of a medical device that I own.
Would also be amazing to get a Wear OS app that displays the same or similar information to the app, but I don't see that being made by Medtronic for at least a decade.
Zilch163 said:
I second this; rooted OnePlus 8 Pro running an A12 custom ROM
Personally I've actually come pretty close and was able to hide both Root and Developer Options from being detected using XPrivacyLua, but was unable to get MagiskProps working properly to get around the final "Your Phone is Incompatible" by spoofing as a Google Pixel (one of the primary "approved" devices) message, even after trying multiple older APKs combined with clearing data/cache
Click to expand...
Click to collapse
Hi! Im struggling with getting this app working on my rooted xiaomi. Do you remember how exactly did you bypass those checks with xprivacylua?

Question Samsung Galaxy A52s 5G

Hello, can anyone tell me the file location of the smart tag of the Samsung Galaxy A52s 5G? Thank you
for your time.
You mean, the NFC module? Top half of the phone, about the height where the cameras are.
robogo1982 said:
You mean, the NFC module? Top half of the phone, about the height where the cameras are.
Click to expand...
Click to collapse
It is about the smart tag. I am looking for files and DB locations regarding the smart tag on the phone.
thomas_jonson said:
It is about the smart tag. I am looking for files and DB locations regarding the smart tag on the phone.
Click to expand...
Click to collapse
Do you mean that there is a RFID-tag inside the phone? Smart Tag is as I understand it commercial term used in marketing and has no precise technical definition.
gerhard_wa said:
Do you mean that there is a RFID-tag inside the phone? Smart Tag is as I understand it commercial term used in marketing and has no precise technical definition.
Click to expand...
Click to collapse
I am new to all the terms and learning. Maybe it is RFID that you are writing about here. But I should specify more. Recently I bought a Samsung phone and I got a smart thing and that is Samsung smart tag (Bluetooth device) for anti loss. This device works like airtag(for iPhone) device. So, my plan is to work with those DB files that smart tag stores on the android device using user activity through its own application. I tried to collect but I am not successful. I am confused about the location of the data, do I have to unlock the phone or have to root the phone? Could you please help me with that? Thank you.
Ok, I see you are talking about the Samsung Smart Things system. I suppose the things you are asking about will be covered in the manual for the respective hardware devices and in the Samsung Smart Things app.
gerhard_wa said:
Ok, I see you are talking about the Samsung Smart Things system. I suppose the things you are asking about will be covered in the manual for the respective hardware devices and in the Samsung Smart Things app.
Click to expand...
Click to collapse
No, on the manual, not such inormation about the installed app's file location.
thomas_jonson said:
No, on the manual, not such inormation about the installed app's file location.
Click to expand...
Click to collapse
Just to understand what you are doing, why do you need to know the inner works of the Smart Things app? What are you going to use the files for? If it is for backup purpose, all relevant database files and other configuration will be included in a Samsung Smart Switch backup. Perhaps someone else can help you!
gerhard_wa said:
Just to understand what you are doing, why do you need to know the inner works of the Smart Things app? What are you going to use the files for? If it is for backup purpose, all relevant database files and other configuration will be included in a Samsung Smart Switch backup. Perhaps someone else can help you!
Click to expand...
Click to collapse
It's about a project purpose.
robogo1982 said:
You mean, the NFC module? Top half of the phone, about the height where the cameras are.
Click to expand...
Click to collapse
Maybe it is RFID that you are writing about here. But I should specify more. Recently I bought a Samsung phone and I got a smart thing and that is Samsung smart tag (Bluetooth device) for anti loss. This device works like an air tag(for iPhone) device. So, my plan is to work with those DB files that the smart tag stores on the android device using user activity through its own application. I tried to collect but I am not successful. I am confused about the location of the data, do I have to unlock the phone or have to root the phone? Could you please help me with that? Thank you.

Categories

Resources