Problem to Display SharedObject Data on Android device

I’m trying to make android game by using adobe Flash Professional CS6 / Actionscript 3.0.
Now, I’m having trouble to load sharedObject data on my apps on the android device.
When I try it on my PC there’s no issue, when I play it on the android device, the data wasn’t store / load.

Here are my code to display my object

import flash.net.SharedObject;
import flash.events.MouseEvent;
import flash.events.Event;
import flash.display.MovieClip;

var so:SharedObject = SharedObject.getLocal("myapps");

var score  = so.data.skor;

myskor.text = score //this is how I load the data from SharedObject

Thanks in advance

DasatraSFX