Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQLite3 database implementation #8

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Prev Previous commit
Next Next commit
Final Upload
  • Loading branch information
ruibritopt committed Jul 7, 2015
commit f230554072bd7ea5f0f1c0a5bf34125695cab498
21 changes: 21 additions & 0 deletions AndroidSvgNaviMap/infer-out/bugs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/MainActivity.java:1005: error: RESOURCE_LEAK
resource acquired by call to FileOutputStream(...) at line 1003 is not released after line 1005

/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/SSIDMap.java:55: error: RESOURCE_LEAK
resource acquired by call to Scanner(...) at line 51 is not released after line 55

/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/SampleScanActivity.java:1175: error: RESOURCE_LEAK
resource acquired by call to FileOutputStream(...) at line 1175 is not released after line 1175

/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBHelper.java:141: error: RESOURCE_LEAK
resource acquired by call to rawQuery(...) at line 132 is not released after line 141

/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBHelper.java:145: error: RESOURCE_LEAK
resource acquired by call to rawQuery(...) at line 132 is not released after line 145

/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBUtil.java:105: error: RESOURCE_LEAK
resource acquired by call to FileInputStream(...) at line 95 is not released after line 105

/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/dao/LocationDAO.java:87: error: RESOURCE_LEAK
resource acquired by call to query(...) at line 74 is not released after line 87

Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/AndroidDatabaseManager.java LOC: 1274 VISITED: 316/480 SYMOPS: 12142
+ num_procs: 66 (49 ok, 12 timeouts, 1 errors, 1 warnings, 251 infos)
+ detail procs:
+ - No Errors and No Specs: 16
+ - Some Errors and No Specs: 1
+ - No Errors and Some Specs: 49
+ - Some Errors and Some Specs: 0
+ errors: NULL_DEREFERENCE:1
+ warnings: RETURN_VALUE_IGNORED:1
+ infos: SKIP_FUNCTION:251
+ specs: 60
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/infer-out/sources/com.dm.zbar.android.scanner.ZBarScannerActivity_InferGeneratedHarness.java:9: ERROR: NULL_DEREFERENCE [B5] object ZBarScannerActivity.mPreview last accessed on line 8 could be null and is dereferenced by call to onResume() at line 9, column 1

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/AndroidDatabaseManager.java:989: WARNING: RETURN_VALUE_IGNORED after call to getData(...) at line 989

Detailed warnings during re-execution phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/infer-out/sources/com.dm.zbar.android.scanner.ZBarScannerActivity_InferGeneratedHarness.java:8: WARNING: PRECONDITION_NOT_MET in call to onCreate(...) at line 8, column 1
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/infer-out/sources/de.tuhh.ti5.androidsvgnavimap.SampleScanActivity_InferGeneratedHarness.java:11: WARNING: PRECONDITION_NOT_MET in call to onStop() at line 11, column 1
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/infer-out/sources/james.weka.android.LocateService_InferGeneratedHarness.java:11: WARNING: PRECONDITION_NOT_MET in call to onDestroy() at line 11, column 1
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/AndroidDatabaseManager.java:206: WARNING: PRECONDITION_NOT_MET in call to getData(...) at line 206
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/AndroidDatabaseManager.java:416: WARNING: PRECONDITION_NOT_MET in call to getData(...) at line 416
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/AndroidDatabaseManager.java:464: WARNING: PRECONDITION_NOT_MET in call to getData(...) at line 464
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/AndroidDatabaseManager.java:728: WARNING: PRECONDITION_NOT_MET in call to getData(...) at line 728
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/build/generated/source/buildConfig/release/de/tuhh/ti5/androidsvgnavimap/BuildConfig.java LOC: 13 VISITED: 4/5 SYMOPS: 18
+ num_procs: 1 (1 ok, 0 timeouts, 0 errors, 0 warnings, 0 infos)
+ detail procs:
+ - No Errors and No Specs: 0
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 1
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos:
+ specs: 1
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/com/dm/zbar/android/scanner/CameraPreview.java LOC: 174 VISITED: 86/110 SYMOPS: 1648
+ num_procs: 10 (9 ok, 2 timeouts, 0 errors, 0 warnings, 39 infos)
+ detail procs:
+ - No Errors and No Specs: 1
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 9
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos: SKIP_FUNCTION:39
+ specs: 16
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/impl/ClassfierUtils.java LOC: 405 VISITED: 134/165 SYMOPS: 3853
+ num_procs: 23 (17 ok, 6 timeouts, 0 errors, 0 warnings, 119 infos)
+ detail procs:
+ - No Errors and No Specs: 6
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 17
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos: SKIP_FUNCTION:119
+ specs: 24
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/ClassifyResult.java LOC: 54 VISITED: 41/50 SYMOPS: 296
+ num_procs: 9 (9 ok, 0 timeouts, 0 errors, 0 warnings, 4 infos)
+ detail procs:
+ - No Errors and No Specs: 0
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 9
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos: SKIP_FUNCTION:4
+ specs: 9
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/CompleteScanResult.java LOC: 72 VISITED: 57/64 SYMOPS: 647
+ num_procs: 7 (7 ok, 0 timeouts, 0 errors, 0 warnings, 16 infos)
+ detail procs:
+ - No Errors and No Specs: 0
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 7
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos: SKIP_FUNCTION:16
+ specs: 8
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/ti5/dibusapp/navigation/CustomJavaScriptHandler.java LOC: 216 VISITED: 93/150 SYMOPS: 1419
+ num_procs: 11 (10 ok, 0 timeouts, 0 errors, 0 warnings, 46 infos)
+ detail procs:
+ - No Errors and No Specs: 1
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 10
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos: SKIP_FUNCTION:46
+ specs: 16
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBHelper.java LOC: 163 VISITED: 23/87 SYMOPS: 315
+ num_procs: 5 (5 ok, 0 timeouts, 2 errors, 1 warnings, 17 infos)
+ detail procs:
+ - No Errors and No Specs: 0
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 4
+ - Some Errors and Some Specs: 1
+ errors: RESOURCE_LEAK:2
+ warnings: NULL_TEST_AFTER_DEREFERENCE:1
+ infos: SKIP_FUNCTION:17
+ specs: 5
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBHelper.java:141: ERROR: RESOURCE_LEAK resource acquired by call to rawQuery(...) at line 132 is not released after line 141
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBHelper.java:145: ERROR: RESOURCE_LEAK resource acquired by call to rawQuery(...) at line 132 is not released after line 145

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBHelper.java:138: WARNING: NULL_TEST_AFTER_DEREFERENCE Pointer c was dereferenced at line 132 and is tested for null at line 138

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBUtil.java LOC: 110 VISITED: 11/13 SYMOPS: 912
+ num_procs: 4 (2 ok, 2 timeouts, 1 errors, 0 warnings, 21 infos)
+ detail procs:
+ - No Errors and No Specs: 1
+ - Some Errors and No Specs: 1
+ - No Errors and Some Specs: 2
+ - Some Errors and Some Specs: 0
+ errors: RESOURCE_LEAK:1
+ warnings:
+ infos: SKIP_FUNCTION:21
+ specs: 2
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/DBUtil.java:105: ERROR: RESOURCE_LEAK resource acquired by call to FileInputStream(...) at line 95 is not released after line 105

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/util/FileUtils.java LOC: 32 VISITED: 22/33 SYMOPS: 450
+ num_procs: 2 (2 ok, 0 timeouts, 0 errors, 0 warnings, 1 infos)
+ detail procs:
+ - No Errors and No Specs: 0
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 2
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos: SKIP_FUNCTION:1
+ specs: 2
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/model/Fingerprint.java LOC: 93 VISITED: 74/91 SYMOPS: 452
+ num_procs: 17 (17 ok, 0 timeouts, 0 errors, 0 warnings, 0 infos)
+ detail procs:
+ - No Errors and No Specs: 0
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 17
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos:
+ specs: 17
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/dao/FingerprintDAO.java LOC: 129 VISITED: 33/69 SYMOPS: 959
+ num_procs: 7 (5 ok, 0 timeouts, 0 errors, 1 warnings, 28 infos)
+ detail procs:
+ - No Errors and No Specs: 2
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 5
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings: NULL_TEST_AFTER_DEREFERENCE:1
+ infos: SKIP_FUNCTION:28
+ specs: 5
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/dao/FingerprintDAO.java:88: WARNING: NULL_TEST_AFTER_DEREFERENCE Pointer cursor was dereferenced at line 82 and is tested for null at line 88

