Showing posts with label programming. Show all posts
Showing posts with label programming. Show all posts

Wednesday, 23 September 2015

Sending WhatsApp Message in .Net.

Hi Friends!
This time I am here with a very small article about sending WhatsApp Message from your .Net application.
You need following things for that.
1-WART(WhatsApp Registration Tool)
This a tool with which you can get the password to be used in API.
3- Any mobile number on which you are not using WhatsApp currently and You will not be using it in future for WhatApp (As your number may be blocked if you send multiple messages. Again the blocking criteria is uncertain and my number was blocked after 3-5 messages !!)
So first thing first. Download the WhatsApp Api for C# via nuget package manager. If you see a reference of the API in your reference,that’s good. Otherwise download the API manually and add the reference.
To read this full blog on Sending Whatsapp Message in .Net please visit FindNerd.
You can check more informative blogs and tutorials at .Net Development Blogs section and can also browse the .Net Query forum for posting and viewing latest questions on .Net development.

Thursday, 13 August 2015

Creating a table in Android SQLite

There are situation when we need to maintain(store) data at our application level, this is mainly done when we try to execute functionalists at offline mode. So for these kind scenarios android sdk has provide us class known as SQLiteOpenHelper with the help of which we can maintain a database.
The very first step is to learn how to create a table. And before that you should know what is Table and Columns . It is very basic terminology of sqlite. So briefly we can say that table is a structure with various columns in which we store the data of a particular data type. Lets take up an example a very common example. Suppose you need to save an employee data, here I’m just saving the name of employee, his salary, his designation. You can have more information as per your requirement.
To know more about Creating a table in Android SQLite please visit FindNerd.
Apart from this you can also ask your Android Programming problems or queries at Android Developer Forum & the experts here in this forum will resolve your queries within shortest possible time frame.

Thursday, 6 August 2015

How to add a Podfile in your Project

Below is the step-wise process for integrating a Podfile easily in your Application.
  1. Open Terminal
  2. Change the directory in Terminal to the location where your Xcode project resides.
  3. When you reach to the desired project location in which you want to add a PodFile. You can create an empty file by using the command “touch Podfile”.
  4. Then by using “open Podfile” command you can open the file you have created before and then add the desired podfile to that and close the window.
To read this full blog about Integrating a Podfile in a Project visit FindNerd.
FindNerd is a social platform for tech nerds to share knowledge by posting blogs, forums on web development along with job freelancing & project management feature.

Thursday, 30 July 2015

Important checkpoints before uploading the iOS App for Approval

Getting the approval from the Apple store for iOS App sometimes become a very difficult and long task. The reason for that is threefold:
  1. Due to Apple’s commitment to quality, they spend a lot of time to test and approve an App.
  2. The App’s lack of compliance on certain important guidelines laid out by Apple.
  3. The App’s lack of compliance on certain important guidelines NOT explicitly laid out by Apple but which still has a considerable impact on whether your App will be approved or not.
Here I’ll be focussing primarily on the third. From my experience, I’ve learnt that the following checkpoints need to be kept in mind before uploading an App on iTunes Connect.
To read this full blog on Important checkpoints before uploading the iOS App for Approval please visit FindNerd.
Apart from this you can also read such more important blogs in our Newest iPhone Development Blogs Section.