I have a problem with the cache in an app made with Ionic.
Supposedly active the cache in the "config" of the module in the following way
app.config(function($ionicConfigProvider) {
$ionicConfigProvider.tabs.position('bottom');
$ionicConfigProvider.views.maxCache(5); // <-- aquí
});
Still, the cache is not activated.
What can I be doing wrong?