<?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>Android &#8211; Hamza Siddiqui</title>
	<atom:link href="https://www.mhamzas.com/blog/category/android/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.mhamzas.com</link>
	<description>4x Salesforce MVP &#124; 26x Certified &#124; Salesforce App &#38; System Architect</description>
	<lastBuildDate>Thu, 09 Jan 2020 15:01:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
<site xmlns="com-wordpress:feed-additions:1">233526040</site>	<item>
		<title>My Blog Wins a Spot in the Top 75 Salesforce Developer Blogs</title>
		<link>https://www.mhamzas.com/blog/2020/01/09/my-blog-wins-a-spot-in-the-top-75-salesforce-developer-blogs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-blog-wins-a-spot-in-the-top-75-salesforce-developer-blogs</link>
					<comments>https://www.mhamzas.com/blog/2020/01/09/my-blog-wins-a-spot-in-the-top-75-salesforce-developer-blogs/#comments</comments>
		
		<dc:creator><![CDATA[hamza]]></dc:creator>
		<pubDate>Thu, 09 Jan 2020 14:53:19 +0000</pubDate>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Marketing Cloud]]></category>
		<category><![CDATA[Mulesoft]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[top 75 SF blogs]]></category>
		<guid isPermaLink="false">https://www.mhamzas.com/?p=3062</guid>

					<description><![CDATA[My blog is selected as one of the Top 75 Salesforce Developer Blogs! This is the most comprehensive list of best Salesforce Developer blogs on the internet and I’m honored to have become part of this elite list!  Feedspot expert review team has done <br /><a href="https://www.mhamzas.com/blog/2020/01/09/my-blog-wins-a-spot-in-the-top-75-salesforce-developer-blogs/" class="more-link btn btn-primary">Read More</a>]]></description>
										<content:encoded><![CDATA[
<p>My blog is selected as one of the Top 75 Salesforce Developer Blogs! </p>



<p>This is the most comprehensive list of best Salesforce Developer blogs on the internet and I’m honored to have become part of this elite list!  <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://blog.feedspot.com/salesforce_developer_blogs/" target="_blank">Feedspot</a> expert review team has done a lot of research, reviews, analysis to rank these blogs.</p>



<p>These blogs are ranked based on the following criteria:</p>



<ul class="wp-block-list"><li>Google reputation and Google search ranking</li><li>Influence and popularity on&nbsp;<a href="https://www.facebook.com/sfdcFanBoy/" target="_blank" rel="noreferrer noopener">Facebook</a>,&nbsp;<a href="https://twitter.com/sfdcFanBoy" target="_blank" rel="noreferrer noopener">Twitter</a>, and other social media sites</li><li>Quality and consistency of posts.</li><li>Feedspot’s editorial team and expert review</li></ul>



<p>  You can have a look at the full list by clicking <a rel="noreferrer noopener" href="https://blog.feedspot.com/salesforce_developer_blogs" target="_blank"><strong>here</strong></a>. </p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.mhamzas.com/blog/2020/01/09/my-blog-wins-a-spot-in-the-top-75-salesforce-developer-blogs/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3062</post-id>	</item>
		<item>
		<title>Installing ADB on macOS</title>
		<link>https://www.mhamzas.com/blog/2019/09/21/installing-adb-on-macos/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-adb-on-macos</link>
					<comments>https://www.mhamzas.com/blog/2019/09/21/installing-adb-on-macos/#comments</comments>
		
		<dc:creator><![CDATA[hamza]]></dc:creator>
		<pubDate>Sat, 21 Sep 2019 09:30:19 +0000</pubDate>
				<category><![CDATA[Android]]></category>
		<guid isPermaLink="false">https://www.mhamzas.com/?p=2972</guid>

					<description><![CDATA[This has been a mystery to install ADB on MacOS as you can find many blogs and tutorials for installing adb on Windows specially on forums like xda but there is very little knowledge available for macOS. There are 3 options available <br /><a href="https://www.mhamzas.com/blog/2019/09/21/installing-adb-on-macos/" class="more-link btn btn-primary">Read More</a>]]></description>
										<content:encoded><![CDATA[
<p>This has been a mystery to install ADB on MacOS as you can find many blogs and tutorials for installing adb on Windows specially on forums like xda but there is very little knowledge available for macOS.</p>



<p>There are 3 options available for you to install ADB on macOS</p>



<h3 class="wp-block-heading">Option 1 &#8211; Using Homebrew</h3>



<p>This is the easiest way and will provide automatic updates.</p>



<ol class="wp-block-list"><li>Install&nbsp;<a href="http://brew.sh/">homebrew</a><code>ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"</code></li><li>Install adb<code>brew cask install android-platform-tools</code></li><li>Start using adb<code>adb devices</code></li></ol>



<h3 class="wp-block-heading">Option 2 &#8211; Manually (just the platform tools)</h3>



<p>This is the easiest way to get a manual installation of ADB and Fastboot.</p>



<ol class="wp-block-list"><li>Delete your old installation&nbsp;<em>(optional)</em><code>rm -rf ~/.android-sdk-macosx/</code></li><li>Navigate to&nbsp;<a href="https://developer.android.com/studio/releases/platform-tools.html">https://developer.android.com/studio/releases/platform-tools.html</a>&nbsp;and click on the&nbsp;<code>SDK Platform-Tools for Mac</code>&nbsp;link.</li><li>Go to your Downloads folder<code>cd ~/Downloads/</code></li><li>Unzip the tools you downloaded<code>unzip platform-tools-latest*.zip </code></li><li>Move them somewhere you won&#8217;t accidentally delete them<code>mkdir ~/.android-sdk-macosx
mv platform-tools/ ~/.android-sdk-macosx/platform-tools</code></li><li>Add&nbsp;<code>platform-tools</code>&nbsp;to your path<code>echo 'export PATH=$PATH:~/.android-sdk-macosx/platform-tools/' &gt;&gt; ~/.bash_profile</code></li><li>Refresh your bash profile (or restart your terminal app)<code>source ~/.bash_profile</code></li><li>Start using adb<code>adb devices</code></li></ol>



<h3 class="wp-block-heading">Option 3 &#8211; Manually (with SDK Manager)</h3>



<ol class="wp-block-list"><li>Delete your old installation&nbsp;<em>(optional)</em><code>rm -rf ~/.android-sdk-macosx/</code></li><li>Download the Mac SDK Tools from the Android developer site under&nbsp;<a href="http://developer.android.com/sdk/index.html#mac-tools">&#8220;Get just the command line tools&#8221;</a>. Make sure you save them to your Downloads folder.</li><li>Go to your Downloads folder<code>cd ~/Downloads/</code></li><li>Unzip the tools you downloaded<code>unzip tools_r*-macosx.zip </code></li><li>Move them somewhere you won&#8217;t accidentally delete them<code>mkdir ~/.android-sdk-macosx
mv tools/ ~/.android-sdk-macosx/tools</code></li><li>Run the SDK Manager<code>sh ~/.android-sdk-macosx/tools/android</code></li><li>Uncheck everything but&nbsp;<code>Android SDK Platform-tools</code>&nbsp;<em>(optional)</em></li></ol>



<div class="wp-block-image"><figure class="aligncenter"><a href="https://i0.wp.com/i.stack.imgur.com/H2p4V.png?ssl=1"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/i.stack.imgur.com/H2p4V.png?w=640&#038;ssl=1" alt="enter image description here"/></a></figure></div>



<ol class="wp-block-list"><li>Click&nbsp;<code>Install Packages</code>, accept licenses, click&nbsp;<code>Install</code>. Close the SDK Manager window.</li></ol>



<div class="wp-block-image"><figure class="aligncenter"><a href="https://i0.wp.com/i.stack.imgur.com/ojZVT.png?ssl=1"><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/i.stack.imgur.com/ojZVT.png?w=640&#038;ssl=1" alt="enter image description here"/></a></figure></div>



<ol class="wp-block-list"><li>Add <code>platform-tools</code> to your path<code>echo 'export PATH=$PATH:~/.android-sdk-macosx/platform-tools/' >> ~/.bash_profile</code></li><li>Refresh your bash profile (or restart your terminal app)<code>source ~/.bash_profile</code></li><li>Start using adb<code>adb devices</code></li></ol>



<p>Source : <a href="https://stackoverflow.com/questions/31374085/installing-adb-on-macos">https://stackoverflow.com/questions/31374085/installing-adb-on-macos</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.mhamzas.com/blog/2019/09/21/installing-adb-on-macos/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2972</post-id>	</item>
	</channel>
</rss>
