I'm upgrading one of my apps to work properly on Kit Kat, and it depends on an exactly timed alarm. Now the API changes page says that you must use a new call, setExact, to get this behavior back in 4.4. I'm attempting to use it but Eclipse is telling me that setExact is undefined, and indeed it doesn't appear in the auto-completion popup. Any thoughts?
Asked
Active
Viewed 862 times
1 Answers
4
Set your build target (Project > Properties > Android) to API Level 19 (or higher, if you're reading this answer sometime in the future when we have higher than 19).

CommonsWare
- 986,068
- 189
- 2,389
- 2,491
-
1Ah, I changed the build target in my manifest but not in the project properties, thanks. – Nick Nov 24 '13 at 01:33