I am trying to play around with the Wearable 3.0 sample application ‘(Circle) Music Player’ on the emulator. But it doesn’t find any audio files. It doesn’t find any files at all. On a physical device it works. What am I doing wrong?
Simplified the code now is like this:
tizen.content.find(
function contentFindSuccess(items) {
var length = items.length; // item's length.
console.log("found " + length + " items.");
},
function contentFindError(event) {
console.warn('Content API find() failed!', event);
},
null,
new tizen.AttributeFilter(
'type',
'EXACTLY',
'AUDIO'
),
new tizen.SortMode(
'title',
'ASC'
)
);
tizen.content.find on Emulator
I am trying to play around with the Wearable 3.0 sample application ‘(Circle) Music Player’ on the emulator. But it doesn’t find any audio files. It doesn’t find any files at all. On a physical device it works. What am I doing wrong?
Simplified the code now is like this:
It doesn’t warn it just logs: ‘found 0 items.’
BY
16 Apr 2025
Tizen Studio
BY
04 Nov 2024
Tizen Studio
BY
02 Apr 2024
Tizen Studio