Detailed warnings during re-execution phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/dao/FingerprintDAO.java:74: WARNING: PRECONDITION_NOT_MET in call to cursorToFingerprint(...) at line 74
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/dao/FingerprintDAO.java:88: WARNING: NULL_TEST_AFTER_DEREFERENCE Pointer cursor was dereferenced at line 82 and is tested for null at line 88
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/de/tuhh/ti5/androidsvgnavimap/db/dao/FingerprintDAO.java:92: WARNING: PRECONDITION_NOT_MET in call to cursorToFingerprint(...) at line 92
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/exception/InitializationException.java LOC: 25 VISITED: 16/20 SYMOPS: 80
+ num_procs: 4 (4 ok, 0 timeouts, 0 errors, 0 warnings, 4 infos)
+ detail procs:
+ - No Errors and No Specs: 0
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 4
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos: SKIP_FUNCTION:4
+ specs: 4
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/impl/InstanceParser.java LOC: 113 VISITED: 21/26 SYMOPS: 450
+ num_procs: 6 (5 ok, 1 timeouts, 0 errors, 0 warnings, 23 infos)
+ detail procs:
+ - No Errors and No Specs: 1
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 5
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings:
+ infos: SKIP_FUNCTION:23
+ specs: 5
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:

Detailed warnings during re-execution phase:
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

++++++++++++++++++++++++++++++++++++++++++++++++++
+ FILE: /Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/android/LocateService.java LOC: 483 VISITED: 182/275 SYMOPS: 3579
+ num_procs: 38 (32 ok, 5 timeouts, 0 errors, 4 warnings, 148 infos)
+ detail procs:
+ - No Errors and No Specs: 6
+ - Some Errors and No Specs: 0
+ - No Errors and Some Specs: 32
+ - Some Errors and Some Specs: 0
+ errors:
+ warnings: NULL_TEST_AFTER_DEREFERENCE:1 RETURN_VALUE_IGNORED:3
+ infos: SKIP_FUNCTION:148
+ specs: 40
++++++++++++++++++++++++++++++++++++++++++++++++++

Detailed errors during footprint phase:

Detailed errors during re-execution phase:

Detailed warnings during footprint phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/android/LocateService.java:103: WARNING: RETURN_VALUE_IGNORED after call to performOnBackgroundThread(...) at line 103
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/android/LocateService.java:187: WARNING: RETURN_VALUE_IGNORED after call to put(...) at line 187
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/android/LocateService.java:201: WARNING: RETURN_VALUE_IGNORED after call to performOnBackgroundThread(...) at line 201
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/android/LocateService.java:453: WARNING: NULL_TEST_AFTER_DEREFERENCE Pointer bw was dereferenced at line 447 and is tested for null at line 453

Detailed warnings during re-execution phase:
/Users/ruibrito/IdeaProjects/SvgNaviMap/AndroidSvgNaviMap/src/james/weka/android/LocateService.java:253: WARNING: PRECONDITION_NOT_MET in call to getSdDir(...) at line 253
Binary file not shown.
Binary file not shown.
Loading