{"id":13645532,"url":"https://github.com/myinnos/AppIconNameChanger","last_synced_at":"2025-04-21T14:31:33.209Z","repository":{"id":41416690,"uuid":"83005000","full_name":"myinnos/AppIconNameChanger","owner":"myinnos","description":"Library to change Android launcher App Icon and App Name programmatically !","archived":false,"fork":false,"pushed_at":"2022-05-25T04:42:43.000Z","size":3084,"stargazers_count":600,"open_issues_count":8,"forks_count":73,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-04-05T01:08:59.424Z","etag":null,"topics":["android","android-application","android-library","app","icons","launcher","launcher-icon","names"],"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/myinnos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["myinnos"],"custom":["https://www.paypal.me/fansfolio"]}},"created_at":"2017-02-24T05:31:03.000Z","updated_at":"2025-04-01T22:48:48.000Z","dependencies_parsed_at":"2022-08-28T13:20:24.476Z","dependency_job_id":null,"html_url":"https://github.com/myinnos/AppIconNameChanger","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myinnos%2FAppIconNameChanger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myinnos%2FAppIconNameChanger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myinnos%2FAppIconNameChanger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myinnos%2FAppIconNameChanger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/myinnos","download_url":"https://codeload.github.com/myinnos/AppIconNameChanger/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250070173,"owners_count":21369839,"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","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","android-application","android-library","app","icons","launcher","launcher-icon","names"],"created_at":"2024-08-02T01:02:36.710Z","updated_at":"2025-04-21T14:31:32.606Z","avatar_url":"https://github.com/myinnos.png","language":"Java","funding_links":["https://github.com/sponsors/myinnos","https://www.paypal.me/fansfolio"],"categories":["其他"],"sub_categories":[],"readme":"# AppIconNameChanger\nChange Android App launcher Icon and App Name programmatically !\n\n ![AppIconNameChanger - Example1](https://i.postimg.cc/bvWNzSQg/App-Icon-Name-Changer-example-01.png)\n `` `` `` `` `` `` `` ``\n ![AppIconNameChanger - Example2](https://i.postimg.cc/7Ld7p6b8/App-Icon-Name-Changer-example-02.png)\n `` `` `` `` `` `` `` ``\n ![AppIconNameChanger - Example3](https://i.postimg.cc/pd4GqPHy/App-Icon-Name-Changer-example-03.png)\n\n#### Download Demo APK from [HERE](https://github.com/myinnos/AppIconNameChanger/raw/master/apk/appIconNameChanger.apk \"APK\")\n  \n#### Kindly use the following links to use this library:\n\nIn build.gradle (Project)\n```java\nallprojects {\n\trepositories {\n\t...\n\tmaven { url \"https://jitpack.io\" }\n\t}\n}\n```\nAnd then in the other gradle file(may be your app gradle or your own module library gradle, but never add in both of them to avoid conflict.)\n```java\t\ndependencies {\n\tcompile 'com.github.myinnos:AppIconNameChanger:1.0.7'\n}\n```\nHow to use\n-----\n**Step 1:** set activity alias in manifest file : [#Example](https://github.com/myinnos/AppIconNameChanger/blob/master/app/src/main/AndroidManifest.xml \"Example\")\n```xml\n\u003capplication\n         .........\n        \n       \u003c!-- main activity--\u003e\n       \u003cactivity android:name=\".MainActivity\" /\u003e\n\n        \u003c!-- setting activity-alias names--\u003e\n        \u003cactivity-alias\n            android:name=\"in.myinnos.changeappiconandname.MainActivitySettings\"\n            android:enabled=\"true\"  //enabled by default launcher\n            android:icon=\"@drawable/ic_settings\"  //app icon\n            android:label=\"@string/app_settings\"  //app label/name\n            android:targetActivity=\".MainActivity\"\u003e\n            \u003cintent-filter\u003e\n                \u003caction android:name=\"android.intent.action.MAIN\" /\u003e\n                \u003ccategory android:name=\"android.intent.category.LAUNCHER\" /\u003e\n            \u003c/intent-filter\u003e\n        \u003c/activity-alias\u003e\n\n        \u003cactivity-alias\n            android:name=\"in.myinnos.changeappiconandname.MainActivityCamera\"\n            android:enabled=\"false\"\n            android:icon=\"@drawable/ic_camera\"  //app icon\n            android:label=\"@string/app_camera\" //app label/name\n            android:targetActivity=\".MainActivity\"\u003e\n            \u003cintent-filter\u003e\n                \u003caction android:name=\"android.intent.action.MAIN\" /\u003e\n                \u003ccategory android:name=\"android.intent.category.LAUNCHER\" /\u003e\n            \u003c/intent-filter\u003e\n        \u003c/activity-alias\u003e\n\n        .........\n\n\u003c/application\u003e\n```\n**Step 2:** implement App Icon Name Changer method : [#Example](https://github.com/myinnos/AppIconNameChanger/blob/master/app/src/main/java/in/myinnos/changeappiconandname/MainActivity.java \"Example\")\n```java\n// Active alias name\nString activeName = \"in.myinnos.changeappiconandname.MainActivitySettings\";\n\n// Disable alias names\nList\u003cString\u003e disableNames = new ArrayList\u003cString\u003e();\ndisableNames.add(\"in.myinnos.changeappiconandname.MainActivityCamera\");\ndisableNames.add(\"in.myinnos.changeappiconandname.MainActivityMessage\");\n\n// Initiate App Icon Name Changer\nnew AppIconNameChanger.Builder(MainActivity.this)\n                .activeName(activeName) // String\n                .disableNames(disableNames) // List\u003cString\u003e\n                .packageName(BuildConfig.APPLICATION_ID)\n                .build()\n                .setNow();\n```\n**IMP Note:** To change application launcher icon and the application name should wait for 10 Seconds(MAX) to refresh the launcher.\n##### Any Queries? or Feedback, please let me know by opening a [new issue](https://github.com/myinnos/AppIconNameChanger/issues/new)!\n\n## Contact\n#### Prabhakar Thota\n* :globe_with_meridians: Website: [myinnos.in](http://www.myinnos.in \"Prabhakar Thota\")\n* :email: e-mail: contact@myinnos.in\n* :mag_right: LinkedIn: [PrabhakarThota](https://www.linkedin.com/in/prabhakarthota \"Prabhakar Thota on LinkedIn\")\n* :thumbsup: Twitter: [@myinnos](https://twitter.com/myinnos \"Prabhakar Thota on Twitter\")   \n* :camera: Instagram: [@prabhakar_t_](https://www.instagram.com/prabhakar_t_/ \"Prabhakar Thota on Instagram\")   \n\n\u003e If you appreciate my work, consider buying me a cup of :coffee: to keep me recharged :metal: by [PayPal](https://www.paypal.me/fansfolio)\n\nLicense\n-------\n\n    Copyright 2019 MyInnos\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%2Fmyinnos%2FAppIconNameChanger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmyinnos%2FAppIconNameChanger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyinnos%2FAppIconNameChanger/lists"}