{"id":4250,"date":"2022-05-31T15:00:12","date_gmt":"2022-05-31T15:00:12","guid":{"rendered":"https:\/\/ionicframework.com\/blog\/?p=4250"},"modified":"2022-10-27T19:22:44","modified_gmt":"2022-10-27T19:22:44","slug":"fantastic-mobile-dev-tools-and-where-to-find-them","status":"publish","type":"post","link":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them","title":{"rendered":"Fantastic Mobile Dev Tools, and Where to Find Them!"},"content":{"rendered":"<p>As a web developer first jumping into mobile development with Capacitor, the mobile ecosystem can be a bit overwhelming. Luckily, we\u2019ve got you covered with a list of 6 excellent mobile dev tools that you can use to help take your development to the next level.<\/p>\n<p><!--more--><\/p>\n<h2>Magical Android Tools \ud83e\ude84<\/h2>\n<p>First, let\u2019s focus on Android tools. There are several Android mobile dev tools that I make sure to immediately install when I get a new development environment setup. After <a href=\"https:\/\/developer.android.com\/studio\/install\">installing Android Studio<\/a> and <a href=\"https:\/\/developer.android.com\/studio\/run\/managing-avds\">creating an emulator with the Android Virtual Device Manager<\/a> these three tools are some that greatly speed up development and testing time.<\/p>\n<h3>scrcpy<\/h3>\n<p><a href=\"https:\/\/github.com\/Genymobile\/scrcpy\">scrcpy<\/a> is a free, open-source, command-line tool built by Genymobile that allows you to flawlessly control your Android device over USB. If you\u2019ve ever used the Android emulator that comes with Android Studio, you may have run into <a href=\"https:\/\/stackoverflow.com\/questions\/1554099\/why-is-the-android-emulator-so-slow-how-can-we-speed-up-the-android-emulator\">performance<\/a> <a href=\"https:\/\/stackoverflow.com\/questions\/52600963\/why-android-studio-emulator-is-extremely-slow\">issues<\/a> and general clunkiness. Scrcpy allows you to bypass the Android emulator and mirror your Android device\u2019s screen. With low latency streaming up to 1080p resolution at 120 frames per second, it will be much more performant than running the built-in Android emulator.<\/p>\n<p>The CLI is available on many different package managers, such as <code>apt<\/code>, <code>pacman<\/code>, <code>choco<\/code>, <code>scoop<\/code>, <code>brew<\/code>, or <code>macports<\/code> to name a few. Once you\u2019ve installed scrcpy, plug in your Android device and run the following command.<\/p>\n<pre><code class=\"language-bash\">scrcpy\n<\/code><\/pre>\n<p>With that, you\u2019ve got your Android device mirrored to your computer and a much better device to test on than the Android emulator.<\/p>\n<h3>Android Debugging Bridge (adb)<\/h3>\n<p>The <a href=\"https:\/\/developer.android.com\/studio\/command-line\/adb\">adb<\/a> is a CLI that allows you to easily run common debugging tasks on your Android device or emulator by running a command via the terminal. It actually comes installed with Android Studio but isn\u2019t automatically set up in your shell\u2019s <code>$PATH<\/code> variable. The <code>adb<\/code> utility is installed in the \u201cplatform-tools\u201d folder where the rest of the Android SDK is installed. For example, my <code>adb<\/code> CLI is located in <code>\/Users\/Thomas\/Library\/Android\/sdk\/adb<\/code>. You can follow <a href=\"https:\/\/lifehacker.com\/the-easiest-way-to-install-androids-adb-and-fastboot-to-1586992378\">this great guide on how to add adb to your PATH variable<\/a> so you can use it more easily in your terminal.<\/p>\n<p>What can <code>adb<\/code> do though? With the debug bridge you can\u2026<br \/>\n&#8211; Allow my phone to connect to my computer\u2019s localhost with <code>adb reverse<\/code> (great for live reloading!)<br \/>\n&#8211; Copy files to and from my device <code>adb push<\/code> and <code>adb pull<\/code>.<br \/>\n&#8211; Create a screen recording or screenshot of my phone <code>adb shell screenrecord<\/code>.<br \/>\n&#8211; Run shell commands on my device with <code>adb shell<\/code>.<br \/>\n&#8211; Connect wirelessly to your phone with <code>adb tcpip<\/code>.<\/p>\n<p>You can get a full list of all of the commands you can run via the Android Debugging Bridge by running <code>adb --help<\/code>.<\/p>\n<h3>Inspect.dev<\/h3>\n<p><a href=\"https:\/\/inspect.dev\">Inspect.dev<\/a> is a paid mobile dev tool that allows you to easily debug your Capacitor application using the <a href=\"https:\/\/developer.chrome.com\/docs\/devtools\/\">Chrome DevTools<\/a> you already use when debugging your application. While you can already use <a href=\"https:\/\/ionicframework.com\/docs\/troubleshooting\/debugging\">Chrome or Safari to debug your application<\/a>, Inspect adds a few extra tools such as<br \/>\n&#8211; iOS app inspection from Windows<br \/>\n&#8211; Chrome DevTools instead of Safari DevTools for iOS apps<br \/>\n&#8211; Built-in React, Angular, and Due dev tools (coming soon!)<\/p>\n<p>Inspect has a 14-day free trial, and then costs $49\/year. The free mobile dev tools that come with Chrome and Safari are great, but Inspect bundles them together into a single, easy-to-use application. Check out <a href=\"https:\/\/inspect.dev\/pricing\">the Inspect.dev pricing page<\/a> to get started with a free trial!<\/p>\n<h2>Fantastic iOS Tools \u2728<\/h2>\n<p>Android has some pretty great mobile dev tools to showcase, but that doesn\u2019t mean iOS is lacking in useful equivalents. After you\u2019ve <a href=\"https:\/\/apps.apple.com\/us\/app\/xcode\/id497799835?mt=12\">installed Xcode<\/a>, a lot of command-line tools are set up for you without even realizing it. With no additional setup and a little bit of knowledge, you\u2019ll be working with iOS dev tools like a pro!<\/p>\n<h3>simctl<\/h3>\n<p><code>simctl<\/code> is Apple\u2019s CLI for interacting with iOS simulators. You can do a lot of interesting things like <code>simctl<\/code> like<br \/>\n&#8211; Running an installed app with <code>xcrun simctl spawn<\/code><br \/>\n&#8211; Triggering an iCloud sync with <code>xcrun simctl icloud_sync<\/code><br \/>\n&#8211; Testing push notifications with <code>xcrun simctl push<\/code><br \/>\n&#8211; Adding test photos and videos to a simulator with <code>xcrun simctl add media<\/code><\/p>\n<p>And more!<\/p>\n<p><code>simctl<\/code> is automatically installed when installing Xcode. You can run it by using \u201cXcode run\u201d (xcrun) and using the format <code>xcrun simctl<\/code>. For more info on each command, you can run <code>xcrun simctl  --help<\/code>.<\/p>\n<h3>xcodes<\/h3>\n<p>Sometimes, moving between major versions of Xcode can be a real pain. Maybe you have a library that doesn\u2019t work with the newest version of Xcode yet. Or for some reason, your app builds with an older version of Xcode but not a newer one. Enter <a href=\"https:\/\/github.com\/RobotsAndPencils\/xcodes\">xcodes<\/a>. That is Xcode with an s.<\/p>\n<p><code>xcodes<\/code> is another command-line tool that helps you easily install and switch between multiple versions of Xcode. The easiest way of installing Xcode is to install it via the App Store. However, downgrading requires you to go to <a href=\"https:\/\/developer.apple.com\/xcode\/resources\/\">the additional resources section on the Apple Developer page<\/a>, pick the correct version, download, and install. With <code>xcodes<\/code>, it\u2019s as easy as <code>xcodes install<\/code>.<\/p>\n<p>You can install the <code>xcodes<\/code> via homebrew using the following command:<\/p>\n<pre><code class=\"language-bash\">brew install robotsandpencils\/made\/xcodes\n<\/code><\/pre>\n<p>You can also install <a href=\"https:\/\/github.com\/RobotsAndPencils\/XcodesApp\">Xcodes.App, the related GUI<\/a>, to install multiple versions of Xcode as well. Both are easy-to-use tools that will save a ton of time waiting when migrating between Xcode versions.<\/p>\n<h3>Quicktime Media Player<\/h3>\n<p>Did you know that QuickTime media player has an option to mirror your iPhone screen on your Mac? While it\u2019s not as fully featured as <a href=\"https:\/\/github.com\/Genymobile\/scrcpy\">scrcpy<\/a>, it <em>is<\/em> useful for making recordings of your app in action on a physical device. Plus, it\u2019s preinstalled on most Macs already, so you won\u2019t need to install any additional software. To use this helpful feature you do the following:<br \/>\n1. Connect your iPhone to your Mac with a USB cable<br \/>\n2. Open the QuickTime Player app<br \/>\n3. On the top menubar, click File &gt; New Movie Recording<br \/>\n4. In the QuickTime window click on the down arrow by the red record button.<br \/>\n5. Select your iPhone from the dropdown.<\/p>\n<p>And with that, you have a mirrored iPhone ready and viewable on your Mac.<\/p>\n<h2>Integrate these tools into your Capacitor workflow<\/h2>\n<p>If you\u2019re a web developer using <a href=\"https:\/\/capacitorjs.com\/docs\/getting-started\">Capacitor for the first time<\/a>, it can feel a bit daunting to jump into a new tech space you\u2019re less familiar with. All of the tools I\u2019ve listed above are free and work great with any mobile project; including Capacitor. If you have any mobile dev tools you like to use in your projects, <a href=\"https:\/\/forum.ionicframework.com\/\">join our forum<\/a> or <a href=\"https:\/\/discord.gg\/UPYYRhtyzp\">Discord server<\/a> and tell our community. We\u2019d love to hear what tools you use to level up your mobile development.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As a web developer first jumping into mobile development with Capacitor, the mobile ecosystem can be a bit overwhelming. Luckily, we\u2019ve got you covered with a list of 6 excellent mobile dev tools that you can use to help take your development to the next level.<\/p>\n","protected":false},"author":90,"featured_media":4251,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"publish_to_discourse":"0","publish_post_category":"26","wpdc_auto_publish_overridden":"","wpdc_topic_tags":"","wpdc_pin_topic":"","wpdc_pin_until":"","discourse_post_id":"547757","discourse_permalink":"https:\/\/forum.ionicframework.com\/t\/fantastic-mobile-dev-tools-and-where-to-find-them\/223751","wpdc_publishing_response":"","wpdc_publishing_error":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[121],"tags":[151],"class_list":["post-4250","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-engineering","tag-capacitor"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.0 (Yoast SEO v23.0) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Fantastic Mobile Dev Tools, and Where to Find Them! - Ionic Blog<\/title>\n<meta name=\"description\" content=\"The mobile ecosystem can be a bit overwhelming. Luckily, we\u2019ve compiled a list of mobile dev tools that you can use to help make your app.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fantastic Mobile Dev Tools, and Where to Find Them!\" \/>\n<meta property=\"og:description\" content=\"The mobile ecosystem can be a bit overwhelming. Luckily, we\u2019ve compiled a list of mobile dev tools that you can use to help make your app.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them\" \/>\n<meta property=\"og:site_name\" content=\"Ionic Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-31T15:00:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-27T19:22:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"880\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Thomas Vidas\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ThomasVidas\" \/>\n<meta name=\"twitter:site\" content=\"@ionicframework\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thomas Vidas\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#article\",\"isPartOf\":{\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them\"},\"author\":{\"name\":\"Thomas Vidas\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/2191fc27ddf1fb0e68acad42e1f71bd2\"},\"headline\":\"Fantastic Mobile Dev Tools, and Where to Find Them!\",\"datePublished\":\"2022-05-31T15:00:12+00:00\",\"dateModified\":\"2022-10-27T19:22:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them\"},\"wordCount\":1080,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/ionic.io\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png\",\"keywords\":[\"Capacitor\"],\"articleSection\":[\"Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them\",\"url\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them\",\"name\":\"Fantastic Mobile Dev Tools, and Where to Find Them! - Ionic Blog\",\"isPartOf\":{\"@id\":\"https:\/\/ionic.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#primaryimage\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png\",\"datePublished\":\"2022-05-31T15:00:12+00:00\",\"dateModified\":\"2022-10-27T19:22:44+00:00\",\"description\":\"The mobile ecosystem can be a bit overwhelming. Luckily, we\u2019ve compiled a list of mobile dev tools that you can use to help make your app.\",\"breadcrumb\":{\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#primaryimage\",\"url\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png\",\"contentUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png\",\"width\":1600,\"height\":880,\"caption\":\"A picture of a phone with the screen turned off\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ionic.io\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fantastic Mobile Dev Tools, and Where to Find Them!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ionic.io\/blog\/#website\",\"url\":\"https:\/\/ionic.io\/blog\/\",\"name\":\"ionic.io\/blog\",\"description\":\"Build amazing native and progressive web apps with the web\",\"publisher\":{\"@id\":\"https:\/\/ionic.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ionic.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/ionic.io\/blog\/#organization\",\"name\":\"Ionic\",\"url\":\"https:\/\/ionic.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png\",\"contentUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png\",\"width\":1920,\"height\":854,\"caption\":\"Ionic\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/ionicframework\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/2191fc27ddf1fb0e68acad42e1f71bd2\",\"name\":\"Thomas Vidas\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2021\/11\/avatar-thomas-150x150.jpeg\",\"contentUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2021\/11\/avatar-thomas-150x150.jpeg\",\"caption\":\"Thomas Vidas\"},\"sameAs\":[\"https:\/\/x.com\/ThomasVidas\"],\"url\":\"https:\/\/ionic.io\/blog\/author\/thomasionic-io\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Fantastic Mobile Dev Tools, and Where to Find Them! - Ionic Blog","description":"The mobile ecosystem can be a bit overwhelming. Luckily, we\u2019ve compiled a list of mobile dev tools that you can use to help make your app.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them","og_locale":"en_US","og_type":"article","og_title":"Fantastic Mobile Dev Tools, and Where to Find Them!","og_description":"The mobile ecosystem can be a bit overwhelming. Luckily, we\u2019ve compiled a list of mobile dev tools that you can use to help make your app.","og_url":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them","og_site_name":"Ionic Blog","article_published_time":"2022-05-31T15:00:12+00:00","article_modified_time":"2022-10-27T19:22:44+00:00","og_image":[{"width":1600,"height":880,"url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png","type":"image\/png"}],"author":"Thomas Vidas","twitter_card":"summary_large_image","twitter_creator":"@ThomasVidas","twitter_site":"@ionicframework","twitter_misc":{"Written by":"Thomas Vidas","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#article","isPartOf":{"@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them"},"author":{"name":"Thomas Vidas","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/2191fc27ddf1fb0e68acad42e1f71bd2"},"headline":"Fantastic Mobile Dev Tools, and Where to Find Them!","datePublished":"2022-05-31T15:00:12+00:00","dateModified":"2022-10-27T19:22:44+00:00","mainEntityOfPage":{"@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them"},"wordCount":1080,"commentCount":0,"publisher":{"@id":"https:\/\/ionic.io\/blog\/#organization"},"image":{"@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#primaryimage"},"thumbnailUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png","keywords":["Capacitor"],"articleSection":["Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them","url":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them","name":"Fantastic Mobile Dev Tools, and Where to Find Them! - Ionic Blog","isPartOf":{"@id":"https:\/\/ionic.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#primaryimage"},"image":{"@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#primaryimage"},"thumbnailUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png","datePublished":"2022-05-31T15:00:12+00:00","dateModified":"2022-10-27T19:22:44+00:00","description":"The mobile ecosystem can be a bit overwhelming. Luckily, we\u2019ve compiled a list of mobile dev tools that you can use to help make your app.","breadcrumb":{"@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#primaryimage","url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png","contentUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png","width":1600,"height":880,"caption":"A picture of a phone with the screen turned off"},{"@type":"BreadcrumbList","@id":"https:\/\/ionic.io\/blog\/fantastic-mobile-dev-tools-and-where-to-find-them#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ionic.io\/blog"},{"@type":"ListItem","position":2,"name":"Fantastic Mobile Dev Tools, and Where to Find Them!"}]},{"@type":"WebSite","@id":"https:\/\/ionic.io\/blog\/#website","url":"https:\/\/ionic.io\/blog\/","name":"ionic.io\/blog","description":"Build amazing native and progressive web apps with the web","publisher":{"@id":"https:\/\/ionic.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ionic.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ionic.io\/blog\/#organization","name":"Ionic","url":"https:\/\/ionic.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png","contentUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png","width":1920,"height":854,"caption":"Ionic"},"image":{"@id":"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/ionicframework"]},{"@type":"Person","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/2191fc27ddf1fb0e68acad42e1f71bd2","name":"Thomas Vidas","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2021\/11\/avatar-thomas-150x150.jpeg","contentUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2021\/11\/avatar-thomas-150x150.jpeg","caption":"Thomas Vidas"},"sameAs":["https:\/\/x.com\/ThomasVidas"],"url":"https:\/\/ionic.io\/blog\/author\/thomasionic-io"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2022\/05\/mobiletools-feature-image.png","_links":{"self":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts\/4250","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/users\/90"}],"replies":[{"embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/comments?post=4250"}],"version-history":[{"count":0,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts\/4250\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/media\/4251"}],"wp:attachment":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/media?parent=4250"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/categories?post=4250"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/tags?post=4250"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}