I implemented an application in Android with PhoneGap framework. So UI is implemented with HTML and CSS3.
I used CSS font face for giving custom font to application texts.
@font-face {
font-family: "Nassim";
font-style: normal;
font-weight: normal;
src: url("../fonts/nassim-regular.ttf") format("truetype");
}
body {
position: relative;
font-family: Nassim, Tahoma, Arial, Verdana, sans-serif;
font-size: 16px ;
}
It works correctly in Android 2. But when I install the application on Android 4, texts are shown by default font face.
How can I solve this problem in Android 4?