After your comment JaakL I did a bit of work and this is as far as I got. Unfortunately, it's not working yet. I did step by step what you told me but every time I load the app I just get a white screen instead of the beautiful map I'm trying to load.
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MapView mapView;
mapView=(MapView)findViewById(R.id.mapView);
// Optional, but very useful: restore map state during device rotation,
// it is saved in onRetainNonConfigurationInstance() below
Components retainObject = (Components) getLastNonConfigurationInstance();
if (retainObject != null) {
// just restore configuration and update listener, skip other initializations
mapView.setComponents(retainObject);
return;
} else {
// 2. create and set MapView components - mandatory
mapView.setComponents(new Components());
}
copyAssets();
try {
MBTilesRasterDataSource dataSource = new MBTilesRasterDataSource(
new EPSG3857(), 0, 19,
(null).getAbsolutePath() + "/braga.mbtiles",
false, this);
RasterLayer mbLayer = new RasterLayer(dataSource, 0);
mapView.getLayers().addLayer(mbLayer);
} catch (IOException e) {
Log.error(e.getMessage());
}
First three lines of my debugger :
27337-27337/com.exaple.myapplication5.app E/Trace﹕ error opening trace file: No such file or directory (2)
27337-27337/com.exaple.myapplication5.app W/ActivityThread﹕ Application com.exaple.myapplication5.app is waiting for the debugger on port 8100...
27337-27337/com.exaple.myapplication5.app I/System.out﹕ Sending WAIT chunk
The trick is that you need to copy the file from application package to device storage, otherwise you cannot open the MBtiles file.
Sample code: