Skip to content

Commit

Permalink
Public Release of ANT SDK v.P.B4
Browse files Browse the repository at this point in the history
  • Loading branch information
ANT-Shane committed Mar 21, 2015
1 parent 4abc2c4 commit 370eef7
Show file tree
Hide file tree
Showing 16 changed files with 696 additions and 56 deletions.
Binary file removed ANT+_Android_SDK/API/AntPluginLib_Javadoc_3-4-0.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed ANT+_Android_SDK/API/fit_14.00.jar
Binary file not shown.
Binary file added ANT+_Android_SDK/API/fit_14.10.jar
Binary file not shown.
26 changes: 21 additions & 5 deletions ANT+_Android_SDK/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Android ANT+ SDK v.P.B3 - 11 Feb 2015
# Android ANT+ SDK v.P.B4 - 20 Mar 2015
This software development kit provides the resources needed to develop an Android application which uses the defined ANT+ profiles to communicate wirelessly with the millions of existing ANT+ devices. It includes instructions, API and documentation, and reference sample applications. The PDF _Creating ANT+ Android Applications_ explains how to get started.

If you are trying to develop an application to use ANT wireless technology freely outside of the defined ANT+ profiles, you must use the ANT Android SDK instead.
Expand Down Expand Up @@ -30,20 +30,36 @@ This SDK is available from:

* Creating ANT+ Android Applications
* API
* PluginLib 3.4.0 (.jar and Javadoc)
* FIT 14.00 (.jar)
* PluginLib 3.5.0 (.jar and Javadoc)
* FIT 14.10 (.jar)
* Services
* ANT+ Plugins Service 3.4.0 (.apk)
* ANT+ Plugins Service 3.5.0 (.apk)
* Plugin Manager Launcher 1.1.0 (.apk)
* Sample Applications
* Plugin Sampler 3.4.0 (.apk and source)
* Plugin Sampler 3.5.0 (.apk and source)
* ANT+ Demo 3.2.0 (.apk)
* Heart Rate Grapher 4.0.0 (.apk)


Android ANT+ SDK Changelog
=============================================

<u>v.P.B4 - 20 Mar 2015</u>
--------------------------------------------------
> Ant+ Plugins Service and ANT+ PluginLib Changelog - v.3.5.0
> -----------------------------------------------------------------------------------
> * Fitness Equipment Controls released to public API [Lib]
> * Update to FitLib 14.10 (fixes date inconsistency in BPM) [Lib + Service]
> * Fix BPM resetDataAndSetTime to work properly [Service]
> * Fix a couple causes of crashes in the search UI activity [Service]
> * Fix an error connecting to bike S&C devices when saved as the preferred device [Service]
>
> Ant+ Plugin Sampler - v.3.5.0
> -----------------------------------------------------------------------------------
> * Fitness Equipment Controls released to public API
> * Update to use PluginLib v.3.5.0
>
>
<u>v.P.B3 - 11 Feb 2015</u>
--------------------------------------------------
> Ant+ Plugins Service and ANT+ PluginLib Changelog - v.3.4.0
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ All rights reserved.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dsi.ant.antplus.pluginsampler"
android:versionCode="030400"
android:versionName="3.4.0" >
android:versionCode="030500"
android:versionName="3.5.0" >

<uses-sdk
android:minSdkVersion="7"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
ANT Plus Plugins Sampler - Release Notes
v3.4.0
2015-2-11
v3.5.0
2015-3-20

Copyright (c) Dynastream Innovations Inc. 2015
All rights reserved.

=============================================================
1. LIBRARY VERSIONS

FIT: 14.00
ANTPluginLib: 3.4.0
FIT: 14.10
AntPluginLib 3.5.0

=============================================================
2. BUILD TOOLS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import com.dsi.ant.antplus.pluginsampler.controls.Activity_GenericRemoteControlSampler;
import com.dsi.ant.antplus.pluginsampler.controls.Activity_VideoControllableDeviceSampler;
import com.dsi.ant.antplus.pluginsampler.controls.Activity_VideoRemoteControlSampler;
import com.dsi.ant.antplus.pluginsampler.fitnessequipment.Activity_FitnessEquipmentSampler;
import com.dsi.ant.antplus.pluginsampler.fitnessequipment.Dialog_ConfigSettings;
import com.dsi.ant.antplus.pluginsampler.geocache.Activity_GeoScanList;
import com.dsi.ant.antplus.pluginsampler.heartrate.Activity_AsyncScanHeartRateSampler;
Expand Down Expand Up @@ -150,7 +151,8 @@ else if(position == j++)
}
else if(position == j++)
{
Toast.makeText(this, "Requires ANT+ Members-Only Release", Toast.LENGTH_SHORT).show();
Intent i = new Intent(this, Activity_FitnessEquipmentSampler.class);
startActivity(i);
}
else if(position == j++)
{
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,7 @@ public void launchConnection(MultiDeviceSearchResult result)
activity = Activity_StrideSdmSampler.class;
break;
case FITNESS_EQUIPMENT:
Toast.makeText(this, "Requires ANT+ Members-Only Release",
Toast.LENGTH_SHORT).show();
activity = Activity_FitnessEquipmentSampler.class;
break;
case GEOCACHE:
case CONTROLLABLE_DEVICE:
Expand Down
Binary file not shown.
Binary file not shown.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ This SDK is available from:

# Current Versions:
* Android ANT SDK v.C.B5 - 26 Feb 2015
* Android ANT+ SDK v.P.B3 - 11 Feb 2015
* <i>Android ANT+ SDK v.P.B3.MO1 - 11 Feb 2015 - Members-only release with trainer profile support, only available to ANT+ Members from http://www.thisisant.com/developer/resources/downloads/</i>
* Android ANT+ SDK v.P.B4 - 20 Mar 2015

# Changelog
See the README.md file in each respective SDK directory for a detailed changelog.
Expand Down

0 comments on commit 370eef7

Please sign in to comment.