Skip to content

Commit 29b16a4

Browse files
committed
Publish v5.13
1 parent a2b9d4c commit 29b16a4

File tree

4 files changed

+8
-21
lines changed

4 files changed

+8
-21
lines changed

app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
compileSdk 34
1111
minSdkVersion 21
1212
targetSdkVersion 34
13-
versionCode 146
14-
versionName "5.12"
13+
versionCode 148
14+
versionName "5.13"
1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1616
}
1717
buildTypes {
@@ -38,16 +38,16 @@ android {
3838

3939
dependencies {
4040
implementation fileTree(include: ['*.jar'], dir: 'libs')
41-
annotationProcessor 'androidx.annotation:annotation:1.9.0'
41+
annotationProcessor 'androidx.annotation:annotation:1.9.1'
4242
implementation 'androidx.appcompat:appcompat:1.7.0'
43-
implementation 'androidx.fragment:fragment:1.8.4'
43+
implementation 'androidx.fragment:fragment:1.8.5'
4444
implementation 'com.github.weliem:blessed-android:2.5.0'
4545
implementation 'com.google.android.gms:play-services-auth:21.2.0'
4646
implementation 'com.google.android.gms:play-services-maps:19.0.0'
47-
implementation 'com.google.code.gson:gson:2.10.1'
47+
implementation 'com.google.code.gson:gson:2.11.0'
4848
implementation 'com.google.firebase:firebase-analytics:22.1.2'
4949
implementation 'com.google.firebase:firebase-crashlytics:19.2.1'
50-
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
50+
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
5151
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
5252
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
5353
implementation 'net.sourceforge.streamsupport:android-retrofuture:1.7.4' // minsdk24

app/src/main/java/com/platypii/baseline/lasers/rangefinder/TerrapinProtocol.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -319,19 +319,6 @@ private byte[] unescape(byte[] data) {
319319
return Arrays.copyOf(unescaped, j);
320320
}
321321

322-
@NonNull
323-
private byte[] swapEndianness(@NonNull byte[] data) {
324-
if (data.length % 2 != 0) {
325-
Log.w(TAG, "rf -> app: data length must be even " + byteArrayToHex(data));
326-
}
327-
final byte[] swapped = new byte[data.length];
328-
for (int i = 0; i < data.length; i += 2) {
329-
swapped[i] = data[i + 1];
330-
swapped[i + 1] = data[i];
331-
}
332-
return swapped;
333-
}
334-
335322
/**
336323
* Endian-swapped short from byte array
337324
*/

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:8.7.1'
9+
classpath 'com.android.tools.build:gradle:8.7.2'
1010
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
1111
classpath 'com.google.gms:google-services:4.4.2'
1212

common/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727

2828
dependencies {
2929
implementation fileTree(dir: 'libs', include: ['*.jar'])
30-
annotationProcessor 'androidx.annotation:annotation:1.9.0'
30+
annotationProcessor 'androidx.annotation:annotation:1.9.1'
3131
implementation 'com.github.weliem:blessed-android:2.5.0'
3232
implementation 'com.google.android.gms:play-services-auth:21.2.0'
3333
implementation 'com.google.android.gms:play-services-maps:19.0.0'

0 commit comments

Comments
 (0)