Skip to content

Commit

Permalink
7.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
j-kaltes committed Oct 30, 2023
1 parent a600d84 commit 8157144
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ android {

// targetSdk 26
//****** Zet op rollout op 100% ******
versionCode 425 //LIBRE2ONLY
versionName '7.1.6-no3'
versionCode 427 //LIBRE2ONLY
versionName '7.1.7-no3'
dimension 'libreVersion'
buildConfigField 'int', 'libreVersion', '2'
}
Expand All @@ -88,9 +88,9 @@ android {
minSdk 26
// minSdk 23
dimension 'libreVersion'
versionCode 425 //LIBRE3
versionCode 427 //LIBRE3
//****** Zet op rollout op 100% ******
versionName '7.1.6'
versionName '7.1.7'

buildConfigField 'int', 'libreVersion', '3'
externalNativeBuild.cmake {
Expand All @@ -107,9 +107,9 @@ android {
// targetSdk 30
dimension 'wearos'
minSdk 26
versionCode 426 //WATCH
versionCode 428 //WATCH
//****** Zet op rollout op 100% ******
versionName '7.1.6-wear'
versionName '7.1.7-wear'
signingConfig signingConfigs.alg

// buildConfigField 'int', 'targetSDK', "$targetSdk"
Expand Down
2 changes: 1 addition & 1 deletion Common/src/main/java/tk/glucodata/SuperGattCallback.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ static void init(Application app) {
if(glucosealarms==null) glucosealarms=new tk.glucodata.GlucoseAlarms(app);
if(!isWearable) {
Talker.getvalues();
if(Talker.istalking())
if(Talker.shouldtalk())
newtalker(null);
}
}
Expand Down
7 changes: 5 additions & 2 deletions Common/src/mobile/java/tk/glucodata/Talker.java
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,11 @@ public void onTextChanged(CharSequence s, int start, int before, int count) { }

return new View[] {speed,displayspeed};
}
public static boolean istalking() {
return SuperGattCallback.dotalk||Natives.gettouchtalk()||Natives.speakmessages()||Natives.speakalarms();
public static boolean shouldtalk() {
return SuperGattCallback.dotalk||Natives.gettouchtalk()||Natives.speakmessages()||Natives.speakalarms();
}
public static boolean istalking() {
return SuperGattCallback.talker!=null;
}
public static void config(MainActivity context) {
if(!istalking()) {
Expand Down

0 comments on commit 8157144

Please sign in to comment.