<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <generator>RSS Builder by B!Soft</generator>
    <title>KissAndroid</title>
    <link>http://www.kiss-android.com</link>
    <description>www.kiss-android.com is a programming tutorial blog on android maintained by Praveen Deshmane. Tutorials focused on Android softwares, installation, programming, basics, examples, demos, free source codes.</description>
    <language>en-us</language>
    <managingEditor>praveen@kiss-android.com</managingEditor>
    <webMaster>praveen@kiss-android.com</webMaster>
    <image>
      <title>KissAndroid</title>
      <link>http://www.kiss-android.com</link>
      <url>http://www.kiss-android.com/images/zappy_android.jpg</url>
      <width>239</width>
      <height>232</height>
    </image>
    <item>
      <title>Android Introduction</title>
      <pubDate>Sat, 17 Aug 2013 18:57:18 +0500</pubDate>
      <link>http://www.kiss-android.com/android-introduction.jsp</link>
      <author>praveen@kiss-android.com</author>
      <description><![CDATA[<strong>Android</strong> is a Linux-based operating system with a java programming interface primarily designed for touch screen mobile devices such as smart phones and tablet computers.
<p>&nbsp;Android Incorporation was founded in 2003 in PALO ALTO in CALIFORNIA by Arubin, Rich Mina and Chris White.</p>]]></description>
    </item>
    <item>
      <title>Android Architecture</title>
      <pubDate>Sat, 17 Aug 2013 19:01:37 +0500</pubDate>
      <link>http://www.kiss-android.com/android-architecture.jsp</link>
      <author>praveen@kiss-android.com</author>
      <description><![CDATA[Android was created on top of the open-source Linux 2.6 kernel. The Android team chose to use this kernel because it provided proven core features to develop the Android operating system on. 
<p>Atop the Linux 2.6 kernel, the Android framework was developed with various features. These features were pulled from numerous open-source projects.</p>]]></description>
    </item>
    <item>
      <title>Android Features</title>
      <pubDate>Sat, 17 Aug 2013 19:03:45 +0500</pubDate>
      <link>http://www.kiss-android.com/android-features.jsp</link>
      <description><![CDATA[<strong>Multiprocess and App Widgets</strong> 
<p>The Android OS does not restrict the processor to a single application at a time. The system manages priorities of applications and threads within a single application. </p>
<p><strong>Touch, Gestures, and Multitouch</strong> </p>
<p>The touch screen is an intuitive user interface for a hand-held device. </p>]]></description>
    </item>
    <item>
      <title>Android installation for windows-XP, windows-Vista, windows-7.</title>
      <pubDate>Sat, 17 Aug 2013 19:08:07 +0500</pubDate>
      <link>http://www.kiss-android.com/android-installation-for-windows-XP-windows-Vista-windows-7.jsp</link>
      <author>praveen@kiss-android.com</author>
      <description><![CDATA[Before you start coding, you need to install Java, an Eclipse IDE, and the Android SDK. The Android software development kit (SDK) works on Windows, Linux, and Mac OS X. The applications you create, of course, can be deployed on any Android devices.]]></description>
    </item>
    <item>
      <title>Android project creation step by step guide</title>
      <pubDate>Sat, 17 Aug 2013 19:12:10 +0500</pubDate>
      <link>http://www.kiss-android.com/android-project-creation-step-by-step-guide.jsp</link>
      <description><![CDATA[I'm going to walk you through how to create your first Android application to help solidify a few key aspects in the Android project creation process. 
<p>You will be creating a very simple "Hello Android" application that requires no coding whatsoever. What? No coding? How's that possible?</p>]]></description>
    </item>
    <item>
      <title>Android project structure explaination step by step</title>
      <pubDate>Sat, 17 Aug 2013 19:16:27 +0500</pubDate>
      <link>http://http://www.kiss-android.com/android-project-structure-explaination-step-by-step.jsp</link>
      <author>praveen@kiss-android.com</author>
      <description><![CDATA[Every Android project contains several folders & files
Understanding what they're for and how they got there is a key aspect of understanding Android development.]]></description>
    </item>
    <item>
      <title>Creating AVD or Emulator</title>
      <pubDate>Sat, 17 Aug 2013 19:19:53 +0500</pubDate>
      <link>http://www.kiss-android.com/android-creating-AVD-or-emulator.jsp</link>
      <author>praveen@kiss-android.com</author>
      <description><![CDATA[To run your App first you need to create an Android Virtual Device (AVD), also known as an emulator. An AVD is a virtual Android device that looks, acts, walks, and talks (well, maybe not walks and talks) just like a real Android device. AVDs can be configured to run any particular version of Android as long as the SDK for that version is downloaded and installed.]]></description>
    </item>
    <item>
      <title>Run your app step by step guide</title>
      <pubDate>Sat, 17 Aug 2013 19:25:35 +0500</pubDate>
      <link>http://www.kiss-android.com/android-run-app-step-by-step-guide.jsp</link>
      <author>praveen@kiss-android.com</author>
      <description><![CDATA[<strong>Running the App in the emulator/AVD(Android Virtual Device)</strong> STEP 1: Create a Project 
<p>STEP 2: Create an Emulator/AVD </p>
<p>STEP 3: Creating Launch Configurations The Android ADT(Android Development Tools) gives you two options for creating launch configurations:</p>]]></description>
    </item>
    <item>
      <title>Android manifest file information</title>
      <pubDate>Sat, 17 Aug 2013 19:28:39 +0500</pubDate>
      <link>http://www.kiss-android.com/android-manifest-file-information.jsp</link>
      <author>praveen@kiss-android.com</author>
      <description><![CDATA[The Android manifest file is stored at the root of your project and is named AndroidManifest.xml. Every application must have an Android manifest file in its root directory. 
<p>&nbsp;The Android manifest file is the central configuration file for an Android application.</p><MANIFEST android:versionName="1.0" android:versionCode="1" package="com.pd.android" xmlns:android="http://schemas.android.com/apk/res/android"><USES-SDK android:targetSdkVersion="15" android:minSdkVersion="8" /><aPPLICATION android:theme="@style/AppTheme" android:label="@string/app_name" android:icon="@drawable/ic_launcher"><aCTIVITY android:label="@string/title_activity_main" android:name=".MainActivity"><INTENT-FILTER><aCTION android:name="android.intent.action.MAIN" /><CATEGORY android:name="android.intent.category.LAUNCHER" /></INTENT-FILTER></aCTIVITY></aPPLICATION></MANIFEST>]]></description>
    </item>
  </channel>
</rss>