Often we require a functionality where files have to be downloaded and stored. These file can be images, music files etc… In PhoneGap File API can be used to perform these operation on files. The files downloaded are stored in SD card. The code attached is officially confirmed/provided by PhoneGap […]
SMS, Email, Call from PhoneGap Mobile Application
Often we require to share content (Email or SMS ) from a mobile application. When developing applications using PhoneGap framework you can trigger the default application of the OS to perform these operations. //Call Phone //window.location.href = “tel:9769838218” //Send Mail //window.location.href = “mailto:darshanyrane@gmail.com?subject=Hello World&body=Mail from Phonegap” //Send SMS //window.location.href […]
Adobe Phonegap Build – Package Mobile Apps in Cloud
With Phonegap you can use your existing skills of HTML, CSS & Javascript to develop Mobile Apps. But the major task is to package these apps for different mobile platform using different SDK’s and sometimes even different machines. Phonegap Build comes in handy here, it provides a cloud based solution […]