{"id":13841635,"url":"https://github.com/framgia/android-emulator-detector","last_synced_at":"2026-01-27T22:43:44.153Z","repository":{"id":44883530,"uuid":"58901145","full_name":"framgia/android-emulator-detector","owner":"framgia","description":"Easy to detect android emulator","archived":false,"fork":false,"pushed_at":"2022-01-20T16:52:26.000Z","size":191,"stargazers_count":437,"open_issues_count":20,"forks_count":98,"subscribers_count":31,"default_branch":"master","last_synced_at":"2025-07-11T13:35:38.895Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/framgia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-05-16T03:34:09.000Z","updated_at":"2025-07-07T01:57:39.000Z","dependencies_parsed_at":"2022-07-21T15:03:13.122Z","dependency_job_id":null,"html_url":"https://github.com/framgia/android-emulator-detector","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/framgia/android-emulator-detector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/framgia%2Fandroid-emulator-detector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/framgia%2Fandroid-emulator-detector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/framgia%2Fandroid-emulator-detector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/framgia%2Fandroid-emulator-detector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/framgia","download_url":"https://codeload.github.com/framgia/android-emulator-detector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/framgia%2Fandroid-emulator-detector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28825673,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T18:44:20.126Z","status":"ssl_error","status_checked_at":"2026-01-27T18:44:09.161Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T17:01:17.235Z","updated_at":"2026-01-27T22:43:44.137Z","avatar_url":"https://github.com/framgia.png","language":"Java","funding_links":[],"categories":["Java","Java (504)"],"sub_categories":[],"readme":"#Android emulator detector\n\n[![](https://jitpack.io/v/framgia/android-emulator-detector.svg)](https://jitpack.io/#framgia/android-emulator-detector) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Android%20emulator%20detector-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/3635)\n\nEasy to detect android emulator\n\n#### Last check: 16/01/2017\n    - Checked on real devices in Device Farm (https://aws.amazon.com/device-farm/)\n    - BlueStacks\n    - Genymotion\n    - Android Emulator \n    - Andy 46.2.207.0\n    - MEmu play\n    - Nox App Player\n    - Koplayer\n    - .....\n\n#### Change logs\n    - 1.4.0 : Update database \u0026 With Telephony function auto detect Telephony Support\n\nDownload\n-------\n#####Gradle:\n\nStep 1. Add it in your root build.gradle at the end of repositories:\n\n```groovy\nallprojects {\n\trepositories {\n\t\t...\n\t\tmaven { url \"https://jitpack.io\" }\n\t}\n}\n```\n\nStep 2. Add the dependency\n```groovy\ndependencies {\n\t    compile 'com.github.framgia:android-emulator-detector:1.4.0'\n}\n```\n\nHow to use\n-------\nExample:\n\n```java\nEmulatorDetector.with(this)\n                .setCheckTelephony(true)\n                .addPackageName(\"com.bluestacks\")\n                .setDebug(true)\n                .detect(new EmulatorDetector.OnEmulatorDetectorListener() {\n                    @Override\n                    public void onResult(boolean isEmulator) {\n                        \n                    }\n                });\n```\n\n- `setCheckTelephony` Check Imei, Operator network, Device ID...\n\n\tIf `true` we need permission \n\t\n\t`   \u003cuses-permission android:name=\"android.permission.READ_PHONE_NUMBERS\" /\u003e\n        \u003cuses-permission android:name=\"android.permission.READ_PRIVILEGED_PHONE_STATE\" /\u003e\n        \u003cuses-permission android:name=\"android.permission.READ_SMS\" /\u003e`\n        \n- `setDebug` Show log\n\n- `addPackageName` To add the package but only on VMs\n- Add permission `android.permission.INTERNET` to detect Virtual Networking\n\nDescription\n-------\n\nTo update the virtual machine device detection with highest accuracy, \nWe are going to check periodically the virtual machine latest version and combine with the statistics that we experienced from our actual project.\n \nProject have refered the idea of some other projects.\n\nIf there are problems, please notify us. Create issue [here] (https://github.com/framgia/android-emulator-detector/issues/new)\n\nLicense\n-------\n\n    Copyright 2016 Framgia, Inc.\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fframgia%2Fandroid-emulator-detector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fframgia%2Fandroid-emulator-detector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fframgia%2Fandroid-emulator-detector/lists"}