File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/com/radio/codec2talkie/protocol Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ android {
14
14
applicationId " com.radio.codec2talkie"
15
15
minSdkVersion 23
16
16
targetSdkVersion 35
17
- versionCode 186
18
- versionName " 1.86 "
17
+ versionCode 187
18
+ versionName " 1.87 "
19
19
20
20
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
21
21
}
Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ private void runWrite(TcpIp tcpIp) {
369
369
Log .d (TAG , "APRS-IS TX: " + DebugTools .bytesToDebugString (line .getBytes (StandardCharsets .ISO_8859_1 )));
370
370
try {
371
371
line += "\n " ;
372
- tcpIp .write (line .getBytes ());
372
+ tcpIp .write (line .getBytes (StandardCharsets . ISO_8859_1 ));
373
373
} catch (IOException e ) {
374
374
Log .w (TAG , "Lost connection on transmit" );
375
375
Toast .makeText (_context , _context .getString (R .string .aprsis_disconnected ), Toast .LENGTH_LONG ).show ();
You can’t perform that action at this time.
0 commit comments