{"id":3081,"date":"2020-09-30T15:47:36","date_gmt":"2020-09-30T13:47:36","guid":{"rendered":"https:\/\/www.robinglauser.ch\/blog\/?p=3081"},"modified":"2020-09-30T15:47:40","modified_gmt":"2020-09-30T13:47:40","slug":"automatically-configure-a-lot-of-android-devices","status":"publish","type":"post","link":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/","title":{"rendered":"Automatically configure a lot of Android devices"},"content":{"rendered":"\n<p>Are you getting tired from typing the same login and pressing the same buttons on each device you need to configure? In this article I will describe a way to automatically fill in forms and click buttons on identical android devices.<\/p>\n\n\n\n<p>In my case, it were about 8 Samsung Galaxy Tablets where I needed to configure the wireless. Now you could spend 10 minutes per device meticulously putting in the password via the touchscreen. And spend an hour just doing that.<\/p>\n\n\n\n<p>Or you could invest that time into learning how to automate it and learn something new.<\/p>\n\n\n\n<p>For this to work you need the following things:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>A bash shell (Linux, Mac, <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/wsl\/install-win10\">WSL on Windows<\/a>)<\/li><li><a href=\"https:\/\/developer.android.com\/studio\/releases\/platform-tools\">adb installed in your $PATH<\/a><\/li><li>Your Android Device connected to your computer via USB and <a href=\"https:\/\/developer.android.com\/studio\/command-line\/adb\">the developer mode turned on and verified.<\/a><\/li><\/ul>\n\n\n\n<p>Now open your favorite text editor and start writing your script:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/bin\/bash\n# Input Text %s is SPACE\nadb shell input text \"insert%syour%stext%shere\"\n\n# Event codes:\nadb shell input keyevent 82\n\n# Tap x, y position\nadb shell input tap 500 1450\n\n# Swipe X1 Y1 X2 Y2 &#91;duration(ms)]\nadb shell input swipe 100 500 100 1450 100\n\n# LongPress X Y:\nadb shell input swipe 100 500 100 500 250<\/code><\/pre>\n\n\n\n<p>If you now modify and run this script you can make it do anything on your android device. You have to adjust it for different devices and software versions, as the x and y positions change between the versions.<\/p>\n\n\n\n<p>What would be awesome would be a tool to auto generate those scripts by going through the actions once. <\/p>\n\n\n\n<p>List of keyevent codes (All codes can be found <a href=\"https:\/\/developer.android.com\/reference\/android\/view\/KeyEvent.html\">here<\/a>):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>0 -->  \"KEYCODE_0\" \n1 -->  \"KEYCODE_SOFT_LEFT\" \n2 -->  \"KEYCODE_SOFT_RIGHT\" \n3 -->  \"KEYCODE_HOME\" \n4 -->  \"KEYCODE_BACK\" \n5 -->  \"KEYCODE_CALL\" \n6 -->  \"KEYCODE_ENDCALL\" \n7 -->  \"KEYCODE_0\" \n8 -->  \"KEYCODE_1\" \n9 -->  \"KEYCODE_2\" \n10 -->  \"KEYCODE_3\" \n11 -->  \"KEYCODE_4\" \n12 -->  \"KEYCODE_5\" \n13 -->  \"KEYCODE_6\" \n14 -->  \"KEYCODE_7\" \n15 -->  \"KEYCODE_8\" \n16 -->  \"KEYCODE_9\" \n17 -->  \"KEYCODE_STAR\" \n18 -->  \"KEYCODE_POUND\" \n19 -->  \"KEYCODE_DPAD_UP\" \n20 -->  \"KEYCODE_DPAD_DOWN\" \n21 -->  \"KEYCODE_DPAD_LEFT\" \n22 -->  \"KEYCODE_DPAD_RIGHT\" \n23 -->  \"KEYCODE_DPAD_CENTER\" \n24 -->  \"KEYCODE_VOLUME_UP\" \n25 -->  \"KEYCODE_VOLUME_DOWN\" \n26 -->  \"KEYCODE_POWER\" \n27 -->  \"KEYCODE_CAMERA\" \n28 -->  \"KEYCODE_CLEAR\" \n29 -->  \"KEYCODE_A\" \n30 -->  \"KEYCODE_B\" \n31 -->  \"KEYCODE_C\" \n32 -->  \"KEYCODE_D\" \n33 -->  \"KEYCODE_E\" \n34 -->  \"KEYCODE_F\" \n35 -->  \"KEYCODE_G\" \n36 -->  \"KEYCODE_H\" \n37 -->  \"KEYCODE_I\" \n38 -->  \"KEYCODE_J\" \n39 -->  \"KEYCODE_K\" \n40 -->  \"KEYCODE_L\" \n41 -->  \"KEYCODE_M\" \n42 -->  \"KEYCODE_N\" \n43 -->  \"KEYCODE_O\" \n44 -->  \"KEYCODE_P\" \n45 -->  \"KEYCODE_Q\" \n46 -->  \"KEYCODE_R\" \n47 -->  \"KEYCODE_S\" \n48 -->  \"KEYCODE_T\" \n49 -->  \"KEYCODE_U\" \n50 -->  \"KEYCODE_V\" \n51 -->  \"KEYCODE_W\" \n52 -->  \"KEYCODE_X\" \n53 -->  \"KEYCODE_Y\" \n54 -->  \"KEYCODE_Z\" \n55 -->  \"KEYCODE_COMMA\" \n56 -->  \"KEYCODE_PERIOD\" \n57 -->  \"KEYCODE_ALT_LEFT\" \n58 -->  \"KEYCODE_ALT_RIGHT\" \n59 -->  \"KEYCODE_SHIFT_LEFT\" \n60 -->  \"KEYCODE_SHIFT_RIGHT\" \n61 -->  \"KEYCODE_TAB\" \n62 -->  \"KEYCODE_SPACE\" \n63 -->  \"KEYCODE_SYM\" \n64 -->  \"KEYCODE_EXPLORER\" \n65 -->  \"KEYCODE_ENVELOPE\" \n66 -->  \"KEYCODE_ENTER\" \n67 -->  \"KEYCODE_DEL\" \n68 -->  \"KEYCODE_GRAVE\" \n69 -->  \"KEYCODE_MINUS\" \n70 -->  \"KEYCODE_EQUALS\" \n71 -->  \"KEYCODE_LEFT_BRACKET\" \n72 -->  \"KEYCODE_RIGHT_BRACKET\" \n73 -->  \"KEYCODE_BACKSLASH\" \n74 -->  \"KEYCODE_SEMICOLON\" \n75 -->  \"KEYCODE_APOSTROPHE\" \n76 -->  \"KEYCODE_SLASH\" \n77 -->  \"KEYCODE_AT\" \n78 -->  \"KEYCODE_NUM\" \n79 -->  \"KEYCODE_HEADSETHOOK\" \n80 -->  \"KEYCODE_FOCUS\" \n81 -->  \"KEYCODE_PLUS\" \n82 -->  \"KEYCODE_MENU\" \n83 -->  \"KEYCODE_NOTIFICATION\" \n84 -->  \"KEYCODE_SEARCH\" \n85 -->  \"KEYCODE_MEDIA_PLAY_PAUSE\"\n86 -->  \"KEYCODE_MEDIA_STOP\"\n87 -->  \"KEYCODE_MEDIA_NEXT\"\n88 -->  \"KEYCODE_MEDIA_PREVIOUS\"\n89 -->  \"KEYCODE_MEDIA_REWIND\"\n90 -->  \"KEYCODE_MEDIA_FAST_FORWARD\"\n91 -->  \"KEYCODE_MUTE\"\n92 -->  \"KEYCODE_PAGE_UP\"\n93 -->  \"KEYCODE_PAGE_DOWN\"\n94 -->  \"KEYCODE_PICTSYMBOLS\"\n...\n122 -->  \"KEYCODE_MOVE_HOME\"\n123 -->  \"KEYCODE_MOVE_END\"<\/code><\/pre>\n\n\n\n<p>Source: <br><a href=\"https:\/\/stackoverflow.com\/questions\/7789826\/adb-shell-input-events\">https:\/\/stackoverflow.com\/questions\/7789826\/adb-shell-input-events<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p class=\"excerpt\">Are you getting tired from typing the same login and pressing the same buttons on each device you need to configure? In this article I will describe a way to automatically fill in forms and click buttons on identical android devices. In my case, it were about 8 Samsung Galaxy Tablets where I needed to configure the wireless. Now you &#8230; <a class=\"read-more\" href=\"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":3082,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[45],"tags":[],"class_list":["post-3081","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Automatically configure a lot of Android devices - Robin Glauser<\/title>\n<meta name=\"description\" content=\"Are you getting tired from typing the same login and pressing the same buttons on each device you need to configure? In this article I will describe a way to automatically fill in forms and click buttons on identical android devices.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automatically configure a lot of Android devices - Robin Glauser\" \/>\n<meta property=\"og:description\" content=\"Are you getting tired from typing the same login and pressing the same buttons on each device you need to configure? In this article I will describe a way to automatically fill in forms and click buttons on identical android devices.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/\" \/>\n<meta property=\"og:site_name\" content=\"Robin Glauser\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-30T13:47:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-09-30T13:47:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2019\/09\/IMG_20190903_101011-e1567571535256.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"4032\" \/>\n\t<meta property=\"og:image:height\" content=\"2005\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Robin Glauser\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@robinglauser\" \/>\n<meta name=\"twitter:site\" content=\"@robinglauser\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Robin Glauser\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/\"},\"author\":{\"name\":\"Robin Glauser\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#\\\/schema\\\/person\\\/e1a94504a6ff5171fa13670932514b19\"},\"headline\":\"Automatically configure a lot of Android devices\",\"datePublished\":\"2020-09-30T13:47:36+00:00\",\"dateModified\":\"2020-09-30T13:47:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/\"},\"wordCount\":226,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#\\\/schema\\\/person\\\/e1a94504a6ff5171fa13670932514b19\"},\"image\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/IMG_20190903_101011-e1567571535256.jpg\",\"articleSection\":[\"Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/\",\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/\",\"name\":\"Automatically configure a lot of Android devices - Robin Glauser\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/IMG_20190903_101011-e1567571535256.jpg\",\"datePublished\":\"2020-09-30T13:47:36+00:00\",\"dateModified\":\"2020-09-30T13:47:40+00:00\",\"description\":\"Are you getting tired from typing the same login and pressing the same buttons on each device you need to configure? In this article I will describe a way to automatically fill in forms and click buttons on identical android devices.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/IMG_20190903_101011-e1567571535256.jpg\",\"contentUrl\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/IMG_20190903_101011-e1567571535256.jpg\",\"width\":4032,\"height\":2005},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/2020\\\/09\\\/30\\\/automatically-configure-a-lot-of-android-devices\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automatically configure a lot of Android devices\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/\",\"name\":\"Robin Glauser\",\"description\":\"My Blog about Development, Design and my random thoughts.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#\\\/schema\\\/person\\\/e1a94504a6ff5171fa13670932514b19\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/#\\\/schema\\\/person\\\/e1a94504a6ff5171fa13670932514b19\",\"name\":\"Robin Glauser\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/DSC_1244_small.jpg\",\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/DSC_1244_small.jpg\",\"contentUrl\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/DSC_1244_small.jpg\",\"width\":800,\"height\":530,\"caption\":\"Robin Glauser\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/DSC_1244_small.jpg\"},\"description\":\"I'm a web developer.\",\"sameAs\":[\"https:\\\/\\\/www.robinglauser.ch\",\"https:\\\/\\\/www.instagram.com\\\/robinglauser\\\/\",\"https:\\\/\\\/x.com\\\/robinglauser\"],\"url\":\"https:\\\/\\\/www.robinglauser.ch\\\/blog\\\/author\\\/robin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Automatically configure a lot of Android devices - Robin Glauser","description":"Are you getting tired from typing the same login and pressing the same buttons on each device you need to configure? In this article I will describe a way to automatically fill in forms and click buttons on identical android devices.","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:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/","og_locale":"en_US","og_type":"article","og_title":"Automatically configure a lot of Android devices - Robin Glauser","og_description":"Are you getting tired from typing the same login and pressing the same buttons on each device you need to configure? In this article I will describe a way to automatically fill in forms and click buttons on identical android devices.","og_url":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/","og_site_name":"Robin Glauser","article_published_time":"2020-09-30T13:47:36+00:00","article_modified_time":"2020-09-30T13:47:40+00:00","og_image":[{"width":4032,"height":2005,"url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2019\/09\/IMG_20190903_101011-e1567571535256.jpg","type":"image\/jpeg"}],"author":"Robin Glauser","twitter_card":"summary_large_image","twitter_creator":"@robinglauser","twitter_site":"@robinglauser","twitter_misc":{"Written by":"Robin Glauser","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/#article","isPartOf":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/"},"author":{"name":"Robin Glauser","@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"headline":"Automatically configure a lot of Android devices","datePublished":"2020-09-30T13:47:36+00:00","dateModified":"2020-09-30T13:47:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/"},"wordCount":226,"commentCount":0,"publisher":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"image":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/#primaryimage"},"thumbnailUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2019\/09\/IMG_20190903_101011-e1567571535256.jpg","articleSection":["Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/","url":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/","name":"Automatically configure a lot of Android devices - Robin Glauser","isPartOf":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/#primaryimage"},"image":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/#primaryimage"},"thumbnailUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2019\/09\/IMG_20190903_101011-e1567571535256.jpg","datePublished":"2020-09-30T13:47:36+00:00","dateModified":"2020-09-30T13:47:40+00:00","description":"Are you getting tired from typing the same login and pressing the same buttons on each device you need to configure? In this article I will describe a way to automatically fill in forms and click buttons on identical android devices.","breadcrumb":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/#primaryimage","url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2019\/09\/IMG_20190903_101011-e1567571535256.jpg","contentUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2019\/09\/IMG_20190903_101011-e1567571535256.jpg","width":4032,"height":2005},{"@type":"BreadcrumbList","@id":"https:\/\/www.robinglauser.ch\/blog\/2020\/09\/30\/automatically-configure-a-lot-of-android-devices\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.robinglauser.ch\/blog\/"},{"@type":"ListItem","position":2,"name":"Automatically configure a lot of Android devices"}]},{"@type":"WebSite","@id":"https:\/\/www.robinglauser.ch\/blog\/#website","url":"https:\/\/www.robinglauser.ch\/blog\/","name":"Robin Glauser","description":"My Blog about Development, Design and my random thoughts.","publisher":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.robinglauser.ch\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19","name":"Robin Glauser","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","contentUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","width":800,"height":530,"caption":"Robin Glauser"},"logo":{"@id":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg"},"description":"I'm a web developer.","sameAs":["https:\/\/www.robinglauser.ch","https:\/\/www.instagram.com\/robinglauser\/","https:\/\/x.com\/robinglauser"],"url":"https:\/\/www.robinglauser.ch\/blog\/author\/robin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/3081","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/comments?post=3081"}],"version-history":[{"count":5,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/3081\/revisions"}],"predecessor-version":[{"id":3127,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/3081\/revisions\/3127"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/media\/3082"}],"wp:attachment":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/media?parent=3081"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/categories?post=3081"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/tags?post=3081"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}