fix: 修改自动匹配的txt文件缺少逗号的问题

This commit is contained in:
xiaoyan 2022-11-18 17:22:04 +08:00
parent 55537c4967
commit 10b739c2fb
2 changed files with 3 additions and 2 deletions

View File

@ -12,8 +12,8 @@ android {
applicationId "com.navinfo.outdoor"
minSdkVersion 23
targetSdkVersion 30
versionCode 29
versionName "8.221028"
versionCode 30
versionName "8.221118"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {

View File

@ -122,6 +122,7 @@ public class LocationRecorder implements Serializable {
.append(tencentLocationX)
.append(",")
.append(bearing)
.append(",")
.append(Constant.getRssiDesStr(rssi))
.append(",")
.append(satelliteCount)