File tree Expand file tree Collapse file tree 4 files changed +8
-21
lines changed
src/main/java/com/platypii/baseline/lasers/rangefinder Expand file tree Collapse file tree 4 files changed +8
-21
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ android {
10
10
compileSdk 34
11
11
minSdkVersion 21
12
12
targetSdkVersion 34
13
- versionCode 146
14
- versionName " 5.12 "
13
+ versionCode 148
14
+ versionName " 5.13 "
15
15
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
16
16
}
17
17
buildTypes {
@@ -38,16 +38,16 @@ android {
38
38
39
39
dependencies {
40
40
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
41
- annotationProcessor ' androidx.annotation:annotation:1.9.0 '
41
+ annotationProcessor ' androidx.annotation:annotation:1.9.1 '
42
42
implementation ' androidx.appcompat:appcompat:1.7.0'
43
- implementation ' androidx.fragment:fragment:1.8.4 '
43
+ implementation ' androidx.fragment:fragment:1.8.5 '
44
44
implementation ' com.github.weliem:blessed-android:2.5.0'
45
45
implementation ' com.google.android.gms:play-services-auth:21.2.0'
46
46
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 '
48
48
implementation ' com.google.firebase:firebase-analytics:22.1.2'
49
49
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 '
51
51
implementation ' com.squareup.retrofit2:retrofit:2.9.0'
52
52
implementation ' com.squareup.retrofit2:converter-gson:2.9.0'
53
53
implementation ' net.sourceforge.streamsupport:android-retrofuture:1.7.4' // minsdk24
Original file line number Diff line number Diff line change @@ -319,19 +319,6 @@ private byte[] unescape(byte[] data) {
319
319
return Arrays .copyOf (unescaped , j );
320
320
}
321
321
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
-
335
322
/**
336
323
* Endian-swapped short from byte array
337
324
*/
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
6
6
mavenCentral()
7
7
}
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:8.7.1 '
9
+ classpath ' com.android.tools.build:gradle:8.7.2 '
10
10
classpath ' com.google.firebase:firebase-crashlytics-gradle:3.0.2'
11
11
classpath ' com.google.gms:google-services:4.4.2'
12
12
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ android {
27
27
28
28
dependencies {
29
29
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
30
- annotationProcessor ' androidx.annotation:annotation:1.9.0 '
30
+ annotationProcessor ' androidx.annotation:annotation:1.9.1 '
31
31
implementation ' com.github.weliem:blessed-android:2.5.0'
32
32
implementation ' com.google.android.gms:play-services-auth:21.2.0'
33
33
implementation ' com.google.android.gms:play-services-maps:19.0.0'
You can’t perform that action at this time.
0 commit comments