Thank you very much,
I'll try this early and tell you what happen.
Before all I have a question about this :
if ("pbf".equals(format) || "ntvt".equals(format)) {
UnsignedCharVector styleBytes = AssetUtils.loadBytes("nutibright-v2a.zip");
MBVectorTileStyleSet vectorTileStyleSet = new MBVectorTileStyleSet(styleBytes);
VectorTileDecoder vectorTileDecoder = new MBVectorTileDecoder(vectorTileStyleSet);
baseLayer = new VectorTileLayer(tileDataSource, vectorTileDecoder);
} else {
baseLayer = new RasterTileLayer(tileDataSource);
}
My MBTile file is not a "ntvt" file so I use a RasterTileLayer instead of VectorTileLayer.
Using Memory manager, from sample, means using VectorTileLayer on my MBTile file.
I will make you a feedback.
Thank you