{"id":42789366,"url":"https://github.com/zeoflow/z-stream","last_synced_at":"2026-01-29T23:34:06.906Z","repository":{"id":53001789,"uuid":"290152472","full_name":"zeoflow/z-stream","owner":"zeoflow","description":"Z-Stream is an HTTP library that makes networking for Android apps easier and, most importantly, faster.","archived":false,"fork":false,"pushed_at":"2021-04-10T08:59:18.000Z","size":454,"stargazers_count":11,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-20T20:07:22.211Z","etag":null,"topics":["android","android-library","http-library","z-stream","zeoflow"],"latest_commit_sha":null,"homepage":"https://zeoflow.github.io/z-stream/","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/zeoflow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-25T07:59:58.000Z","updated_at":"2024-05-20T20:07:22.212Z","dependencies_parsed_at":"2022-09-08T00:21:27.387Z","dependency_job_id":null,"html_url":"https://github.com/zeoflow/z-stream","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/zeoflow/z-stream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fz-stream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fz-stream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fz-stream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fz-stream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeoflow","download_url":"https://codeload.github.com/zeoflow/z-stream/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeoflow%2Fz-stream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28890394,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"ssl_error","status_checked_at":"2026-01-29T21:06:42.160Z","response_time":59,"last_error":"SSL_read: 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":["android","android-library","http-library","z-stream","zeoflow"],"created_at":"2026-01-29T23:34:06.120Z","updated_at":"2026-01-29T23:34:06.893Z","avatar_url":"https://github.com/zeoflow.png","language":"Java","readme":"# Z-Stream\n\n## Intro\nZ-Stream is an HTTP library that makes networking for Android apps easier and, most importantly, faster.\n\n## Getting Started\nFor information on how to get started with Z-Stream,\ntake a look at our [Getting Started](docs/getting-started.md) guide.\n\n## Submitting Bugs or Feature Requests\nBugs or feature requests should be submitted at our [GitHub Issues section](https://github.com/zeoflow/z-stream/issues).\n\n## How does it work?\n### 1. Depend on our library\n\nZ-Stream for Android is available through Google's Maven Repository.\nTo use it:\n\n1.  Open the `build.gradle` file for your application.\n2.  Make sure that the `repositories` section includes Google's Maven Repository\n    `google()`. For example:\n\n    ```groovy\n      allprojects {\n        repositories {\n          google()\n          jcenter()\n        }\n      }\n    ```\n\n3.  Add the library to the `dependencies` section:\n\n    ```groovy\n      dependencies {\n        // ...\n        implementation 'com.zeoflow:z-stream:\u003cversion\u003e'\n        // ...\n      }\n    ```\n\n### 2. Activity/Fragment Class\n`MainActivity.java`\n\n```java\npublic class MainActivity extends AppCompatActivity\n{\n    //..\n    @Override\n    protected void onCreate(@Nullable Bundle savedInstanceState)\n    {\n        //..\n        String url = \"opensource.zeoflow.com/zstream\";\n        JsonObjectRequest jsonObjectRequest = new JsonObjectRequest\n            (Request.Method.GET, url, null, new Response.Listener\u003cJSONObject\u003e()\n            {\n\n                @Override\n                public void onResponse(JSONObject response)\n                {\n                    textView.setText(\"Response: \" + response.toString());\n                }\n            }, new Response.ErrorListener()\n            {\n\n                @Override\n                public void onErrorResponse(ZStreamError error)\n                {\n                    // TODO: Handle error\n\n                }\n            });\n\n        // Access the RequestQueue through your singleton class.\n        MySingleton.getInstance(this).addToRequestQueue(jsonObjectRequest);\n        //..\n    }\n    //..\n}\n```\n\n## License\n    Copyright 2020 ZeoFlow\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","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeoflow%2Fz-stream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeoflow%2Fz-stream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeoflow%2Fz-stream/lists"}