Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6d521e4
Update version number
kalynstricklin Jun 29, 2026
5228eee
set text for endpoint url
kalynstricklin Jun 29, 2026
cc411ba
updated switches to use material switch, updated back arrow + bottom …
kalynstricklin Jul 7, 2026
8cb780e
updated theme
kalynstricklin Jul 7, 2026
79a688b
update datastream status card
kalynstricklin Jul 7, 2026
e4edbfc
remove func call
kalynstricklin Jul 7, 2026
89f42cc
Merge pull request #84 from Botts-Innovative-Research/update-theme
kalynstricklin Jul 7, 2026
1b46b66
Merge pull request #85 from Botts-Innovative-Research/update-datastre…
kalynstricklin Jul 7, 2026
fb69930
Merge pull request #86 from Botts-Innovative-Research/82-have-to-sele…
kalynstricklin Jul 7, 2026
0feadbc
moved to create services only when enabled
kalynstricklin Jul 7, 2026
f99c013
Merge pull request #87 from Botts-Innovative-Research/83-fails-to-dow…
kalynstricklin Jul 7, 2026
0019bba
updated addons/core and rebased
kalynstricklin Aug 3, 2026
894da85
updated sensor uid ext text color and to show summary, added kotlin t…
kalynstricklin Aug 13, 2026
83d6178
added output file name for builds
kalynstricklin Aug 13, 2026
cd1e4ff
fix workflow to remove ssh key
kalynstricklin Aug 13, 2026
22791cf
Merge pull request #104 from Botts-Innovative-Research/add-garmin
kalynstricklin Aug 13, 2026
cdc3d96
updated core
kalynstricklin Aug 20, 2026
2a4d938
Update .gitmodules
kalynstricklin Aug 20, 2026
0e99a00
resolve submdoule conflict, keep dev osh-core
kalynstricklin Aug 20, 2026
39aa02b
update version and workflow
kalynstricklin Aug 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/gradle_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Build APK
on:
push:
branches: [ master, dev, ci-cd ]
tags: [ 'v*' ]
pull_request:
branches: [ master, dev ]

Expand Down Expand Up @@ -42,5 +43,5 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: app/build/outputs/apk/basic/release/*.apk
files: sensorhub-android-app/build/outputs/apk/debug/*.apk
generate_release_notes: true
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
[submodule "include/osh-core"]
path = submodules/osh-core
url = git@github.com:kalynstricklin/osh-core.git
branch = update-moduleutils
branch = android
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext.compileSdkVersion = 34
ext.minSdkVersion = 33
ext.targetSdkVersion = 30
ext.buildToolsVersion = "34.0.0"
version = '4.1.1'
version = '4.1.0'

buildscript {
repositories {
Expand Down
Loading