Skip to content

Commit 5d5f8bf

Browse files
committed
0.16.0: added support for 16 bit analog channels (for >= 0.18.0) and legacy support for 8 bit analog channel (< 0.18.0)
1 parent f27cfe0 commit 5d5f8bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SensorLib/sensorlib/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ android {
3939
targetSdkVersion 29
4040

4141
def versionMajor = 0
42-
def versionMinor = 15
43-
def versionPatch = 7
42+
def versionMinor = 16
43+
def versionPatch = 0
4444

4545
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
4646
versionName "${versionMajor}.${versionMinor}.${versionPatch}" + "_" + getGitDate() + "-" + getGitHash()
@@ -60,7 +60,7 @@ dependencies {
6060
implementation 'androidx.appcompat:appcompat:1.2.0'
6161
implementation 'androidx.recyclerview:recyclerview:1.2.0-beta01'
6262
implementation 'androidx.cardview:cardview:1.0.0'
63-
implementation 'com.google.android.material:material:1.3.0-alpha04'
63+
implementation 'com.google.android.material:material:1.3.0-beta01'
6464
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
6565
implementation 'com.xeoh.android:checkboxgroup:1.0.1'
6666

0 commit comments

Comments
 (0)