{"id":18695397,"url":"https://github.com/mofneko/stella","last_synced_at":"2026-05-17T17:43:24.399Z","repository":{"id":89712945,"uuid":"192535864","full_name":"mofneko/Stella","owner":"mofneko","description":"Stella is speedhack tracking agent for Android.","archived":false,"fork":false,"pushed_at":"2019-06-25T08:00:01.000Z","size":3297,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-19T00:12:41.140Z","etag":null,"topics":["android-library","security","unity3d-plugin"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mofneko.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-06-18T12:30:00.000Z","updated_at":"2024-12-02T15:57:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"4de60e05-3558-46ed-a391-5f1909c0747e","html_url":"https://github.com/mofneko/Stella","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mofneko/Stella","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FStella","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FStella/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FStella/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FStella/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mofneko","download_url":"https://codeload.github.com/mofneko/Stella/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mofneko%2FStella/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266561435,"owners_count":23948632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["android-library","security","unity3d-plugin"],"created_at":"2024-11-07T11:14:51.047Z","updated_at":"2026-05-17T17:43:19.350Z","avatar_url":"https://github.com/mofneko.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"./art/Stella.jpg\" alt=\"Stella\" style=\"width:300px;\"/\u003e\n\n=============================================\n\n[![Release](https://jitpack.io/v/mofneko/Stella.svg)](https://jitpack.io/#mofneko/Stella)\n\nStella is speedhack tracking agent for Android.\n\n# How to use\n\n##### Java and Kotlin\n\nUsers of your library will need add the jitpack.io repository:\n\n```gradle\nallprojects {\n repositories {\n    jcenter()\n    maven { url \"https://jitpack.io\" }\n }\n}\n```\n\nand:\n\n```gradle\ndependencies {\n    compile 'com.github.mofneko:Stella:0.1.1'\n}\n```\n\nStep1. Handling SpeedHackDetectDelegate\n\n```kotlin\n            val detectCallback = object : StellaCallback() {\n                override fun onDetect() {\n                    // Speed Hack Detection.\n                }\n            }\n```\n\nStep2. Detect\n\n```kotlin\n        var stella = Stella()\n        stella.initialize(\n         3000, // Frequency of detection(ms). Set a value more than 1second.\n         detectCallback)\n        button.setOnClickListener {\n            stella.start()\n        }\n```\n\nNOTE: To improve performance, stop detection when it is not necessary.\n\n```kotlin\n            stella.start()\n```\n\n##### C# (Unity)\nCreate a folder with the structure Assets/Plugins/Android and put [*.aar](https://github.com/mofneko/Stella/blob/master/aar/) in the Android folder.\n\nand fact Delegate.\n\n```C# (Unity)\n　　public class DetectListener : AndroidJavaProxy\n    {\n        public DetectListener()\n            : base(\"com.nekolaboratory.Stella.StellaCallback\")\n        {\n        }\n        void onDetect() {\n            // Speed Hack Detection.\n        }\n    }\n```\n\nand execute Detect.\n\n```C# (Unity)\n    void Detect()\n    {\n        // Step1. Instantiate\n        using (AndroidJavaObject Stella = new AndroidJavaObject(\"com.nekolaboratory.Stella.Stella\"))\n        {\n        // Step2. Detect\n        Stella.Call(\"initialize\",\n         3000, // Frequency of detection(ms). Set a value more than 1second.\n         new DetectListener());\n        Stella.Call(\"start\");\n        }\n    }\n```\n\nTo improve performance, stop detection when it is not necessary.\n\n```C# (Unity)\n        // The stop function is an instance method.\n        Stella.Call(\"stop\");\n```\n\n# Development\n\n```\n$ git clone git@github.com:mofneko/Stella.git\n$ cd Stella\n$ ./gradlew assembleRelease\n```\n\n# License\n\n```\nMIT License\n\nCopyright (c) 2019 Yusuke Arakawa\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmofneko%2Fstella","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmofneko%2Fstella","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmofneko%2Fstella/lists"}