The current documentation (both in SDK 7.x, 8.x) for Activity lists that Activity.SPORT_GENERIC was added to the SDK at api level 3.2.0. While I understand that this is the historic fact, I think it's misleading. The documentation of ActivityRecording lists all these constants as deprecated and "hints" that we need to use the constants in Activity. And if I understand how this works than these constants are replaced with their values at compile time, at least since SDK 7.x. So if I am correct then I can use Activity.SPORT_PADDLING in an app with min api level of 1.0.0. Right? So listing it as since api level 3.2.0 isn't really useful. In fact in a way it's harmful, because I am able to write this code:
var session = ActivityRecording.createSession({
:name => "foo",
:sport => Activity.SPORT_HIKING,
});
and run this (at least in the simulator) on D2 Bravo (CIQ: 1.4.4)
So instead the current value of since, I think it should list, as it does for just about any other class, method, constant the min api level where the devices are compatible with it. So in my opinion each of these constants in Activity should be listed with the same values as they are in ActivityRecording.
update:
To make things even more confusing I am even able to add:
:subSport => Activity.SUB_SPORT_COMMUTING
which is clearly since api level 4.1.6 and still run it on D2 Bravo in the simulator. Not sure if this is OK, how this would behave on a real device. Maybe this is a bug in the d2 bravo in the simulator?