You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am learning to use funf by the wifiscanner sample, which is based on funf v0.4.
I have to use funf v0.5, because later I need to use VideoCaptureProbe, which is not developed in funf v0.4.
When using funf v0.5 jar in wifiscanner, Pipeline.getDb() is missing.
How to fix it?
privatevoidupdateScanCount() {
// Query the pipeline db for the count of rows in the data tableSQLiteDatabasedb = pipeline.getDb();
Cursormcursor = db.rawQuery(TOTAL_COUNT_SQL, null);
mcursor.moveToFirst();
finalintcount = mcursor.getInt(0);
// Update interface on main threadrunOnUiThread(newRunnable() {
@Overridepublicvoidrun() {
dataCountView.setText("Data Count: " + count);
}
});
}
The text was updated successfully, but these errors were encountered:
I am learning to use funf by the wifiscanner sample, which is based on funf v0.4.
I have to use funf v0.5, because later I need to use VideoCaptureProbe, which is not developed in funf v0.4.
When using funf v0.5 jar in wifiscanner, Pipeline.getDb() is missing.
How to fix it?
The text was updated successfully, but these errors were encountered: