Watch App detects Strava Live Segments (shows dismiss message and exits app)

o A Descriptive Title (i.e. “Simulator Freezes Launching App in Eclipse”)
Watch App detects Strava Live Segments (shows dismiss message and exits app)

o The Environment:
Windows 10
Eclipse Neon.2 (4.6.2)
ConnectIQ 2.2.4

o A detailed description of the issue
* went out for a run
* started my app ( https://apps.garmin.com/en-US/apps/ea97af1f-1e5d-4541-820c-9bd994080d4c )
* the watch detects a strava live segment
* the watch shows the segment details together with a dismiss message
* choosing dismiss dismisses the message and returns to the screen where you can choose between activity profiles / Apps
* the activitiy has been recorded up to the strava live segment detection

o Steps to reproduce the issue
-> Issue to be assigned to an "active" programmer who likes to go out for a run :)

* Use a device that has the strava live segments ability (eg FR735XT)
* Define strava live segments (in the neighbourhood of your office) on strava and sync them to your watch
* Create a simple app that records a running session or if you want a bit of an interface you can also use my app https://apps.garmin.com/en-US/apps/ea97af1f-1e5d-4541-820c-9bd994080d4c
* Go out for a run and approach the strava live segment
* The watch will show the segment detection with dismiss button


you'll probably have this also lying around, but please find below the watch-app code related to the start of recording the running session:
hidden var session = null;

function initialize() {
//...
// don't think this will influence the Strava Live Segment detection but I've enabled all the external sensors
Sensor.setEnabledSensors([Sensor.SENSOR_BIKECADENCE, Sensor.SENSOR_BIKEPOWER, Sensor.SENSOR_FOOTPOD, Sensor.SENSOR_HEARTRATE, Sensor.SENSOR_TEMPERATURE]);
//...
}

function onStartStop() {
//.... onStart (called from the behaviour detection)
if (session == null) {
session = Record.createSession({
:sport=>Record.SPORT_RUNNING,
:name=>"Run"
});
}
session.start();
//...
}



o Any applicable additional information
My default run activitiy profile has strava live segments disabled so the app setting can not be getting it's info from there

In this specific app I don't want detection of Strava Live Segments at all so I would be happy with a way to disable Strava Live Segment detection from within my app (while retaining the ability to record the session as a Running activity of course)

Solution proposal:
Provide a way to disable strava live segment detection in watch-apps
and/or
Provide a way to handle strava live segment detection