{"id":17064262,"url":"https://github.com/pavelsust/moreapps","last_synced_at":"2025-07-10T19:33:17.979Z","repository":{"id":75086277,"uuid":"88466387","full_name":"pavelsust/MoreApps","owner":"pavelsust","description":null,"archived":false,"fork":false,"pushed_at":"2017-04-17T20:08:52.000Z","size":420,"stargazers_count":36,"open_issues_count":0,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-12T18:30:30.286Z","etag":null,"topics":["android","androiddevelopment","moreandroidapps","moreapp","moreapps","myapps","newandroidapp","playstorelink"],"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/pavelsust.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":"2017-04-17T03:59:09.000Z","updated_at":"2024-07-28T20:42:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"d137ce2e-00de-47d2-ae60-4cb4242264d1","html_url":"https://github.com/pavelsust/MoreApps","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/pavelsust/MoreApps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelsust%2FMoreApps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelsust%2FMoreApps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelsust%2FMoreApps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelsust%2FMoreApps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pavelsust","download_url":"https://codeload.github.com/pavelsust/MoreApps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavelsust%2FMoreApps/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260313996,"owners_count":22990508,"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","androiddevelopment","moreandroidapps","moreapp","moreapps","myapps","newandroidapp","playstorelink"],"created_at":"2024-10-14T10:54:11.972Z","updated_at":"2025-06-17T07:32:55.742Z","avatar_url":"https://github.com/pavelsust.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# More Apps in Play Store\n\n\u003ch4\u003e As a individual developer I have to copy and paste some common code to add \"More Apps\" feature in my applications. It's a pathetic work to add common codes in all applications and some times it makes silly mistakes and have to fix it again. So I thought  why don't I make a library which can make my work simple. By writing two/three line of code and get all the features. \u003c/h4\u003e\n\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/paveltech/MoreApps/master/screen%20shot.png\" width=\"350\"/\u003e\n\u003c/p\u003e\n\n\n## Install\n\nYou can download from JitPack. [![](https://jitpack.io/v/paveltech/MoreApps.svg)](https://jitpack.io/#paveltech/MoreApps)\n\nAdd this dependency in your `build.gradle`: \n\n```groovy\nallprojects {\n\trepositories {\n\t\tmaven { url 'https://jitpack.io' }\n\t\t}\n\t}\n```\n\n```xml\ndependencies {\n    compile 'com.github.paveltech:MoreApps:1.2'\n}\n```\n\n### Json File Ready : make your json file looks like...\n    [\n\n\t{\n\t\t\"name\": \"Your App Name\",\n\t\t\"rating\": 5,\n\t\t\"package_name\": \"package name\",\n\t\t\"image\": \"icon image link\"\n\t},\n\n\t{\n\t\t\"name\": \"Call Blocker\",\n\t\t\"rating\": 4.8,\n\t\t\"package_name\": \"com.playoffstudio.callblocker\",\n\t\t\"image\": \"https://lh3.googleusercontent.com/CnqXt1s12Mzu-rzMcUEQpdmsk3SlBSHCHtmc02T8pTqngJeij6hLFIgcwi1R8G-Fs-am=w300\"\n\t},\n\t{\n\t\t\"name\": \"USA Online Shopping\",\n\t\t\"rating\": 5,\n\t\t\"package_name\": \"com.creativeapp.usashopping\",\n\t\t\"image\": \"https://lh3.googleusercontent.com/PiGn6kwmGltl7QEgMUwHtdpCJ7sPrTZOpY-ezN5zK6OJR0GNAB7c64yTMEI497Lhb9s=w300\"\n\t}\n\t\n    ]\n\n\n### Configuration : Now have to configure java code.\n\n1.First make a class which can extends Application class. Looks like \n\n```java\n\npublic class AppController extends Application {\n\n    App app;\n    @Override\n    public void onCreate() {\n        super.onCreate();\n\t  /// initialized more app library \n        app = new App(getApplicationContext());\n    }\n}\n```\n\n2. Add Internet permissions and Application class in your Androidmanifest \n\n```xml\n\n\u003cuses-permission android:name=\"android.permission.INTERNET\" /\u003e\n \u003capplication\u003e\n        android:name=\".AppController\"\n         ......................\n\t ......................\n    \u003c/application\u003e\n ```\n \n 3. Now you can use it as a Activity or as a Fragment\n \n ### For Activity \n \n ```java\n Intent intent = new Intent(YourActivity.this , MoreActivity.class);\n        MoreActivity.url = \"your json file link\";\n        startActivity(intent);\n```\n\n### For Fragment \n\n```java\n\n   MoreAppFragment moreAppFragment = new MoreAppFragment();\n        MoreAppFragment.url = \"your json file link\";\n\t\t\n```\t\t\n\n\nLicense\n=======\n\nLicensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpavelsust%2Fmoreapps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpavelsust%2Fmoreapps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpavelsust%2Fmoreapps/lists"}