I'am new to blackberry cascades and was trying my hands on call functionality. However after running my sample program, the following error is occuring:
import bb.cascades 1.4
import bb.system.phone 1.0
Page {
Container {
layout: StackLayout {
}
Button {
id: callButton
text: "Call me"
verticalAlignment: VerticalAlignment.Center
horizontalAlignment: HorizontalAlignment.Center
onClicked: {
phone.requestDialpad("(519) 555-0100")
}
}
}
attachedObjects: [
Phone {
id: phone
}
]
}
and in my .pro file
LIBS += -lbbsystem
the error I'am facing is: module "bb.system.phone" is not installed
My program is loading but a black screen is displayed. Any help will be appreciated. Thanks in advance.