[Q] Can Someone Help Me w/Using NFC Launcher to Write NFC Tags? - Android Q&A, Help & Troubleshooting

I've got a few of these up and running flawlessly now so I understand how they work. I'm trying to create one of these for my bedside and having a bit of a problem doing a couple things that I'm trying to do.
First off, is there a way to make the tag a toggle of all adjustments? In other words, I want it to silence the ringtone & notification tone and turn vibrate off amongst other things and then enable them again in the morning with another swype of the same tag. I thought I read somewhere how you could do this but I'm not seeing the option(s) in NFC Launcher now.
Also, I'm having a difficult time getting it to launch the alarm clock app. I can have it launch the clock but then it takes a few more steps to get the alarm clock armed. Using an older version of the Clock that comes with previous versions of Android and Launcher Pro I can create a shortcut on my homescreen that takes me right into the alarm with a single press. Using this knowledge I select 'launch app' from within NFC Launcher and tell it the app is 'Clock' and then under that is a field for what within the app you specifically want to launch. I've tried 'Add alarm' which is the exact verbiage of that screen and nothing happens. I've even tried the text of the option I select from the homepage shortcut I created which is 'com.android.alarmclock.AlarmClock' and that also does nothing. I know the possibility is there but I can't seem to get it to work.
Lastly, if I'm unable to get the alarm clock launch to work as described in the previous paragraph another option would be the 'Alarms' section within NFC Launcher and then the timer one where I can set an alarm for 8hrs from whenever I scan the tag. This would be perfect but nothing I do disables the vibrate and I HATE the vibrate going off with my alarm because it's so loud and startling. I prefer a quiet audible alarm sound since I'm such a light sleeper. A phone rattling loudly on my nightstand jolts me into fight or flight mode... not a great way to start your day.

