<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>monetize Archives -</title>
	<atom:link href="https://mitindia.in/tag/monetize/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/monetize/</link>
	<description></description>
	<lastBuildDate>Mon, 11 Jul 2016 11:58:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>monetize Archives -</title>
	<link>https://mitindia.in/tag/monetize/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Android</title>
		<link>https://mitindia.in/android/</link>
					<comments>https://mitindia.in/android/#comments</comments>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Fri, 08 Jul 2016 05:21:58 +0000</pubDate>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[mobile app]]></category>
		<category><![CDATA[mobile os]]></category>
		<category><![CDATA[monetize]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=284</guid>

					<description><![CDATA[<p>Android is an open source operating system for mobile and other electronic gadgets including some laptop. The Android operating system software stack consists of Java applications running on a Java based object oriented application framework on top of Java core libraries running on a Dalvik virtual machine featuring JIT compilation. Basics of Android: 1) Open [&#8230;]</p>
<p>The post <a href="https://mitindia.in/android/">Android</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" class="wp-image-286 alignright" src="http://www.mitindia.in/wp-content/uploads/2016/07/Android-264x300.jpg" alt="Android " width="150" height="170" srcset="https://mitindia.in/wp-content/uploads/2016/07/Android-264x300.jpg 264w, https://mitindia.in/wp-content/uploads/2016/07/Android.jpg 331w" sizes="(max-width: 150px) 100vw, 150px" />Android is an open source operating system for mobile and other electronic gadgets including some laptop.<br />
The Android operating system software stack consists of Java applications running on a Java based object oriented application framework on top of Java core libraries running on a Dalvik virtual machine featuring JIT compilation.</p>
<p>Basics of Android:<br />
1) Open source OS<br />
2) Uses Linux kernel<br />
3) Optimized for limited-resource environment<br />
4) Apps typically written in Java<br />
5) Apps run on the Dalvik Virtual Machine<br />
6) Not a JVM, but works similarly from developer’s point of view<br />
7) Usually one app per DVM<br />
8) Each DVM runs under Linux as a separate user<br />
9)App permissions set at install time<br />
10) Possible to use C or C++ compiled to machine code, but still runs on VM.</p>
<p>Standard development environment is Eclipse + Android Development Tools plugin + Android SDK or Android Studio, which is new IDE from Google for developer and Development requires either an Android OS device or an emulator Emulator has limitations: Performance is poor Camera, etc., simulated using your computer’s hardware No real phone calls or texts GPS data, battery readings, etc. must be simulated Real device is affected by specific hardware and software configuration.<br />
Android installation</p>
<p>android studio can be downloaded from <a href="https://developer.android.com/sdk/index.html">here </a>and to set up android on windows machine, follow the steps.</p>
<ol>
<li>Click on .exe file to start setup.<br />
2. Follow steps as mentioned on the setup screens.3. Set Environment variables for JAVA:- Select Start menu &gt; Computer &gt; System Properties &gt; Advanced System Properties. Then open Advanced tab &gt; Environment Variables and add a new system variable JAVA_HOME that points to your JDK folder, for example C:\Program Files\Java\jdk1.2</li>
</ol>
<p>creating first android program/app</p>
<p>Steps to create your first Android Program/App:-</p>
<p>1) Application Name: application name is nothing but the name of your app. This name is visible on the screen when the app is installed. The application name is also shown in Google Play Store when you upload your application.</p>
<p>2) Project Name: Project name is the name of your project that gets created in eclipse. You can give any name to your project. Package Name: This is very important. Package name is used to uniquely identify your application on Play Store. You should follow the java package convention for the package name . The package name is not shown to the user but should not change ever. A good approach to choose package name is to use the reverse of your company domain name. For example :- com.mitindia</p>
<p>3) Min Required SDK: As you might know, Android started with version 1.5 and its current version is 5.0 These numbers represents different flavors of Android, like 2.3 is termed Gingerbread, 4.1 as Ice Cream Sandwich etc. These names are used for marketing the OS, while version numbers are of interest to developers. Min Required SDK field gives you the flexibility to decide which version of android at minimum you want to support. For example, if you create an application for android 2.3 it will work on android 4.4. In general, it is advisable to have minimum support of 2.3.3 API Version 9.</p>
<p>4) Target SDK: This setting tells android that even though your app will be able to run on its previous android version, but it is explicitly tested with version specified here in this field.</p>
<p>5) Compile With: This option gives lets you choose the version of SDK you want to compile with. Typically,the highest version which is available in your ADT should be chosen here. This will compile your app with the latest code and optimizations.</p>
<p>6) Theme: If you are creating apps for version 4.X and above you can have an application wide theme. These themes are nothing but some pre defined color schemes, which you can use to improve your application&#8217;s User Interface.</p>
<p><a href="http://www.mitindia.in/2016/06/28/android-program-sum-of-2-numbers/">SUM of 2 Numbers programs using Android</a></p>
<p>for more detail you can browse <a href="https://developer.android.com/training/basics/firstapp/index.html">here</a></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fandroid%2F&amp;linkname=Android" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fandroid%2F&amp;linkname=Android" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fandroid%2F&#038;title=Android" data-a2a-url="https://mitindia.in/android/" data-a2a-title="Android"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/android/">Android</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mitindia.in/android/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Monetize android app</title>
		<link>https://mitindia.in/monetize-android-app/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 16 Jun 2016 04:21:36 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[android app]]></category>
		<category><![CDATA[monetize]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=30</guid>

					<description><![CDATA[<p>How to earn money from Android mobile app? Before we begin, let&#8217;s first create an Android mobile app here. After creating an App for Android mobile device, Just follow below steps. 1. Download the app to your local machine(PC), if the app is created using online tools or from androidcreator.com, otherwise simply make .apk file [&#8230;]</p>
<p>The post <a href="https://mitindia.in/monetize-android-app/">Monetize android app</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to earn money from Android mobile app?</p>
<p>Before we begin, let&#8217;s first create an Android mobile app <a href="http://www.mitindia.in/2016/06/16/create-android-app-without-coding/" target="_blank">here</a>.</p>
<p>After creating an App for Android mobile device, Just follow below steps.</p>
<p>1. Download the app to your local machine(PC), if the app is created using online tools or from androidcreator.com, otherwise simply make .apk file from Android studio or Eclipse IDE.</p>
<p>2. Login to your Google Play Developer Console Account (after creating <a href="https://play.google.com/apps/publish/" target="_blank">Google Play Developer console</a> only we can able to upload our app on Google Play store and this costs one time fee of US $25)</p>
<p>3. <a href="https://support.google.com/googleplay/android-developer/answer/113469?hl=en" target="_blank">For uploading your app to Google play store, click here</a></p>
<p>4. <a href="http://www.google.com/admob/landing/sign-up-003.html?subid=apac-semexp3-r3&amp;gclid=CjwKEAjwpqq6BRC99aKUkaSjuDsSJAC0pNTVLUp2c2GdwXsxOziZt5nDlA-HSTD1mx4H3GR4hZ4KLRoCF9Xw_wcB" target="_blank">For monetizing, first we need to create AdMob account here. </a></p>
<p>5. Login to your AdMob account and click on &#8220;Monetize&#8221; [follow below image]</p>
<div class="separator"><img decoding="async" class="alignnone" src="https://1.bp.blogspot.com/-ysSo1d2e_PE/V0u0OVfOblI/AAAAAAAABn8/jSIIVvNIXakyqx1LEg_APfVSStYDmgRWgCLcB/s400/admob1.JPG" width="400" height="52" border="0" /></div>
<p>6. Click on &#8220;Monetize new app&#8221;</p>
<div class="separator"><img decoding="async" class="alignnone" src="https://3.bp.blogspot.com/-dpB-KZC66vo/V0u0i__lEGI/AAAAAAAABoA/lzuM2ohiz0EWVKHtg8M8Av1TcwfYaMRawCLcB/s1600/admob2.JPG" width="146" height="100" border="0" /></div>
<p>7. Find your app.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://1.bp.blogspot.com/-r0HiXE4-gO4/V0u04KixBKI/AAAAAAAABoI/ifgCsUuKzv8YJ4OTh6UFlLhWrFdHVn2rgCLcB/s1600/admob3.JPG" width="622" height="95" border="0" /></div>
<p>8. Click on &#8220;Add App&#8221;</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://3.bp.blogspot.com/-zTqxZVkvYxo/V0u1PZrZOGI/AAAAAAAABoQ/ztDBUyHqtRwsDvZ0gVV39wFwibofVcw9gCLcB/s1600/admob4.JPG" width="200" height="116" border="0" /></div>
<p>9. Copy the Ad Unit ad [looks like following image]</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://1.bp.blogspot.com/-z8x-PkwXX4Y/V0u2OcNxfSI/AAAAAAAABog/sJT0bxSXQ9cYVZZvif9RGJAD6go_YmJIwCLcB/s1600/admob5.JPG" width="529" height="69" border="0" /></div>
<p>10. The above Ad Unit ID should be copied and pasted in Android Creator Ad section, follow below screen shot. [Now login to android creator and select your app then click on &#8220;Ads&#8221;]</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://4.bp.blogspot.com/-D6HkjRYGWic/V0u2u4n6lhI/AAAAAAAABoo/nu06FuUjyuA4L4PJ1k4ncVgUppCxCFaNQCLcB/s1600/admob6.JPG" width="156" height="238" border="0" /></div>
<p>11. Now paste your Ad Mob ad unit code here.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://4.bp.blogspot.com/-bdnJTghXyu4/V0u3XIc80nI/AAAAAAAABo0/_7WMenIARX4DHKgy3aCGYc1K3npGnFIpwCLcB/s1600/admob7.JPG" width="536" height="171" border="0" /></div>
<p>12. After adding Ad Mob ad unit id, Now download app from AndroidCreator.com to your local machine(PC) then follow step 3 to upload your app to Google Play store.</p>
<p>Now your app is ready to earn money based on ads displayed as banner ads or interstitial ads.</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fmonetize-android-app%2F&amp;linkname=Monetize%20android%20app" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fmonetize-android-app%2F&amp;linkname=Monetize%20android%20app" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fmonetize-android-app%2F&#038;title=Monetize%20android%20app" data-a2a-url="https://mitindia.in/monetize-android-app/" data-a2a-title="Monetize android app"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/monetize-android-app/">Monetize android app</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
