Skip to content

Commit efb8126

Browse files
Merge pull request #153 from OutSystems/development
RMET-3878 - Prepare to release version `2.3.0`
2 parents d57fea7 + 4a6ebed commit efb8126

File tree

7 files changed

+266
-166
lines changed

7 files changed

+266
-166
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
The changes documented here do not include those from the original repository.
88

9+
## [2.3.0]
10+
11+
### Fixes
12+
13+
- (android): Fixes advanced query for custom aggregation metrics (https://outsystemsrd.atlassian.net/browse/RMET-3831)
14+
915
## [2.2.1]
1016

1117
### Fixes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.outsystems.plugins.healthfitness",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"description": "Health & Fitness cordova plugin for OutSystems applications.",
55
"keywords": [
66
"ecosystem:cordova",

plugin.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<plugin id="com.outsystems.plugins.healthfitness" version="2.2.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
2+
<plugin id="com.outsystems.plugins.healthfitness" version="2.3.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
33
<name>HealthFitness</name>
44
<description>Health &amp; Fitness cordova plugin for OutSystems applications.</description>
55
<author>OutSystems Inc</author>
@@ -29,6 +29,8 @@
2929

3030
<!-- HealthFitness Plugin -->
3131
<source-file src="src/android/com/outsystems/plugins/healthfitness/OSHealthFitness.kt" target-dir="app/src/main/kotlin/com/outsystems/plugins/healthfitness"/>
32+
<source-file src="src/android/com/outsystems/plugins/healthfitness/OSHealthFitnessWarning.kt" target-dir="app/src/main/kotlin/com/outsystems/plugins/healthfitness"/>
33+
<source-file src="src/android/com/outsystems/plugins/healthfitness/TimeUnitSerializer.kt" target-dir="app/src/main/kotlin/com/outsystems/plugins/healthfitness"/>
3234

3335
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
3436
<framework src="org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.4.3" />

src/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies{
2525

2626
implementation("com.github.outsystems:oscore-android:1.2.0@aar")
2727
implementation("com.github.outsystems:oscordova-android:2.0.1@aar")
28-
implementation("com.github.outsystems:oshealthfitness-android:2.2.1@aar")
28+
implementation("com.github.outsystems:oshealthfitness-android:2.3.0@aar")
2929
implementation("com.github.outsystems:osnotificationpermissions-android:0.0.4@aar")
3030

3131
// activity

0 commit comments

Comments
 (0)