Android view proble(ion-view,tbs,.state)

well,helow guys ,i’m new here so i expect that anyone can help me,my problem is that my application in the localhost is displaying all in the correct way that i did,but when i build in android it’s only display a white screen. but if in the html i wrote something in the … that appear in the withe screen, my code of html is this:


the js

angular.module(‘starter’, [‘ionic’,‘starter.controllers’,‘camaraController’])

.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if(window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if(window.StatusBar) {
StatusBar.styleDefault();
}
});
})

.config(["$locationProvider", function($locationProvider) {
$locationProvider.html5Mode({
enabled: true,
requireBase: false
});
}])

.config(function($stateProvider, $urlRouterProvider) {

$urlRouterProvider.otherwise(’/’);

$stateProvider.state(‘SignIn’, {
url: ‘/sign-in’,
templateUrl: ‘signin.html’
})

$stateProvider.state(‘tab’, {
url: ‘/tab’,
templateUrl: ‘tabs.html’
})

$stateProvider.state(‘tab.home’, {
url: ‘/home’,
views: {
home: {
templateUrl: ‘home.html’
}
}
})

$stateProvider.state(‘tab.lista’, {
url: ‘/lista’,
views: {
lista: {
templateUrl: ‘lista.html’
}
}
})

$stateProvider.state(‘tab.camara’, {
url: ‘/camara’,
views: {
indicadores: {
templateUrl: ‘camara.html’
}
}

})
});

well, i hope that someone can help me,but thanks for the time!

ups! i forgot the html,here it’s:

I think you forgot to include the html and for the good understanding of the code I would recommend you to put your code in a preformatted content with this button image