Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by disabling your ad blocker.

Implement A Barcode Scanner Using Telerik NativeScript

So you’re getting some fancy new features into your NativeScript Android and iOS application. A feature I always find to be useful is having a barcode scanner within my app. Barcodes are a convenient way to pass around information without having to type it in. With NativeScript we can easily add scanning features to our application.

We’re going to see how to create a NativeScript Android and iOS application that can scan different types of barcodes.

Read More

Monetize With Google Admob In A NativeScript Mobile App

So you just made a fancy new NativeScript Android and iOS application and you’re looking to earn a little cash. There are many solutions out there, for example you could include InAppBilling or list your application as a paid application. You can also include advertisements in your application using various ad networks such as Google Admob.

We’re going to take a look at how to include Google Admob in a NativeScript iOS and Android mobile application with the intent of earning a little extra money. Now this is going to use vanilla NativeScript. If you’re looking for instructions on how to do this with Angular, check out the guide I wrote here.

Read More

Access The Native Device Clipboard In Telerik NativeScript

Have you ever wanted to copy something from your application to the native device clipboard? Maybe you want to copy contact information from a list of elements so you can paste it elsewhere. I recently wrote a post regarding social media sharing with Telerik NativeScript that will let you share to the clipboard, but that is a little overkill. Specially because there are actual clipboard APIs that don’t rely on social media sharing.

We’re going to see how to use the native device clipboard features in NativeScript to copy text to the clipboard and later obtain it.

Read More

Implement Social Media Sharing In A NativeScript App

Every app lately has some social media aspect to it. Most commonly, apps will allow you to share some kind of data, whether it be an image or text, to social media networks such as Facebook or Twitter. Sharing via email or SMS message still is classified as social sharing. When building NativeScript Android and iOS applications, sharing data isn’t complicated.

We’re going to see how to share image data and text data on social media networks via a Telerik NativeScript Android and iOS mobile application.

Read More

Add Touch ID Authentication Support To Your NativeScript App

Being able to authenticate within a mobile application using your fingerprint offers a certain convenience that is of huge benefit in modern applications. Using the iOS touch id, doors can be opened in the land of application security and since Telerik NativeScript can interface with native APIs and features, touch id becomes available for use within our JavaScript based application.

We’re going to see how to show secure content within our application, only accessible after successfully authenticating using a fingerprint and the iOS touch id features.

Read More

Webinar Series: Building A CEA2N And NativeScript Application

Today I have finished the final episode of a five-part webinar series on the subject of Couchbase, Express Framework, Angular, and Node.js (CEA2N) application development. This webinar series has been going on for the past five weeks where each week I covered a new topic relative to the stack leading up to a NativeScript mobile application.

Each episode of this webinar was recorded and can be viewed for free here. This is some premium content!

An episode breakdown and project source code can be seen below.

Read More

Use The HTTP Module Instead Of Fetch In NativeScript

Not too long ago I wrote about using the NativeScript fetch module for making HTTP requests in an Android and iOS mobile application. Personally I find that the fetch module is a bit awkward to use, so this time we’re going to take a look at using the http module instead.

The great thing about the NativeScript http module is that it is pretty much the same as it is in the other languages.

Read More