OstrichSak said:
First off, is there a way to make the tag a toggle of all adjustments? In other words, I want it to silence the ringtone & notification tone and turn vibrate off amongst other things and then enable them again in the morning with another swype of the same tag. I thought I read somewhere how you could do this but I'm not seeing the option(s) in NFC Launcher now.
Click to expand...
Click to collapse
You'll want to use a switch tag for this.
OstrichSak said:
Also, I'm having a difficult time getting it to launch the alarm clock app. I can have it launch the clock but then it takes a few more steps to get the alarm clock armed. Using an older version of the Clock that comes with previous versions of Android and Launcher Pro I can create a shortcut on my homescreen that takes me right into the alarm with a single press. Using this knowledge I select 'launch app' from within NFC Launcher and tell it the app is 'Clock' and then under that is a field for what within the app you specifically want to launch. I've tried 'Add alarm' which is the exact verbiage of that screen and nothing happens. I've even tried the text of the option I select from the homepage shortcut I created which is 'com.android.alarmclock.AlarmClock' and that also does nothing. I know the possibility is there but I can't seem to get it to work.
Click to expand...
Click to collapse
That field is for the activity (so package.activity). However Google's new packages have different class names than their activity names (thanks for that by the way). The Alarm clock is com.android.deskclock.AlarmClock - however this probably won't launch right now. It will in the next update (it's working for me without a problem here on what will be the next release). Support will also be in place for class/activity notation so you could pass in com.google.android.deskclock/com.android.deskclock.AlarmClock and not worry about it (Although this will require more space on the tag).
OstrichSak said:
Lastly, if I'm unable to get the alarm clock launch to work as described in the previous paragraph another option would be the 'Alarms' section within NFC Launcher and then the timer one where I can set an alarm for 8hrs from whenever I scan the tag. This would be perfect but nothing I do disables the vibrate and I HATE the vibrate going off with my alarm because it's so loud and startling. I prefer a quiet audible alarm sound since I'm such a light sleeper. A phone rattling loudly on my nightstand jolts me into fight or flight mode... not a great way to start your day.
Click to expand...
Click to collapse
I don't know about vibrate. All I do is pass the intent off to the alarm handler and tell it set an alarm for X:YY time and it handles the rest. There aren't any public extras to pass with the intent to set vibration or sound preferences. I could look at the actual alarm clock source and see if it accepts any, but that is likely device dependent and wouldn't work on skinned devices.

Thanks for the quick response!
krohnjw said:
You'll want to use a switch tag for this.
Click to expand...
Click to collapse
So, this is a special type of physical tag that one must buy? I bought ten of these and they seemed like decent tags but it sounds like this may not work or are you talking about some software adjustment I'm just not seeing?
krohnjw said:
That field is for the activity (so package.activity). However Google's new packages have different class names than their activity names (thanks for that by the way). The Alarm clock is com.android.deskclock.AlarmClock - however this probably won't launch right now. It will in the next update (it's working for me without a problem here on what will be the next release). Support will also be in place for class/activity notation so you could pass in com.google.android.deskclock/com.android.deskclock.AlarmClock and not worry about it (Although this will require more space on the tag).
Click to expand...
Click to collapse
So, what I'm doing currently is right, it's just that it's not fully propagated on the app's end and will be by the next update.... correct?
krohnjw said:
I don't know about vibrate. All I do is pass the intent off to the alarm handler and tell it set an alarm for X:YY time and it handles the rest. There aren't any public extras to pass with the intent to set vibration or sound preferences. I could look at the actual alarm clock source and see if it accepts any, but that is likely device dependent and wouldn't work on skinned devices.
Click to expand...
Click to collapse
My settings via your app on this particular tag is to turn the vibration of the phone off but I think that the alarm clock overrides this as well as a silent setting to play a tone for the alarm. I looked for a setting to disable the vibrate within the Clock but am not seeing it. I can for the alarm but not for the timer which was plan B as described above.

In the app, new tag -> new switch. Same physical tag.
A switch tag toggles between two task tags.
Sent from my Galaxy Nexus using xda premium

krohnjw said:
In the app, new tag -> new switch. Same physical tag.
A switch tag toggles between two task tags.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
aHA! That's where it was.
As an example I'm going to make a Toggle to do the following:
Night mode
Ringer: Silent
Notification: Silent
Vibrate: Off
Notification light: Disabled
Morning mode
Ringer: Enabled
Notification: Enabled
Vibrate: On
Notification light: Enabled
Now, the question is about the clock. I realize I will be able to launch it with a setting but can I have it disabled (say I wake up before my alarm) and can I put both of these on a Toggle switch? So on the first swipe it launches the clock and on the second swipe it disables it?

OstrichSak said:
aHA! That's where it was.
As an example I'm going to make a Toggle to do the following:
Night mode
Ringer: Silent
Notification: Silent
Vibrate: Off
Notification light: Disabled
Morning mode
Ringer: Enabled
Notification: Enabled
Vibrate: On
Notification light: Enabled
Now, the question is about the clock. I realize I will be able to launch it with a setting but can I have it disabled (say I wake up before my alarm) and can I put both of these on a Toggle switch? So on the first swipe it launches the clock and on the second swipe it disables it?
Click to expand...
Click to collapse
As far as I'm aware the alarm clock handler doesn't take an incoming intent to disable an alarm (I looked at the source some time back to resolve getting it auto set in ICS). It might be possible to directly edit the alarms database, but there's no guarantee this will work on any device that's not an AOSP based device (Since HTC likes to make arbitrary modifications sometimes) so that might not get implemented as it would just be potentially broken on a lot of devices. I'd have to take a look into those data stores though.

krohnjw said:
As far as I'm aware the alarm clock handler doesn't take an incoming intent to disable an alarm (I looked at the source some time back to resolve getting it auto set in ICS). It might be possible to directly edit the alarms database, but there's no guarantee this will work on any device that's not an AOSP based device (Since HTC likes to make arbitrary modifications sometimes) so that might not get implemented as it would just be potentially broken on a lot of devices. I'd have to take a look into those data stores though.
Click to expand...
Click to collapse
Sounds like more trouble then it's probably worth. I can just put 'Launch app' 'Clock' in both activities and then manually activate and deactivate as needed. It would be cool to have it 100% automated but I don't know how necessary that's going to be.
Now I just wish I could figure out how to disable the vibrate from the stock timer so that I can set a toggle to have it go off 8 hours from when I swan the tag as my alarm clock since I don't go to work and always set my alarm for 8hrs from when I go to bed. Most of the time I wake up before it goes off so this is why having it disable with a scan of a tag would be ideal but I realize this could be more effort than it's worth. I'm just scratching the surface on what I can do with these tags so I'll just test out what all I can do with them as they stand.
When do you think that update will occur so that I can launch straight into the alarm clock rather than launching the Clock and having to take another step to get to what I want to get to?

OstrichSak said:
Sounds like more trouble then it's probably worth. I can just put 'Launch app' 'Clock' in both activities and then manually activate and deactivate as needed. It would be cool to have it 100% automated but I don't know how necessary that's going to be.
Now I just wish I could figure out how to disable the vibrate from the stock timer so that I can set a toggle to have it go off 8 hours from when I swan the tag as my alarm clock since I don't go to work and always set my alarm for 8hrs from when I go to bed. Most of the time I wake up before it goes off so this is why having it disable with a scan of a tag would be ideal but I realize this could be more effort than it's worth. I'm just scratching the surface on what I can do with these tags so I'll just test out what all I can do with them as they stand.
When do you think that update will occur so that I can launch straight into the alarm clock rather than launching the Clock and having to take another step to get to what I want to get to?
Click to expand...
Click to collapse
Probably next week. I have some translations to get completed before releasing.
Sent from my Galaxy Nexus using xda premium

krohnjw said:
That field is for the activity (so package.activity). However Google's new packages have different class names than their activity names (thanks for that by the way). The Alarm clock is com.android.deskclock.AlarmClock - however this probably won't launch right now. It will in the next update (it's working for me without a problem here on what will be the next release). Support will also be in place for class/activity notation so you could pass in com.google.android.deskclock/com.android.deskclock.AlarmClock and not worry about it (Although this will require more space on the tag).
Click to expand...
Click to collapse
To revisit this... the way I came up with 'com.android.alarmclock.AlarmClock' was because I was Googling a way to make a shortcut on my homepage to launch right into the alarm clock. I found one but it used an older version of the DeskClock which I recovered from an old backup from Titanium Backup. It works great as a homepage shortcut but is there a way I can make a shortcut using the new clock? If I can I can delete the older style Desk Clock I had to install and then when the new update to your app comes out I can use that to go right to it. I also just noticed that in the new clock there is an option for: 'com.htc.android.worldclock.alarmclock.DeleteAlarm' so maybe the automatically disabling is possible or will this delete an entire Alarm profile? Since you seem to know WAY more about these clocks than I do is there a way to get with the new clock what I've done using the old clock? I mean the 'com.android.alarmclock.AlarmClock' shortcut... does that exist for the new one? I tried different ones that looked like they may be the right one but it wouldn't launch at all.
Hopefully you understand the way I explained all of this. If not I can try to elaborate whatever parts you don't understand.
Edit: BTW, here is a list of the possible choices and all start with 'com.htc.android.worldclock...
WorldClockTabControl
Relaunch*
TimeZonePicker
DeleteTimeZone
RearrangeTimeZone
SetAlarm*
DeleteAlarm
AlarmAlert*
OffAlarmAlert
HandleSetAlarm*
TimerAlert*
SettingsActivity
SoundSelect
The ones with an asterisk are ones that I've tried to create a shortcut on the homepage using 'Add>Shortcuts>Activities (this requires Launcher Pro)>Clock and then I can choose what action within the app. This is how I was able to set a homepage shortcut using a previous Clock app and if I can figure out how to do the same thing with the new Clock that comes with ICS I will delete the old clock I installed and then use this information moving forward once the NFC app is updated.

krohnjw said:
Probably next week. I have some translations to get completed before releasing.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Thanks.

Related

Alarm on Lockscreen

on the original android lockscreen (i.e. nexus one), it used to show if there is an alarm or not, and if there is, it used to say when, day and time.
is there any way i can have it also say that on the samsung lockscreen somewhere next to where it displays the time?
i like this feature because sometimes i get paranoid about what time i have set my alarm for the next day
zidane said:
on the original android lockscreen (i.e. nexus one), it used to show if there is an alarm or not, and if there is, it used to say when, day and time.
is there any way i can have it also say that on the samsung lockscreen somewhere next to where it displays the time?
i like this feature because sometimes i get paranoid about what time i have set my alarm for the next day
Click to expand...
Click to collapse
Standard lockscreen won't do this but you can buy widget locker from the market and that'll replicate the stock android lockscreen with alarm info
i checked out the app, thanks
i hope someone will be able to mod this lockscreen though

[REQ/Idea] Alarm app

While there's a lot of alarm apps I somehow can't manage to find one that has everything I want from a good alarm. So I'm hoping that some of my ideas will inspire someone to make the perfect alarm app!
what no alarm app has:
- increasing ring after snooze (as in the first time the alarm goes of it starts at 10%. Then I snooze it and when it goes of the next time it starts at 30%, making me wake up faster. And so on for the next alarms after snoozing)
- follow the ICS design guidelines
what it should also have:
- increasing ring (as in the alarm gets louder every x seconds it's playing)
- simple alarm screen with time, large snooze, small dismiss button
- use the android alarm feature (no seperate notification icon but use the android one next to the clock)
Look for AlarmDroid in Play Store.
I will post the link later in case you can't find it.
https://play.google.com/store/apps/details?id=com.splunchy.android.alarmclock&feature=nav_result
Should have all your requested features.
It's missing the first item on my list: increasing ring after snooze. It just has the normal increasing ring feature.
Thread moved to Q&A.
XlAfbk said:
- use the android alarm feature (no seperate notification icon but use the android one next to the clock)
Click to expand...
Click to collapse
This last request is not possible. First off, there isn't a standard android alarm... many phones include many different default alarms... and of the many I've seen, none of them have a notification icon next to the clock, so I have no idea what you are even talking about.
Any alarm app is just that, an app, with its own notification icons and such. Your not going to find anything that is going to edit how your particular phone's default clock+alarm app works.
rpmccormick said:
This last request is not possible. First off, there isn't a standard android alarm... many phones include many different default alarms... and of the many I've seen, none of them have a notification icon next to the clock, so I have no idea what you are even talking about.
Click to expand...
Click to collapse
It is well possible. Almost all the alarm apps out there do it. The feature has been there since Cupcake!
http://cdn1.91pad.com/screenshot/img2/20120222111355171.jpg
https://lh4.googleusercontent.com/-...jVkowOU/BestAppsForAndroid_Alarm_Clock_S4.png
http://cdn2.lostintechnology.com/wp-content/uploads/2009/01/kx4.png
XlAfbk said:
what no alarm app has:
- increasing ring after snooze (as in the first time the alarm goes of it starts at 10%. Then I snooze it and when it goes of the next time it starts at 30%, making me wake up faster. And so on for the next alarms after snoozing)
Click to expand...
Click to collapse
Have you used Alarm Clock Xtreme? Not exactly what you are asking for but it does have an option where the alarm can start quiet and increase to a pre-set volume level. You also choose the length of time until your volume level is reached.
Seems similar enough.
that's the "normal" increasing ring that pretty much every alarm clock has
Ummm... except for the entire fact that the fade-in time is customizable and you are not limited in which sounds you can choose. Along with several other customizable features - like auto-snooze, limited number of snoozes, math problems [or other hoops] to dismiss alarm, etc. - in this app. When I was testing out alarm apps, it did not take up lots of RAM through the day and was very stabe.
So no, that is not
XlAfbk said:
the "normal" increasing ring that pretty much every alarm clock has
Click to expand...
Click to collapse
I do realize that a 'fade in' alarm is common, but I really enjoyed all the features built into Alarm Clock Xtreme. I figured I would share as you seemed to be seeking an alarm app. Guess you are really ony seeking someone to create your dream app - good uck with that.
Sent from my Sidekick using xda app-developers app [also, where's my L, Samsung? Where? I want it back now!]
there's loads of great alarm apps out there. feature-wise Alarm Clock Extreme is among them, though the UI is quite outdated and needs polish.
I prefer CM10s alarm app, but it's also missing the feature i'm looking for, else it'd be perfect

[REQUEST] Phone alarm app that has wear support.

Hi guys,
I'm looking for an alarm app (either new or existing) that has wear support...maybe someone who is better versed can add wear support to KK alarm clock and put it up? Related is this bug report that has been marked 'WillNotFix": In a perfect world the app would also be able to be launched on the watch and alarms can be set from watch that are set on the phones main app....but at the very least I'd like to be able to dismiss alarms from watch (I'm imagining a screen like the one when you get a call, that would be awesome).
I'm not sure how much of this is possible, but at the very least, is anyone interesting in extending KK alarm app to include wear notifications for dismissing alarm while ringing?
TjPhysicist said:
Hi guys,
I'm looking for an alarm app (either new or existing) that has wear support...maybe someone who is better versed can add wear support to KK alarm clock and put it up? Related is this bug report that has been marked 'WillNotFix": In a perfect world the app would also be able to be launched on the watch and alarms can be set from watch that are set on the phones main app....but at the very least I'd like to be able to dismiss alarms from watch (I'm imagining a screen like the one when you get a call, that would be awesome).
I'm not sure how much of this is possible, but at the very least, is anyone interesting in extending KK alarm app to include wear notifications for dismissing alarm while ringing?
Click to expand...
Click to collapse
I know this is an old post and hopefully you've found a solution. If not, check out Alarm for Android Wear:
https://play.google.com/store/apps/details?id=net.nefastudio.android.nfalarm_wear
It does NOT use the built in alarms your phone, instead setting up new alarms. But you can set alarms on either watch or phone, and they will go off on either watch or phone, or both.

My Essential Tasker Mod Pack

Hi guys,
I cooked up some tasker mods to address some of the graciously few problems I have with the software of the mate 20x. I thought they might be useful to some of you guys so I figured I'd share. The plugins used are AutoInput, AutoLaunch, AutoNotifications, and AutoTools.
Mod List:
1. Fixed Auto-rotate Lock: uses the quick tile to auto-rotate or lock to any orientation
2. Swipe Recent Apps Switcher: cycle through previous apps by swiping on the bottom of the screen ala iPhone
3. Auto-disable Eye comfort: pop-up prompt when activating chosen apps that automatically disables eye comfort mode
4. Automatic Screen Filter: activates the free app Night Screen when brightness is set to minimum and disables it when brightness is raised
1. Fix Auto-rotate Lock
There are two versions of this mod, one which uses the system quick tile and one which uses an AutoNotifications quick tile. The AutoNotifications quick tile is more reliable and allows you to seamlessly lock orientation in landscape or inverted. The system quick tile is more clunky and you cannot lock in inverted, but it's a bit faster. If anyone knows where to find the system quick tile icons please tell!
Simply import the profiles to Tasker and turn them on. Choose "Rotate On" for the system qt or "AltRotate On" for the AutoNotifications qt.
2. Swipe Recent Apps Switcher
This mod will track all activated apps in an array so they can be systematically called back. It also offers swipe gestures at the bottom of the screen which can be used to cycle through them. Swipe left or right to go back and forth through your recent apps. After settling on an app, the app list will be updated to bring your active app to the front.
To install, import and turn on all profiles and run the swipe task. The Swipe task must be ran to provide gestures. The overlay providing gestures is at the very bottom of the screen, so just swipe your finger along the screen edge. Modify your settings and profiles to make sure that Swipe, AutoTools, and Tasker stay on with full permissions. This mod requires that tasker monitoring use accessibility. In the no root version some apps will refresh their state when activated (es explorer). This is because apps are 'launched' and not 'brought to foreground'. In the root version this is not an issue.
3. Auto-disable Eye comfort
This will provide a discrete pop-up in the corner of your screen when you activate the selected apps. I set up the profile with the apps I use for photo and video editing. When you click the pop up it will automatically open the drawer and disable the eye comfort quick tile. The pop up will go away in 5 seconds if not clicked, or can be swiped away.
To install, place the "bubble" folder in your AutoTools webscreen folder. The file paths should match up, but you may need to modify them. Import and turn on. The no root plugin uses AutoInput to press the fourth quick tile. If you have eye comfort on another quick tile you will need to change the touch coordinates. The root option will, if prompted, automatically switch eye comfort on and off as you switch between monitored apps. If you dismiss the prompt it will not ask again until eye comfort is toggled.
4. Automatic Screen Filter
When brightness is lowered to the minimum level, this mod will launch the app Night Screen to lower the brightness with a screen filter. When the brightness is raised above minimum it will turn night screen off.
You can change the app used, but it must have a toggle or on/off activity to be launched by secure settings. I found Night Screen to be the best for me. Import and turn on profiles.
There may be some bugs due to inconsistent Tasker monitoring and the system messing with things. Unfortunately there is little I can do about this.
ps. the zip is NOT installable
Sorry I'm stumped about how to embed youtube videos. Here's links.
https://youtu.be/KZBQJX3Fges
https://youtu.be/AnVLVCdWC8U
https://youtu.be/SsVjmW-9KwI
I vastly improved the app switcher to function much more intuitively and more like a native function. It's works pretty much exactly like on the iPhone, accept the animations are going the wrong way. I'll test it out a bit then update the post.
You sir are incredible
Post has been updated with a new app switcher, a root app switcher which fixes the launching problem, and a root eye comfort prompt which modifies the setting directly and has enhanced functionality. Also now none of the mods are dependent on the Secure Settings plugin
cobram3 said:
You sir are incredible
Click to expand...
Click to collapse
glad somebody likes it :good:
Allan can I pay you to help/tutor me on creating Tasker apps for my own use?
Please message me
---------- Post added at 02:14 AM ---------- Previous post was at 02:13 AM ----------
AllanRSS said:
glad somebody likes it :good:
Click to expand...
Click to collapse
Such as:
Auto speakerphone when call connects by default
When I get in the car, show a list of media players as a popup (bc bt connected)
$60 via PayPal thx
I really appreciate the offer, but thats not how xda works. This is where people help people, and I've benefited far too much through the days on the generosity of others to be greedy now.
I took a quick look and it and there is a State profile called "BT Connected". You should be able to check your bluetooth settings for the exact name of your car and insert that into the Name field. Then you would make a Scene containing buttons corrosponding to your desired media player. This should be reletively straightforward. When the BT is connected, show the scene with the buttons then launch your choice. This can be done with the AutoLaunch plugin or by android intent by running code 'am start --activity-reorder-to-front PACKAGE_NAME/MAIN_ACTIVITY'. The main activity intent is easily found through terminal if you're rooted but I dont remember how to find it if you're not rooted.
For the call I would use the State profile "Call". I am not sure if this will activate after the call is connected or while the phone is ringing for incoming calls. If its when the phone is ringing I would then set up a loop with "AutoInput Query" to check whether the call was connected. Run a couple tests with the query to see what the variable values are when the call is connected and check for those values to escape the loop. When the call is connected, use auto input to click on the speakerphone button automaticly. You can use the auto option to configure this or you can go into developer mode on your phone and enable show pointer location to get the coordinates. Coordinates are faster that text matching, but you might have to add a wait for 500ms to avoid it touching too early.
That should be it, pretty straightforward. You've inspired me to update this list with my new rotate toolbar and fixes. Happy tinkering!
That being said, I would be willing to do it for you if you would rather pay for a finished solution. However, I greatly encourage you to give it a go yourself, the possibilities are endless once you get comfortable with Tasker.

Question Notifications and Sound Issues

Two questions about this phone to which I haven't yet found any solutions.
I'm unable to see lock screen notifications, or, in fact, anything on the lock screen. I've gone through all the settings for lock screen, notifications, clock, display, , always on display, and app permissions with no change. While I prefer using Nova Launcher, the results are the same using the Samsung default launcher.
My old phone had a setting where alarms only would sound so I didn't mistakenly silence the alarm clock. I've used AlarmDroid for years and want to continue using it but the alarm doesn't sound if ithe phone is set to vibrate only. I don't want or need to hear alny other notifications when I'm supposed to be asleep. I've been through all the sound settings for the app and phone and can't find a way to have only AlarmDroid use sound when nothing else does.
All suggestions or solutions welcome!
anniedev said:
Two questions about this phone to which I haven't yet found any solutions.
I'm unable to see lock screen notifications, or, in fact, anything on the lock screen. I've gone through all the settings for lock screen, notifications, clock, display, , always on display, and app permissions with no change. While I prefer using Nova Launcher, the results are the same using the Samsung default launcher.
My old phone had a setting where alarms only would sound so I didn't mistakenly silence the alarm clock. I've used AlarmDroid for years and want to continue using it but the alarm doesn't sound if ithe phone is set to vibrate only. I don't want or need to hear alny other notifications when I'm supposed to be asleep. I've been through all the sound settings for the app and phone and can't find a way to have only AlarmDroid use sound when nothing else does.
All suggestions or solutions welcome!
Click to expand...
Click to collapse
It seems like alarm droid is being put to sleep by the battery optimization, have you tried disabling that?
Update: New SIM card fixed the blank lock screen, but even though notification details are supposed to show, lock screen only shows icons and number of notifications per app, up to 4 apps. Tested Samsung's launcher with no different results after new SIM card.
puddingoz said:
It seems like alarm droid is being put to sleep by the battery optimization, have you tried disabling that?
Click to expand...
Click to collapse
Yeah, I did disable battery optimization on it. Wish I could get the sounds to work just for alarms, but I guess that's not an option..
Lock Screem -> Notifications (touch the the word, not the toggle) -> Details. You can also activate notification on the Always on Display there, but only icons will be visible. If you want more info on the AOD, you'll need an app like "aodnotify" or "Always on Edge". I use "aodnotify because i only want a notification LED thing.
anniedev said:
Two questions about this phone to which I haven't yet found any solutions.
I'm unable to see lock screen notifications, or, in fact, anything on the lock screen. I've gone through all the settings for lock screen, notifications, clock, display, , always on display, and app permissions with no change. While I prefer using Nova Launcher, the results are the same using the Samsung default launcher.
My old phone had a setting where alarms only would sound so I didn't mistakenly silence the alarm clock. I've used AlarmDroid for years and want to continue using it but the alarm doesn't sound if ithe phone is set to vibrate only. I don't want or need to hear alny other notifications when I'm supposed to be asleep. I've been through all the sound settings for the app and phone and can't find a way to have only AlarmDroid use sound when nothing else does.
All suggestions or solutions welcome!
Click to expand...
Click to collapse
For the alarm issue, just use Google Clock app. Works flawlessly, but just remember to remove it from battery optimization.

Categories

Resources