android okhttp几种日志拦截级别区别

发布于:2025-03-11 ⋅ 阅读:(18) ⋅ 点赞:(0)

一 说明
1 代码

  enum class Level {
    /** No logs. */
    NONE,

    /**
     * Logs request and response lines.
     *
     * Example:
     * ```
     * --> POST /greeting http/1.1 (3-byte body)
     *
     * <-- 200 OK (22ms, 6-byte body)
     * ```
     */
    BASIC,

    /**
     * Logs request and response lines and their respective headers.
     *
     * Example:
     * ```
     * --> POST /greeting http/1.1
     * Host: example.com
     * Content-Type: plain/text
     * Content-Length: 3
     * --> END POST
     *
     * <-- 200 OK (22ms)
     * Content-Type: plain/text
     * Content-Length: 6
     * <-- END HTTP
     * ```
     */
    HEADERS,

    /**
     * Logs request and response lines and their respective headers and bodies (if present).
     *
     * Example:
     * ```
     * --> POST /greeting http/1.1
     * Host: example.com
     * Content-Type: plain/text
     * Content-Length: 3
     *
     * Hi?
     * --> END POST
     *
     * <-- 200 OK (22ms)
     * Content-Type: plain/text
     * Content-Length: 6
     *
     * Hello!
     * <-- END HTTP
     * ```
     */
    BODY
  }

2 示例

val logger = HttpLoggingInterceptor().apply {
    level = if (BuildConfig.DEBUG) {
        HttpLoggingInterceptor.Level.BODY  // 调试时记录完整内容
    } else {
        HttpLoggingInterceptor.Level.NONE  // 生产环境关闭日志
    }
}

2.2

companion object {
        private const val BASE_URL = "https://api.github.com/"

        fun create(): GithubService {
            val logger = HttpLoggingInterceptor()
            logger.level = Level.BASIC

            val client = OkHttpClient.Builder()
                .addInterceptor(logger)
                .build()
            return Retrofit.Builder()
                .baseUrl(BASE_URL)
                .client(client)
                .addConverterFactory(GsonConverterFactory.create())
                .build()
                .create(GithubService::class.java)
        }
    } 

3
注意事项
​性能影响:BODY 级别会记录大量数据,可能影响应用性能,仅在必要时启用。
​敏感信息:避免在生产环境记录 BODY 或 HEADERS,防止泄露 Token、Cookie 等敏感数据。
​自定义日志格式:可通过继承 HttpLoggingInterceptor 并重写 log 方法实现自定义日志格式。

日志拦截器级别

HttpLoggingInterceptor 的日志级别通过 level 属性设置,共有 4 种级别

级别 记录内容 适用场景
NONE 不记录任何日志 生产环境(避免敏感信息泄露)
BASIC 记录请求方法、URL 和响应状态码 调试基础请求流程
HEADERS 记录请求和响应的头部信息(如 Content-TypeAuthorization 分析请求头或认证问题
BODY 记录完整的请求和响应体(包括 JSON、XML 等) 深度调试请求/响应内容(注意隐私泄露)

二 验证

1 none 没有日志

没有信息

2 basic 请求url+返回状态码

2.1请求
2025-03-09 19:47:56.254 14836-14870 okhttp.OkHttpClient com.example.android.codelabs.paging I --> GET https://api.github.com/search/repositories?sort=stars&q=Android%20in%3Aname%2Cdescription&page=1&per_page=30

2.2返回

2025-03-09 19:47:58.104 14836-14870 okhttp.OkHttpClient com.example.android.codelabs.paging I <-- 200 https://api.github.com/search/repositories?sort=stars&q=Android%20in%3Aname%2Cdescription&page=1&per_page=30 (1849ms, unknown-length body)

3 head: 请求url+请求头+返回状态码+返回head

3.1 请求

2025-03-09 19:42:50.566 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I --> GET https://api.github.com/search/repositories?sort=stars&q=Android%20in%3Aname%2Cdescription&page=1&per_page=30
2025-03-09 19:42:50.566 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I Accept: application/vnd.github.v3+json
2025-03-09 19:42:50.566 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I User-Agent: PagingSampleApp
2025-03-09 19:42:50.566 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I Authorization: Bearer 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
2025-03-09 19:42:50.566 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I --> END GET

3.2 返回

2025-03-09 19:42:52.138 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I <-- 200 https://api.github.com/search/repositories?sort=stars&q=Android%20in%3Aname%2Cdescription&page=1&per_page=30 (1571ms)
2025-03-09 19:42:52.138 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I date: Sun, 09 Mar 2025 11:42:51 GMT
2025-03-09 19:42:52.138 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I content-type: application/json; charset=utf-8
2025-03-09 19:42:52.138 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I cache-control: no-cache
2025-03-09 19:42:52.138 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I vary: Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-oauth-scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, copilot, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-accepted-oauth-scopes:
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I github-authentication-token-expiration: 2025-04-08 10:21:28 UTC
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-github-media-type: github.v3; format=json
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I link: https://api.github.com/search/repositories?sort=stars&q=Android+in%3Aname%2Cdescription&page=2&per_page=30; rel=“next”, https://api.github.com/search/repositories?sort=stars&q=Android+in%3Aname%2Cdescription&page=34&per_page=30; rel=“last”
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-github-api-version-selected: 2022-11-28
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-limit: 30
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-remaining: 29
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-reset: 1741520631
2025-03-09 19:42:52.139 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-used: 1
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-resource: search
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I access-control-expose-headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I access-control-allow-origin: *
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I strict-transport-security: max-age=31536000; includeSubdomains; preload
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-frame-options: deny
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-content-type-options: nosniff
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-xss-protection: 0
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I referrer-policy: origin-when-cross-origin, strict-origin-when-cross-origin
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I content-security-policy: default-src ‘none’
2025-03-09 19:42:52.140 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I server: github.com
2025-03-09 19:42:52.141 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I x-github-request-id: 4B7D:2B66EA:44148E:525DB2:67CD7EBA
2025-03-09 19:42:52.141 14526-14582 okhttp.OkHttpClient com.example.android.codelabs.paging I <-- END HTTP

4 body 请求url+请求头+返回状态码+返回head+返回数据

4.1 请求
okhttp.OkHttpClient com.example.android.codelabs.paging I --> GET https://api.github.com/search/repositories?sort=stars&q=Android%20in%3Aname%2Cdescription&page=1&per_page=30
2025-03-09 19:40:47.850 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I Accept: application/vnd.github.v3+json
2025-03-09 19:40:47.850 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I User-Agent: PagingSampleApp
2025-03-09 19:40:47.850 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I Authorization: Bearer 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
2025-03-09 19:40:47.850 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I --> END GET

4.2返回
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I <-- 200 https://api.github.com/search/repositories?sort=stars&q=Android%20in%3Aname%2Cdescription&page=1&per_page=30 (1497ms)
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I date: Sun, 09 Mar 2025 11:40:48 GMT
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I content-type: application/json; charset=utf-8
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I cache-control: no-cache
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I vary: Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-oauth-scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, copilot, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-accepted-oauth-scopes:
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I github-authentication-token-expiration: 2025-04-08 10:21:28 UTC
2025-03-09 19:40:49.347 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-github-media-type: github.v3; format=json
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I link: https://api.github.com/search/repositories?sort=stars&q=Android+in%3Aname%2Cdescription&page=2&per_page=30; rel=“next”, https://api.github.com/search/repositories?sort=stars&q=Android+in%3Aname%2Cdescription&page=34&per_page=30; rel=“last”
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-github-api-version-selected: 2022-11-28
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-limit: 30
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-remaining: 29
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-reset: 1741520508
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-used: 1
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-ratelimit-resource: search
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I access-control-expose-headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I access-control-allow-origin: *
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I strict-transport-security: max-age=31536000; includeSubdomains; preload
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-frame-options: deny
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-content-type-options: nosniff
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-xss-protection: 0
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I referrer-policy: origin-when-cross-origin, strict-origin-when-cross-origin
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I content-security-policy: default-src ‘none’
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I server: github.com
2025-03-09 19:40:49.348 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-github-request-id: 4B41:2A5708:38DF0A:45A9C1:67CD7E3F

2025-03-09 19:40:49.430 14144-14166 System com.example.android.codelabs.paging W A resource failed to call close.
2025-03-09 19:40:49.430 14144-14166 System com.example.android.codelabs.paging W A resource failed to call close.
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I {“total_count”:1628390,“incomplete_results”:false,“items”:[{“id”:111583593,“node_id”:“MDEwOlJlcG9zaXRvcnkxMTE1ODM1OTM=”,“name”:“scrcpy”,“full_name”:“Genymobile/scrcpy”,“private”:false,“owner”:{“login”:“Genymobile”,“id”:3427627,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjM0Mjc2Mjc=”,“avatar_url”:“https://avatars.githubusercontent.com/u/3427627?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/Genymobile”,“html_url”:“https://github.com/Genymobile”,“followers_url”:“https://api.github.com/users/Genymobile/followers”,“following_url”:“https://api.github.com/users/Genymobile/following{/other_user}”,“gists_url”:“https://api.github.com/users/Genymobile/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/Genymobile/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/Genymobile/subscriptions”,“organizations_url”:“https://api.github.com/users/Genymobile/orgs”,“repos_url”:“https://api.github.com/users/Genymobile/repos”,“events_url”:“https://api.github.com/users/Genymobile/events{/privacy}”,“received_events_url”:“https://api.github.com/users/Genymobile/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/Genymobile/scrcpy”,“description”:“Display and control your Android device”,“fork”:false,“url”:“https://api.github.com/repos/Genymobile/scrcpy”,“forks_url”:“https://api.github.com/repos/Genymobile/scrcpy/forks”,“keys_url”:“https://api.github.com/repos/Genymobile/scrcpy/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/Genymobile/scrcpy/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/Genymobile/scrcpy/teams”,“hooks_url”:“https://api.github.com/repos/Genymobile/scrcpy/hooks”,“issue_events_url”:“https://api.github.com/repos/Genymobile/scrcpy/issues/events{/number}”,“events_url”:“https://api.github.com/repos/Genymobile/scrcpy/events”,“assignees_url”:“https://api.github.com/repos/Genymobile/scrcpy/assignees{/user}”,“branches_url”:“https://api.github.com/repos/Genymobile/scrcpy/branches{/branch}”,“tags_url”:“https://api.github.com/repos/Genymobile/scrcpy/tags”,“blobs_url”:“https://api.github.com/repos/Genymobile/scrcpy/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/Genymobile/scrcpy/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/Genymobile/scrcpy/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/Genymobile/scrcpy/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/Genymobile/scrcpy/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/Genymobile/scrcpy/languages”,“stargazers_url”:“https://api.github.com/repos/Genymobile/scrcpy/stargazers”,“contributors_url”:“https://api.github.com/repos/Genymobile/scrcpy/contributors”,“subscribers_url”:“https://api.github.com/repos/Genymobile/scrcpy/subscribers”,“subscription_url”:“https://api.github.com/repos/Genymobile/scrcpy/subscription”,“commits_url”:“https://api.github.com/repos/Genymobile/scrcpy/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/Genymobile/scrcpy/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/Genymobile/scrcpy/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/Genymobile/scrcpy/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/Genymobile/scrcpy/contents/{+path}”,“compare_url”:“https://api.github.com/repos/Genymobile/scrcpy/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/Genymobile/scrcpy/merges”,“archive_url”:“https://api.github.com/repos/Genymobile/scrcpy/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/Genymobile/scrcpy/downloads”,“issues_url”:“https://api.github.com/repos/Genymobile/scrcpy/issues{/number}”,“pulls_url”:“https://api.github.com/repos/Genymobile/scrcpy/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/Genymobile/scrcpy/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/Genymobile/scrcpy/notifications{?since,all,participating}”,“labels_url”:“https://api.g
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I ithub.com/repos/Genymobile/scrcpy/labels{/name}”,“releases_url”:“https://api.github.com/repos/Genymobile/scrcpy/releases{/id}”,“deployments_url”:“https://api.github.com/repos/Genymobile/scrcpy/deployments”,“created_at”:“2017-11-21T18:00:27Z”,“updated_at”:“2025-03-09T11:19:51Z”,“pushed_at”:“2025-03-07T20:00:21Z”,“git_url”:“git://github.com/Genymobile/scrcpy.git”,“ssh_url”:“git@github.com:Genymobile/scrcpy.git”,“clone_url”:“https://github.com/Genymobile/scrcpy.git”,“svn_url”:“https://github.com/Genymobile/scrcpy”,“homepage”:“”,“size”:7427,“stargazers_count”:118699,“watchers_count”:118699,“language”:“C”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:11222,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:2284,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“c”,“ffmpeg”,“libav”,“mirroring”,“recording”,“screen”,“sdl2”],“visibility”:“public”,“forks”:11222,“open_issues”:2284,“watchers”:118699,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:612344730,“node_id”:“R_kgDOJH-jmg”,“name”:“NextChat”,“full_name”:“ChatGPTNextWeb/NextChat”,“private”:false,“owner”:{“login”:“ChatGPTNextWeb”,“id”:153288546,“node_id”:“O_kgDOCSL_Yg”,“avatar_url”:“https://avatars.githubusercontent.com/u/153288546?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/ChatGPTNextWeb”,“html_url”:“https://github.com/ChatGPTNextWeb”,“followers_url”:“https://api.github.com/users/ChatGPTNextWeb/followers”,“following_url”:“https://api.github.com/users/ChatGPTNextWeb/following{/other_user}”,“gists_url”:“https://api.github.com/users/ChatGPTNextWeb/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/ChatGPTNextWeb/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/ChatGPTNextWeb/subscriptions”,“organizations_url”:“https://api.github.com/users/ChatGPTNextWeb/orgs”,“repos_url”:“https://api.github.com/users/ChatGPTNextWeb/repos”,“events_url”:“https://api.github.com/users/ChatGPTNextWeb/events{/privacy}”,“received_events_url”:“https://api.github.com/users/ChatGPTNextWeb/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/ChatGPTNextWeb/NextChat”,“description”:“✨ Light and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows”,“fork”:false,“url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat”,“forks_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/forks”,“keys_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/teams”,“hooks_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/hooks”,“issue_events_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/issues/events{/number}”,“events_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/events”,“assignees_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/assignees{/user}”,“branches_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/branches{/branch}”,“tags_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/tags”,“blobs_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/ChatGP
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I TNextWeb/NextChat/languages”,“stargazers_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/stargazers”,“contributors_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/contributors”,“subscribers_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/subscribers”,“subscription_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/subscription”,“commits_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/contents/{+path}”,“compare_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/merges”,“archive_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/downloads”,“issues_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/issues{/number}”,“pulls_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/labels{/name}”,“releases_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/releases{/id}”,“deployments_url”:“https://api.github.com/repos/ChatGPTNextWeb/NextChat/deployments”,“created_at”:“2023-03-10T18:27:54Z”,“updated_at”:“2025-03-09T11:37:23Z”,“pushed_at”:“2025-03-03T10:46:00Z”,“git_url”:“git://github.com/ChatGPTNextWeb/NextChat.git”,“ssh_url”:“git@github.com:ChatGPTNextWeb/NextChat.git”,“clone_url”:“https://github.com/ChatGPTNextWeb/NextChat.git”,“svn_url”:“https://github.com/ChatGPTNextWeb/NextChat”,“homepage”:“https://nextchat.club”,“size”:20607,“stargazers_count”:81757,“watchers_count”:81757,“language”:“TypeScript”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:false,“has_pages”:false,“has_discussions”:true,“forks_count”:61209,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:674,“license”:{“key”:“mit”,“name”:“MIT License”,“spdx_id”:“MIT”,“url”:“https://api.github.com/licenses/mit”,“node_id”:“MDc6TGljZW5zZTEz”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“calclaude”,“chatgpt”,“claude”,“cross-platform”,“desktop”,“fe”,“gemini”,“gemini-pro”,“gemini-server”,“gemini-ultra”,“gpt-4o”,“groq”,“nextjs”,“ollama”,“react”,“tauri”,“tauri-app”,“vercel”,“webui”],“visibility”:“public”,“forks”:61209,“open_issues”:674,“watchers”:81757,“default_branch”:“main”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:28428729,“node_id”:“MDEwOlJlcG9zaXRvcnkyODQyODcyOQ==”,“name”:“awesome-android-ui”,“full_name”:“wasabeef/awesome-android-ui”,“private”:false,“owner”:{“login”:“wasabeef”,“id”:1833474,“node_id”:“MDQ6VXNlcjE4MzM0NzQ=”,“avatar_url”:“https://avatars.githubusercontent.com/u/1833474?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/wasabeef”,“html_url”:“https://github.com/wasabeef”,“followers_url”:“https://api.github.com/users/wasabeef/followers”,“following_url”:“https://api.github.com/users/wasabeef/following{/other_user}”,“gists_url”:“https://api.github.com/users/wasabeef/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/wasabeef/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/wasabeef/subscriptions”,“organizations_url”:“https://api.github.com/users/wasabeef/orgs”,“repos_url”:“https://api.github.com/users/wasabeef/repos”,“events_url”:“https://api.github.com/users/wasabeef/event
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I s{/privacy}”,“received_events_url”:“https://api.github.com/users/wasabeef/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/wasabeef/awesome-android-ui”,“description”:“A curated list of awesome Android UI/UX libraries”,“fork”:false,“url”:“https://api.github.com/repos/wasabeef/awesome-android-ui”,“forks_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/forks”,“keys_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/teams”,“hooks_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/hooks”,“issue_events_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/issues/events{/number}”,“events_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/events”,“assignees_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/assignees{/user}”,“branches_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/branches{/branch}”,“tags_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/tags”,“blobs_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/languages”,“stargazers_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/stargazers”,“contributors_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/contributors”,“subscribers_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/subscribers”,“subscription_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/subscription”,“commits_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/contents/{+path}”,“compare_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/merges”,“archive_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/downloads”,“issues_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/issues{/number}”,“pulls_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/labels{/name}”,“releases_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/releases{/id}”,“deployments_url”:“https://api.github.com/repos/wasabeef/awesome-android-ui/deployments”,“created_at”:“2014-12-24T01:45:03Z”,“updated_at”:“2025-03-09T10:49:56Z”,“pushed_at”:“2024-07-06T09:06:23Z”,“git_url”:“git://github.com/wasabeef/awesome-android-ui.git”,“ssh_url”:“git@github.com:wasabeef/awesome-android-ui.git”,“clone_url”:“https://github.com/wasabeef/awesome-android-ui.git”,“svn_url”:“https://github.com/wasabeef/awesome-android-ui”,“homepage”:“”,“size”:871781,“stargazers_count”:51738,“watchers_count”:
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I 51738,“language”:null,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:10223,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:33,“license”:{“key”:“mit”,“name”:“MIT License”,“spdx_id”:“MIT”,“url”:“https://api.github.com/licenses/mit”,“node_id”:“MDc6TGljZW5zZTEz”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“awesome”,“ui”],“visibility”:“public”,“forks”:10223,“open_issues”:33,“watchers”:51738,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:12256376,“node_id”:“MDEwOlJlcG9zaXRvcnkxMjI1NjM3Ng==”,“name”:“ionic-framework”,“full_name”:“ionic-team/ionic-framework”,“private”:false,“owner”:{“login”:“ionic-team”,“id”:3171503,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjMxNzE1MDM=”,“avatar_url”:“https://avatars.githubusercontent.com/u/3171503?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/ionic-team”,“html_url”:“https://github.com/ionic-team”,“followers_url”:“https://api.github.com/users/ionic-team/followers”,“following_url”:“https://api.github.com/users/ionic-team/following{/other_user}”,“gists_url”:“https://api.github.com/users/ionic-team/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/ionic-team/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/ionic-team/subscriptions”,“organizations_url”:“https://api.github.com/users/ionic-team/orgs”,“repos_url”:“https://api.github.com/users/ionic-team/repos”,“events_url”:“https://api.github.com/users/ionic-team/events{/privacy}”,“received_events_url”:“https://api.github.com/users/ionic-team/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/ionic-team/ionic-framework”,“description”:“A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.”,“fork”:false,“url”:“https://api.github.com/repos/ionic-team/ionic-framework”,“forks_url”:“https://api.github.com/repos/ionic-team/ionic-framework/forks”,“keys_url”:“https://api.github.com/repos/ionic-team/ionic-framework/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/ionic-team/ionic-framework/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/ionic-team/ionic-framework/teams”,“hooks_url”:“https://api.github.com/repos/ionic-team/ionic-framework/hooks”,“issue_events_url”:“https://api.github.com/repos/ionic-team/ionic-framework/issues/events{/number}”,“events_url”:“https://api.github.com/repos/ionic-team/ionic-framework/events”,“assignees_url”:“https://api.github.com/repos/ionic-team/ionic-framework/assignees{/user}”,“branches_url”:“https://api.github.com/repos/ionic-team/ionic-framework/branches{/branch}”,“tags_url”:“https://api.github.com/repos/ionic-team/ionic-framework/tags”,“blobs_url”:“https://api.github.com/repos/ionic-team/ionic-framework/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/ionic-team/ionic-framework/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/ionic-team/ionic-framework/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/ionic-team/ionic-framework/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/ionic-team/ionic-framework/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/ionic-team/ionic-framework/languages”,“stargazers_url”:“https://api.github.com/repos/ionic-team/ionic-framework/stargazers”,“contributors_url”:“https://api.github.com/repos/ionic-team/ionic-framework/contributors”,“subscribers_url”:“https://api.github.com/repos/ionic-team/ionic-framework/subscribers”,“subscription_url”:“https://api.github.com/repos/ionic-team/ionic-framework/subscription”,“commits_url”:“https://api.github.com/repos/ionic-team/ionic-framework/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/ionic-team/ionic-framework/git/commits{/sha}”,“co
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I mments_url”:“https://api.github.com/repos/ionic-team/ionic-framework/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/ionic-team/ionic-framework/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/ionic-team/ionic-framework/contents/{+path}”,“compare_url”:“https://api.github.com/repos/ionic-team/ionic-framework/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/ionic-team/ionic-framework/merges”,“archive_url”:“https://api.github.com/repos/ionic-team/ionic-framework/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/ionic-team/ionic-framework/downloads”,“issues_url”:“https://api.github.com/repos/ionic-team/ionic-framework/issues{/number}”,“pulls_url”:“https://api.github.com/repos/ionic-team/ionic-framework/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/ionic-team/ionic-framework/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/ionic-team/ionic-framework/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/ionic-team/ionic-framework/labels{/name}”,“releases_url”:“https://api.github.com/repos/ionic-team/ionic-framework/releases{/id}”,“deployments_url”:“https://api.github.com/repos/ionic-team/ionic-framework/deployments”,“created_at”:“2013-08-20T23:06:02Z”,“updated_at”:“2025-03-09T05:00:45Z”,“pushed_at”:“2025-03-08T00:20:56Z”,“git_url”:“git://github.com/ionic-team/ionic-framework.git”,“ssh_url”:“git@github.com:ionic-team/ionic-framework.git”,“clone_url”:“https://github.com/ionic-team/ionic-framework.git”,“svn_url”:“https://github.com/ionic-team/ionic-framework”,“homepage”:“https://ionicframework.com”,“size”:1360017,“stargazers_count”:51504,“watchers_count”:51504,“language”:“TypeScript”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:true,“forks_count”:13481,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:573,“license”:{“key”:“mit”,“name”:“MIT License”,“spdx_id”:“MIT”,“url”:“https://api.github.com/licenses/mit”,“node_id”:“MDc6TGljZW5zZTEz”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“angular”,“capacitor”,“framework”,“frontend”,“ionic”,“ios”,“javascript”,“material-design”,“mobile”,“pwa”,“react”,“stencil”,“stenciljs”,“typescript”,“vue”,“web”,“webcomponents”],“visibility”:“public”,“forks”:13481,“open_issues”:573,“watchers”:51504,“default_branch”:“main”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:67702184,“node_id”:“MDEwOlJlcG9zaXRvcnk2NzcwMjE4NA==”,“name”:“Magisk”,“full_name”:“topjohnwu/Magisk”,“private”:false,“owner”:{“login”:“topjohnwu”,“id”:7337301,“node_id”:“MDQ6VXNlcjczMzczMDE=”,“avatar_url”:“https://avatars.githubusercontent.com/u/7337301?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/topjohnwu”,“html_url”:“https://github.com/topjohnwu”,“followers_url”:“https://api.github.com/users/topjohnwu/followers”,“following_url”:“https://api.github.com/users/topjohnwu/following{/other_user}”,“gists_url”:“https://api.github.com/users/topjohnwu/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/topjohnwu/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/topjohnwu/subscriptions”,“organizations_url”:“https://api.github.com/users/topjohnwu/orgs”,“repos_url”:“https://api.github.com/users/topjohnwu/repos”,“events_url”:“https://api.github.com/users/topjohnwu/events{/privacy}”,“received_events_url”:“https://api.github.com/users/topjohnwu/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/topjohnwu/Magisk”,“description”:“The Magic Mask for Android”,“fork”:false,“url”:“https://api.github.com/repos/topjohnwu/Magisk”,“forks_url”:“https://api.github.com/repos/topjohnwu/Magisk/forks”,“keys_url”:“https://api.github.com/repos/topjohnwu/Magisk/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/topjohnwu/Magisk/c
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I ollaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/topjohnwu/Magisk/teams”,“hooks_url”:“https://api.github.com/repos/topjohnwu/Magisk/hooks”,“issue_events_url”:“https://api.github.com/repos/topjohnwu/Magisk/issues/events{/number}”,“events_url”:“https://api.github.com/repos/topjohnwu/Magisk/events”,“assignees_url”:“https://api.github.com/repos/topjohnwu/Magisk/assignees{/user}”,“branches_url”:“https://api.github.com/repos/topjohnwu/Magisk/branches{/branch}”,“tags_url”:“https://api.github.com/repos/topjohnwu/Magisk/tags”,“blobs_url”:“https://api.github.com/repos/topjohnwu/Magisk/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/topjohnwu/Magisk/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/topjohnwu/Magisk/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/topjohnwu/Magisk/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/topjohnwu/Magisk/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/topjohnwu/Magisk/languages”,“stargazers_url”:“https://api.github.com/repos/topjohnwu/Magisk/stargazers”,“contributors_url”:“https://api.github.com/repos/topjohnwu/Magisk/contributors”,“subscribers_url”:“https://api.github.com/repos/topjohnwu/Magisk/subscribers”,“subscription_url”:“https://api.github.com/repos/topjohnwu/Magisk/subscription”,“commits_url”:“https://api.github.com/repos/topjohnwu/Magisk/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/topjohnwu/Magisk/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/topjohnwu/Magisk/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/topjohnwu/Magisk/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/topjohnwu/Magisk/contents/{+path}”,“compare_url”:“https://api.github.com/repos/topjohnwu/Magisk/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/topjohnwu/Magisk/merges”,“archive_url”:“https://api.github.com/repos/topjohnwu/Magisk/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/topjohnwu/Magisk/downloads”,“issues_url”:“https://api.github.com/repos/topjohnwu/Magisk/issues{/number}”,“pulls_url”:“https://api.github.com/repos/topjohnwu/Magisk/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/topjohnwu/Magisk/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/topjohnwu/Magisk/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/topjohnwu/Magisk/labels{/name}”,“releases_url”:“https://api.github.com/repos/topjohnwu/Magisk/releases{/id}”,“deployments_url”:“https://api.github.com/repos/topjohnwu/Magisk/deployments”,“created_at”:“2016-09-08T12:42:53Z”,“updated_at”:“2025-03-09T10:29:32Z”,“pushed_at”:“2025-03-09T09:10:44Z”,“git_url”:“git://github.com/topjohnwu/Magisk.git”,“ssh_url”:“git@github.com:topjohnwu/Magisk.git”,“clone_url”:“https://github.com/topjohnwu/Magisk.git”,“svn_url”:“https://github.com/topjohnwu/Magisk”,“homepage”:“”,“size”:60644,“stargazers_count”:51334,“watchers_count”:51334,“language”:“C++”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:false,“has_pages”:true,“has_discussions”:false,“forks_count”:13349,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:34,“license”:{“key”:“gpl-3.0”,“name”:“GNU General Public License v3.0”,“spdx_id”:“GPL-3.0”,“url”:“https://api.github.com/licenses/gpl-3.0”,“node_id”:“MDc6TGljZW5zZTk=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[],“visibility”:“public”,“forks”:13349,“open_issues”:34,“watchers”:51334,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:79162682,“node_id”:“MDEwOlJlcG9zaXRvcnk3OTE2MjY4Mg==”,“name”:“joplin”,“full_name”:“laurent22/joplin”,“private”:false,“owner”:{“login”:“laurent22”,“id”:1285584,“node_id”:“MDQ6VXNlcjEyODU1ODQ=”,“avatar_url”:“https://avatars.githubusercontent.com/u/1285584?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/user
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I s/laurent22”,“html_url”:“https://github.com/laurent22”,“followers_url”:“https://api.github.com/users/laurent22/followers”,“following_url”:“https://api.github.com/users/laurent22/following{/other_user}”,“gists_url”:“https://api.github.com/users/laurent22/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/laurent22/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/laurent22/subscriptions”,“organizations_url”:“https://api.github.com/users/laurent22/orgs”,“repos_url”:“https://api.github.com/users/laurent22/repos”,“events_url”:“https://api.github.com/users/laurent22/events{/privacy}”,“received_events_url”:“https://api.github.com/users/laurent22/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/laurent22/joplin”,“description”:“Joplin - the privacy-focused note taking app with sync capabilities for Windows, macOS, Linux, Android and iOS.”,“fork”:false,“url”:“https://api.github.com/repos/laurent22/joplin”,“forks_url”:“https://api.github.com/repos/laurent22/joplin/forks”,“keys_url”:“https://api.github.com/repos/laurent22/joplin/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/laurent22/joplin/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/laurent22/joplin/teams”,“hooks_url”:“https://api.github.com/repos/laurent22/joplin/hooks”,“issue_events_url”:“https://api.github.com/repos/laurent22/joplin/issues/events{/number}”,“events_url”:“https://api.github.com/repos/laurent22/joplin/events”,“assignees_url”:“https://api.github.com/repos/laurent22/joplin/assignees{/user}”,“branches_url”:“https://api.github.com/repos/laurent22/joplin/branches{/branch}”,“tags_url”:“https://api.github.com/repos/laurent22/joplin/tags”,“blobs_url”:“https://api.github.com/repos/laurent22/joplin/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/laurent22/joplin/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/laurent22/joplin/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/laurent22/joplin/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/laurent22/joplin/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/laurent22/joplin/languages”,“stargazers_url”:“https://api.github.com/repos/laurent22/joplin/stargazers”,“contributors_url”:“https://api.github.com/repos/laurent22/joplin/contributors”,“subscribers_url”:“https://api.github.com/repos/laurent22/joplin/subscribers”,“subscription_url”:“https://api.github.com/repos/laurent22/joplin/subscription”,“commits_url”:“https://api.github.com/repos/laurent22/joplin/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/laurent22/joplin/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/laurent22/joplin/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/laurent22/joplin/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/laurent22/joplin/contents/{+path}”,“compare_url”:“https://api.github.com/repos/laurent22/joplin/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/laurent22/joplin/merges”,“archive_url”:“https://api.github.com/repos/laurent22/joplin/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/laurent22/joplin/downloads”,“issues_url”:“https://api.github.com/repos/laurent22/joplin/issues{/number}”,“pulls_url”:“https://api.github.com/repos/laurent22/joplin/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/laurent22/joplin/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/laurent22/joplin/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/laurent22/joplin/labels{/name}”,“releases_url”:“https://api.github.com/repos/laurent22/joplin/releases{/id}”,“deployments_url”:“https://api.github.com/repos/laurent22/joplin/deployments”,“created_at”:“2017-01-16T21:49:41Z”,“updated_at”:“2025-03-09T11:22:36Z”,“pushed_at”:“2025-03-09T09:38:16Z”,“git_url”:“git://github.com/laurent22/joplin.git”,“ssh_url”:“g
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I it@github.com:laurent22/joplin.git”,“clone_url”:“https://github.com/laurent22/joplin.git”,“svn_url”:“https://github.com/laurent22/joplin”,“homepage”:“https://joplinapp.org”,“size”:514568,“stargazers_count”:48061,“watchers_count”:48061,“language”:“TypeScript”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:false,“has_pages”:false,“has_discussions”:false,“forks_count”:5224,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:500,“license”:{“key”:“other”,“name”:“Other”,“spdx_id”:“NOASSERTION”,“url”:null,“node_id”:“MDc6TGljZW5zZTA=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“dropbox”,“electron”,“enex-files”,“evernote”,“javascript”,“joplin”,“nextcloud”,“nodejs”,“note-taking”,“onedrive”,“react-native”,“synchronisation”,“web-clipper”,“webdav”],“visibility”:“public”,“forks”:5224,“open_issues”:500,“watchers”:48061,“default_branch”:“dev”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:5152285,“node_id”:“MDEwOlJlcG9zaXRvcnk1MTUyMjg1”,“name”:“okhttp”,“full_name”:“square/okhttp”,“private”:false,“owner”:{“login”:“square”,“id”:82592,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjgyNTky”,“avatar_url”:“https://avatars.githubusercontent.com/u/82592?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/square”,“html_url”:“https://github.com/square”,“followers_url”:“https://api.github.com/users/square/followers”,“following_url”:“https://api.github.com/users/square/following{/other_user}”,“gists_url”:“https://api.github.com/users/square/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/square/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/square/subscriptions”,“organizations_url”:“https://api.github.com/users/square/orgs”,“repos_url”:“https://api.github.com/users/square/repos”,“events_url”:“https://api.github.com/users/square/events{/privacy}”,“received_events_url”:“https://api.github.com/users/square/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/square/okhttp”,“description”:“Square’s meticulous HTTP client for the JVM, Android, and GraalVM.”,“fork”:false,“url”:“https://api.github.com/repos/square/okhttp”,“forks_url”:“https://api.github.com/repos/square/okhttp/forks”,“keys_url”:“https://api.github.com/repos/square/okhttp/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/square/okhttp/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/square/okhttp/teams”,“hooks_url”:“https://api.github.com/repos/square/okhttp/hooks”,“issue_events_url”:“https://api.github.com/repos/square/okhttp/issues/events{/number}”,“events_url”:“https://api.github.com/repos/square/okhttp/events”,“assignees_url”:“https://api.github.com/repos/square/okhttp/assignees{/user}”,“branches_url”:“https://api.github.com/repos/square/okhttp/branches{/branch}”,“tags_url”:“https://api.github.com/repos/square/okhttp/tags”,“blobs_url”:“https://api.github.com/repos/square/okhttp/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/square/okhttp/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/square/okhttp/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/square/okhttp/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/square/okhttp/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/square/okhttp/languages”,“stargazers_url”:“https://api.github.com/repos/square/okhttp/stargazers”,“contributors_url”:“https://api.github.com/repos/square/okhttp/contributors”,“subscribers_url”:“https://api.github.com/repos/square/okhttp/subscribers”,“subscription_url”:“https://api.github.com/repos/square/okhttp/subscription”,“commits_url”:“https://api.github.com/repos/square/okhttp/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/square/okhttp/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/square/okhttp/comments{/number}”,“issue_comment_url”:“https://
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I api.github.com/repos/square/okhttp/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/square/okhttp/contents/{+path}”,“compare_url”:“https://api.github.com/repos/square/okhttp/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/square/okhttp/merges”,“archive_url”:“https://api.github.com/repos/square/okhttp/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/square/okhttp/downloads”,“issues_url”:“https://api.github.com/repos/square/okhttp/issues{/number}”,“pulls_url”:“https://api.github.com/repos/square/okhttp/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/square/okhttp/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/square/okhttp/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/square/okhttp/labels{/name}”,“releases_url”:“https://api.github.com/repos/square/okhttp/releases{/id}”,“deployments_url”:“https://api.github.com/repos/square/okhttp/deployments”,“created_at”:“2012-07-23T13:42:55Z”,“updated_at”:“2025-03-09T09:58:36Z”,“pushed_at”:“2025-03-04T12:37:54Z”,“git_url”:“git://github.com/square/okhttp.git”,“ssh_url”:“git@github.com:square/okhttp.git”,“clone_url”:“https://github.com/square/okhttp.git”,“svn_url”:“https://github.com/square/okhttp”,“homepage”:“https://square.github.io/okhttp/”,“size”:55271,“stargazers_count”:46194,“watchers_count”:46194,“language”:“Kotlin”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:false,“has_pages”:true,“has_discussions”:false,“forks_count”:9194,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:164,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“graalvm”,“java”,“kotlin”],“visibility”:“public”,“forks”:9194,“open_issues”:164,“watchers”:46194,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:51148780,“node_id”:“MDEwOlJlcG9zaXRvcnk1MTE0ODc4MA==”,“name”:“architecture-samples”,“full_name”:“android/architecture-samples”,“private”:false,“owner”:{“login”:“android”,“id”:32689599,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjMyNjg5NTk5”,“avatar_url”:“https://avatars.githubusercontent.com/u/32689599?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/android”,“html_url”:“https://github.com/android”,“followers_url”:“https://api.github.com/users/android/followers”,“following_url”:“https://api.github.com/users/android/following{/other_user}”,“gists_url”:“https://api.github.com/users/android/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/android/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/android/subscriptions”,“organizations_url”:“https://api.github.com/users/android/orgs”,“repos_url”:“https://api.github.com/users/android/repos”,“events_url”:“https://api.github.com/users/android/events{/privacy}”,“received_events_url”:“https://api.github.com/users/android/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/android/architecture-samples”,“description”:“A collection of samples to discuss and showcase different architectural tools and patterns for Android apps.”,“fork”:false,“url”:“https://api.github.com/repos/android/architecture-samples”,“forks_url”:“https://api.github.com/repos/android/architecture-samples/forks”,“keys_url”:“https://api.github.com/repos/android/architecture-samples/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/android/architecture-samples/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/android/architecture-samples/teams”,“hooks_url”:“https://api.github.com/repos/android/architecture-samples/hooks”,“issue_events_url”:“https://api.github.com/repos/android/architecture-samples/issues/events{/numbe
2025-03-09 19:40:49.438 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I r}”,“events_url”:“https://api.github.com/repos/android/architecture-samples/events”,“assignees_url”:“https://api.github.com/repos/android/architecture-samples/assignees{/user}”,“branches_url”:“https://api.github.com/repos/android/architecture-samples/branches{/branch}”,“tags_url”:“https://api.github.com/repos/android/architecture-samples/tags”,“blobs_url”:“https://api.github.com/repos/android/architecture-samples/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/android/architecture-samples/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/android/architecture-samples/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/android/architecture-samples/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/android/architecture-samples/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/android/architecture-samples/languages”,“stargazers_url”:“https://api.github.com/repos/android/architecture-samples/stargazers”,“contributors_url”:“https://api.github.com/repos/android/architecture-samples/contributors”,“subscribers_url”:“https://api.github.com/repos/android/architecture-samples/subscribers”,“subscription_url”:“https://api.github.com/repos/android/architecture-samples/subscription”,“commits_url”:“https://api.github.com/repos/android/architecture-samples/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/android/architecture-samples/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/android/architecture-samples/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/android/architecture-samples/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/android/architecture-samples/contents/{+path}”,“compare_url”:“https://api.github.com/repos/android/architecture-samples/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/android/architecture-samples/merges”,“archive_url”:“https://api.github.com/repos/android/architecture-samples/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/android/architecture-samples/downloads”,“issues_url”:“https://api.github.com/repos/android/architecture-samples/issues{/number}”,“pulls_url”:“https://api.github.com/repos/android/architecture-samples/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/android/architecture-samples/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/android/architecture-samples/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/android/architecture-samples/labels{/name}”,“releases_url”:“https://api.github.com/repos/android/architecture-samples/releases{/id}”,“deployments_url”:“https://api.github.com/repos/android/architecture-samples/deployments”,“created_at”:“2016-02-05T13:42:07Z”,“updated_at”:“2025-03-09T10:50:27Z”,“pushed_at”:“2025-03-04T23:20:20Z”,“git_url”:“git://github.com/android/architecture-samples.git”,“ssh_url”:“git@github.com:android/architecture-samples.git”,“clone_url”:“https://github.com/android/architecture-samples.git”,“svn_url”:“https://github.com/android/architecture-samples”,“homepage”:“”,“size”:13420,“stargazers_count”:44822,“watchers_count”:44822,“language”:“Kotlin”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:11700,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:202,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“android-architecture”,“samples”],“visibility”:“public”,“forks”:11700,“open_issues”:202,“watchers”:44822,“default_branch”:“main”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:892275,“node_id”:“MDEwOlJlcG9zaXRvcnk4OTIyNzU=”,“name”:“retrofit”,“full_name”:“square/retrofit”,“private”:fal
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I se,“owner”:{“login”:“square”,“id”:82592,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjgyNTky”,“avatar_url”:“https://avatars.githubusercontent.com/u/82592?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/square”,“html_url”:“https://github.com/square”,“followers_url”:“https://api.github.com/users/square/followers”,“following_url”:“https://api.github.com/users/square/following{/other_user}”,“gists_url”:“https://api.github.com/users/square/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/square/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/square/subscriptions”,“organizations_url”:“https://api.github.com/users/square/orgs”,“repos_url”:“https://api.github.com/users/square/repos”,“events_url”:“https://api.github.com/users/square/events{/privacy}”,“received_events_url”:“https://api.github.com/users/square/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/square/retrofit”,“description”:“A type-safe HTTP client for Android and the JVM”,“fork”:false,“url”:“https://api.github.com/repos/square/retrofit”,“forks_url”:“https://api.github.com/repos/square/retrofit/forks”,“keys_url”:“https://api.github.com/repos/square/retrofit/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/square/retrofit/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/square/retrofit/teams”,“hooks_url”:“https://api.github.com/repos/square/retrofit/hooks”,“issue_events_url”:“https://api.github.com/repos/square/retrofit/issues/events{/number}”,“events_url”:“https://api.github.com/repos/square/retrofit/events”,“assignees_url”:“https://api.github.com/repos/square/retrofit/assignees{/user}”,“branches_url”:“https://api.github.com/repos/square/retrofit/branches{/branch}”,“tags_url”:“https://api.github.com/repos/square/retrofit/tags”,“blobs_url”:“https://api.github.com/repos/square/retrofit/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/square/retrofit/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/square/retrofit/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/square/retrofit/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/square/retrofit/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/square/retrofit/languages”,“stargazers_url”:“https://api.github.com/repos/square/retrofit/stargazers”,“contributors_url”:“https://api.github.com/repos/square/retrofit/contributors”,“subscribers_url”:“https://api.github.com/repos/square/retrofit/subscribers”,“subscription_url”:“https://api.github.com/repos/square/retrofit/subscription”,“commits_url”:“https://api.github.com/repos/square/retrofit/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/square/retrofit/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/square/retrofit/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/square/retrofit/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/square/retrofit/contents/{+path}”,“compare_url”:“https://api.github.com/repos/square/retrofit/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/square/retrofit/merges”,“archive_url”:“https://api.github.com/repos/square/retrofit/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/square/retrofit/downloads”,“issues_url”:“https://api.github.com/repos/square/retrofit/issues{/number}”,“pulls_url”:“https://api.github.com/repos/square/retrofit/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/square/retrofit/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/square/retrofit/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/square/retrofit/labels{/name}”,“releases_url”:“https://api.github.com/repos/square/retrofit/releases{/id}”,“deployments_url”:“https://api.github.com/repos/square/retrofit/deployments”,“created_at”:“2010-09-06T21:39:43Z”,“updated_at”:“2025-03-09T05:52:53Z”,“pushed_at”:“2025-03-06T19:
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I 47:54Z”,“git_url”:“git://github.com/square/retrofit.git”,“ssh_url”:“git@github.com:square/retrofit.git”,“clone_url”:“https://github.com/square/retrofit.git”,“svn_url”:“https://github.com/square/retrofit”,“homepage”:“https://square.github.io/retrofit/”,“size”:5218,“stargazers_count”:43359,“watchers_count”:43359,“language”:“HTML”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:true,“has_pages”:true,“has_discussions”:true,“forks_count”:7310,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:157,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“java”],“visibility”:“public”,“forks”:7310,“open_issues”:157,“watchers”:43359,“default_branch”:“trunk”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:27442967,“node_id”:“MDEwOlJlcG9zaXRvcnkyNzQ0Mjk2Nw==”,“name”:“fastlane”,“full_name”:“fastlane/fastlane”,“private”:false,“owner”:{“login”:“fastlane”,“id”:11098337,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjExMDk4MzM3”,“avatar_url”:“https://avatars.githubusercontent.com/u/11098337?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/fastlane”,“html_url”:“https://github.com/fastlane”,“followers_url”:“https://api.github.com/users/fastlane/followers”,“following_url”:“https://api.github.com/users/fastlane/following{/other_user}”,“gists_url”:“https://api.github.com/users/fastlane/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/fastlane/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/fastlane/subscriptions”,“organizations_url”:“https://api.github.com/users/fastlane/orgs”,“repos_url”:“https://api.github.com/users/fastlane/repos”,“events_url”:“https://api.github.com/users/fastlane/events{/privacy}”,“received_events_url”:“https://api.github.com/users/fastlane/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/fastlane/fastlane”,“description”:“🚀 The easiest way to automate building and releasing your iOS and Android apps”,“fork”:false,“url”:“https://api.github.com/repos/fastlane/fastlane”,“forks_url”:“https://api.github.com/repos/fastlane/fastlane/forks”,“keys_url”:“https://api.github.com/repos/fastlane/fastlane/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/fastlane/fastlane/teams”,“hooks_url”:“https://api.github.com/repos/fastlane/fastlane/hooks”,“issue_events_url”:“https://api.github.com/repos/fastlane/fastlane/issues/events{/number}”,“events_url”:“https://api.github.com/repos/fastlane/fastlane/events”,“assignees_url”:“https://api.github.com/repos/fastlane/fastlane/assignees{/user}”,“branches_url”:“https://api.github.com/repos/fastlane/fastlane/branches{/branch}”,“tags_url”:“https://api.github.com/repos/fastlane/fastlane/tags”,“blobs_url”:“https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/fastlane/fastlane/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/fastlane/fastlane/languages”,“stargazers_url”:“https://api.github.com/repos/fastlane/fastlane/stargazers”,“contributors_url”:“https://api.github.com/repos/fastlane/fastlane/contributors”,“subscribers_url”:“https://api.github.com/repos/fastlane/fastlane/subscribers”,“subscription_url”:“https://api.github.com/repos/fastlane/fastlane/subscription”,“commits_url”:“https://api.github.com/repos/fastlane/fastlane/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/fastlane/fastlane/git/co
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I mmits{/sha}”,“comments_url”:“https://api.github.com/repos/fastlane/fastlane/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/fastlane/fastlane/contents/{+path}”,“compare_url”:“https://api.github.com/repos/fastlane/fastlane/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/fastlane/fastlane/merges”,“archive_url”:“https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/fastlane/fastlane/downloads”,“issues_url”:“https://api.github.com/repos/fastlane/fastlane/issues{/number}”,“pulls_url”:“https://api.github.com/repos/fastlane/fastlane/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/fastlane/fastlane/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/fastlane/fastlane/labels{/name}”,“releases_url”:“https://api.github.com/repos/fastlane/fastlane/releases{/id}”,“deployments_url”:“https://api.github.com/repos/fastlane/fastlane/deployments”,“created_at”:“2014-12-02T17:00:38Z”,“updated_at”:“2025-03-09T10:13:07Z”,“pushed_at”:“2025-03-07T22:25:46Z”,“git_url”:“git://github.com/fastlane/fastlane.git”,“ssh_url”:“git@github.com:fastlane/fastlane.git”,“clone_url”:“https://github.com/fastlane/fastlane.git”,“svn_url”:“https://github.com/fastlane/fastlane”,“homepage”:“https://fastlane.tools”,“size”:85117,“stargazers_count”:39945,“watchers_count”:39945,“language”:“Ruby”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:false,“has_pages”:false,“has_discussions”:true,“forks_count”:5772,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:837,“license”:{“key”:“mit”,“name”:“MIT License”,“spdx_id”:“MIT”,“url”:“https://api.github.com/licenses/mit”,“node_id”:“MDc6TGljZW5zZTEz”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“apps”,“automation”,“deployment”,“fastlane”,“hacktoberfest”,“hacktoberfest2021”,“ios”,“mobile”,“ruby”,“screenshots”],“visibility”:“public”,“forks”:5772,“open_issues”:837,“watchers”:39945,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:44804216,“node_id”:“MDEwOlJlcG9zaXRvcnk0NDgwNDIxNg==”,“name”:“termux-app”,“full_name”:“termux/termux-app”,“private”:false,“owner”:{“login”:“termux”,“id”:8104776,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjgxMDQ3NzY=”,“avatar_url”:“https://avatars.githubusercontent.com/u/8104776?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/termux”,“html_url”:“https://github.com/termux”,“followers_url”:“https://api.github.com/users/termux/followers”,“following_url”:“https://api.github.com/users/termux/following{/other_user}”,“gists_url”:“https://api.github.com/users/termux/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/termux/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/termux/subscriptions”,“organizations_url”:“https://api.github.com/users/termux/orgs”,“repos_url”:“https://api.github.com/users/termux/repos”,“events_url”:“https://api.github.com/users/termux/events{/privacy}”,“received_events_url”:“https://api.github.com/users/termux/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/termux/termux-app”,“description”:“Termux - a terminal emulator application for Android OS extendible by variety of packages.”,“fork”:false,“url”:“https://api.github.com/repos/termux/termux-app”,“forks_url”:“https://api.github.com/repos/termux/termux-app/forks”,“keys_url”:“https://api.github.com/repos/termux/termux-app/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/termux/termux-app/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/termux/termux-app/teams”,“hooks_url”:“https://api.github.com/repos/termux/termu
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I x-app/hooks”,“issue_events_url”:“https://api.github.com/repos/termux/termux-app/issues/events{/number}”,“events_url”:“https://api.github.com/repos/termux/termux-app/events”,“assignees_url”:“https://api.github.com/repos/termux/termux-app/assignees{/user}”,“branches_url”:“https://api.github.com/repos/termux/termux-app/branches{/branch}”,“tags_url”:“https://api.github.com/repos/termux/termux-app/tags”,“blobs_url”:“https://api.github.com/repos/termux/termux-app/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/termux/termux-app/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/termux/termux-app/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/termux/termux-app/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/termux/termux-app/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/termux/termux-app/languages”,“stargazers_url”:“https://api.github.com/repos/termux/termux-app/stargazers”,“contributors_url”:“https://api.github.com/repos/termux/termux-app/contributors”,“subscribers_url”:“https://api.github.com/repos/termux/termux-app/subscribers”,“subscription_url”:“https://api.github.com/repos/termux/termux-app/subscription”,“commits_url”:“https://api.github.com/repos/termux/termux-app/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/termux/termux-app/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/termux/termux-app/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/termux/termux-app/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/termux/termux-app/contents/{+path}”,“compare_url”:“https://api.github.com/repos/termux/termux-app/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/termux/termux-app/merges”,“archive_url”:“https://api.github.com/repos/termux/termux-app/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/termux/termux-app/downloads”,“issues_url”:“https://api.github.com/repos/termux/termux-app/issues{/number}”,“pulls_url”:“https://api.github.com/repos/termux/termux-app/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/termux/termux-app/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/termux/termux-app/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/termux/termux-app/labels{/name}”,“releases_url”:“https://api.github.com/repos/termux/termux-app/releases{/id}”,“deployments_url”:“https://api.github.com/repos/termux/termux-app/deployments”,“created_at”:“2015-10-23T09:42:46Z”,“updated_at”:“2025-03-09T11:33:09Z”,“pushed_at”:“2025-01-24T21:32:02Z”,“git_url”:“git://github.com/termux/termux-app.git”,“ssh_url”:“git@github.com:termux/termux-app.git”,“clone_url”:“https://github.com/termux/termux-app.git”,“svn_url”:“https://github.com/termux/termux-app”,“homepage”:“https://f-droid.org/en/packages/com.termux”,“size”:4072,“stargazers_count”:39530,“watchers_count”:39530,“language”:“Java”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:true,“forks_count”:4232,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:412,“license”:{“key”:“other”,“name”:“Other”,“spdx_id”:“NOASSERTION”,“url”:null,“node_id”:“MDc6TGljZW5zZTA=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“hacktoberfest”,“linux”,“terminal”,“termux”],“visibility”:“public”,“forks”:4232,“open_issues”:412,“watchers”:39530,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:186733095,“node_id”:“MDEwOlJlcG9zaXRvcnkxODY3MzMwOTU=”,“name”:“v2rayNG”,“full_name”:“2dust/v2rayNG”,“private”:false,“owner”:{“login”:“2dust”,“id”:31833384,“node_id”:“MDQ6VXNlcjMxODMzMzg0”,“avatar_url”:“https://avatars.githubusercontent.com/u/31833384?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/2dust”,“html_url”:“https://github.com/2dust”,“followers_url”:“https://api.github.
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I com/users/2dust/followers”,“following_url”:“https://api.github.com/users/2dust/following{/other_user}”,“gists_url”:“https://api.github.com/users/2dust/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/2dust/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/2dust/subscriptions”,“organizations_url”:“https://api.github.com/users/2dust/orgs”,“repos_url”:“https://api.github.com/users/2dust/repos”,“events_url”:“https://api.github.com/users/2dust/events{/privacy}”,“received_events_url”:“https://api.github.com/users/2dust/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/2dust/v2rayNG”,“description”:“A V2Ray client for Android, support Xray core and v2fly core”,“fork”:false,“url”:“https://api.github.com/repos/2dust/v2rayNG”,“forks_url”:“https://api.github.com/repos/2dust/v2rayNG/forks”,“keys_url”:“https://api.github.com/repos/2dust/v2rayNG/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/2dust/v2rayNG/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/2dust/v2rayNG/teams”,“hooks_url”:“https://api.github.com/repos/2dust/v2rayNG/hooks”,“issue_events_url”:“https://api.github.com/repos/2dust/v2rayNG/issues/events{/number}”,“events_url”:“https://api.github.com/repos/2dust/v2rayNG/events”,“assignees_url”:“https://api.github.com/repos/2dust/v2rayNG/assignees{/user}”,“branches_url”:“https://api.github.com/repos/2dust/v2rayNG/branches{/branch}”,“tags_url”:“https://api.github.com/repos/2dust/v2rayNG/tags”,“blobs_url”:“https://api.github.com/repos/2dust/v2rayNG/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/2dust/v2rayNG/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/2dust/v2rayNG/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/2dust/v2rayNG/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/2dust/v2rayNG/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/2dust/v2rayNG/languages”,“stargazers_url”:“https://api.github.com/repos/2dust/v2rayNG/stargazers”,“contributors_url”:“https://api.github.com/repos/2dust/v2rayNG/contributors”,“subscribers_url”:“https://api.github.com/repos/2dust/v2rayNG/subscribers”,“subscription_url”:“https://api.github.com/repos/2dust/v2rayNG/subscription”,“commits_url”:“https://api.github.com/repos/2dust/v2rayNG/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/2dust/v2rayNG/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/2dust/v2rayNG/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/2dust/v2rayNG/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/2dust/v2rayNG/contents/{+path}”,“compare_url”:“https://api.github.com/repos/2dust/v2rayNG/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/2dust/v2rayNG/merges”,“archive_url”:“https://api.github.com/repos/2dust/v2rayNG/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/2dust/v2rayNG/downloads”,“issues_url”:“https://api.github.com/repos/2dust/v2rayNG/issues{/number}”,“pulls_url”:“https://api.github.com/repos/2dust/v2rayNG/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/2dust/v2rayNG/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/2dust/v2rayNG/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/2dust/v2rayNG/labels{/name}”,“releases_url”:“https://api.github.com/repos/2dust/v2rayNG/releases{/id}”,“deployments_url”:“https://api.github.com/repos/2dust/v2rayNG/deployments”,“created_at”:“2019-05-15T02:15:31Z”,“updated_at”:“2025-03-09T11:27:45Z”,“pushed_at”:“2025-03-07T09:45:22Z”,“git_url”:“git://github.com/2dust/v2rayNG.git”,“ssh_url”:“git@github.com:2dust/v2rayNG.git”,“clone_url”:“https://github.com/2dust/v2rayNG.git”,“svn_url”:“https://github.com/2dust/v2rayNG”,“homepage”:“https://1.2345345.xyz”,“size”:264054,“stargazers_count”:38972,“watchers_count”:38972,“language”:“Kotlin”,“has_issues”:true,“has_projects”:true,“has_downlo
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I ads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:true,“forks_count”:5833,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:13,“license”:{“key”:“gpl-3.0”,“name”:“GNU General Public License v3.0”,“spdx_id”:“GPL-3.0”,“url”:“https://api.github.com/licenses/gpl-3.0”,“node_id”:“MDc6TGljZW5zZTk=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“proxy”,“shadowsocks”,“socks5”,“trojan”,“v2fly”,“v2ray”,“vless”,“vmess”,“vpn”,“xray”,“xtls”],“visibility”:“public”,“forks”:5833,“open_issues”:13,“watchers”:38972,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:65750241,“node_id”:“MDEwOlJlcG9zaXRvcnk2NTc1MDI0MQ==”,“name”:“expo”,“full_name”:“expo/expo”,“private”:false,“owner”:{“login”:“expo”,“id”:12504344,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjEyNTA0MzQ0”,“avatar_url”:“https://avatars.githubusercontent.com/u/12504344?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/expo”,“html_url”:“https://github.com/expo”,“followers_url”:“https://api.github.com/users/expo/followers”,“following_url”:“https://api.github.com/users/expo/following{/other_user}”,“gists_url”:“https://api.github.com/users/expo/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/expo/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/expo/subscriptions”,“organizations_url”:“https://api.github.com/users/expo/orgs”,“repos_url”:“https://api.github.com/users/expo/repos”,“events_url”:“https://api.github.com/users/expo/events{/privacy}”,“received_events_url”:“https://api.github.com/users/expo/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/expo/expo”,“description”:“An open-source framework for making universal native apps with React. Expo runs on Android, iOS, and the web.”,“fork”:false,“url”:“https://api.github.com/repos/expo/expo”,“forks_url”:“https://api.github.com/repos/expo/expo/forks”,“keys_url”:“https://api.github.com/repos/expo/expo/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/expo/expo/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/expo/expo/teams”,“hooks_url”:“https://api.github.com/repos/expo/expo/hooks”,“issue_events_url”:“https://api.github.com/repos/expo/expo/issues/events{/number}”,“events_url”:“https://api.github.com/repos/expo/expo/events”,“assignees_url”:“https://api.github.com/repos/expo/expo/assignees{/user}”,“branches_url”:“https://api.github.com/repos/expo/expo/branches{/branch}”,“tags_url”:“https://api.github.com/repos/expo/expo/tags”,“blobs_url”:“https://api.github.com/repos/expo/expo/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/expo/expo/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/expo/expo/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/expo/expo/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/expo/expo/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/expo/expo/languages”,“stargazers_url”:“https://api.github.com/repos/expo/expo/stargazers”,“contributors_url”:“https://api.github.com/repos/expo/expo/contributors”,“subscribers_url”:“https://api.github.com/repos/expo/expo/subscribers”,“subscription_url”:“https://api.github.com/repos/expo/expo/subscription”,“commits_url”:“https://api.github.com/repos/expo/expo/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/expo/expo/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/expo/expo/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/expo/expo/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/expo/expo/contents/{+path}”,“compare_url”:“https://api.github.com/repos/expo/expo/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/expo/expo/merges”,“archive_url”:“https://api.github.com/repos/expo/expo/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/exp
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I o/expo/downloads”,“issues_url”:“https://api.github.com/repos/expo/expo/issues{/number}”,“pulls_url”:“https://api.github.com/repos/expo/expo/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/expo/expo/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/expo/expo/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/expo/expo/labels{/name}”,“releases_url”:“https://api.github.com/repos/expo/expo/releases{/id}”,“deployments_url”:“https://api.github.com/repos/expo/expo/deployments”,“created_at”:“2016-08-15T17:14:25Z”,“updated_at”:“2025-03-09T10:35:48Z”,“pushed_at”:“2025-03-08T12:16:42Z”,“git_url”:“git://github.com/expo/expo.git”,“ssh_url”:“git@github.com:expo/expo.git”,“clone_url”:“https://github.com/expo/expo.git”,“svn_url”:“https://github.com/expo/expo”,“homepage”:“https://docs.expo.dev”,“size”:3244554,“stargazers_count”:38026,“watchers_count”:38026,“language”:“TypeScript”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:true,“forks_count”:6211,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:823,“license”:{“key”:“mit”,“name”:“MIT License”,“spdx_id”:“MIT”,“url”:“https://api.github.com/licenses/mit”,“node_id”:“MDc6TGljZW5zZTEz”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“app-framework”,“expo”,“framework”,“frontend”,“ios”,“javascript”,“mobile”,“native”,“native-apps”,“react”,“react-native”,“typescript”,“universal”,“web”,“web-framework”],“visibility”:“public”,“forks”:6211,“open_issues”:823,“watchers”:38026,“default_branch”:“main”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:19148949,“node_id”:“MDEwOlJlcG9zaXRvcnkxOTE0ODk0OQ==”,“name”:“MPAndroidChart”,“full_name”:“PhilJay/MPAndroidChart”,“private”:false,“owner”:{“login”:“PhilJay”,“id”:6759734,“node_id”:“MDQ6VXNlcjY3NTk3MzQ=”,“avatar_url”:“https://avatars.githubusercontent.com/u/6759734?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/PhilJay”,“html_url”:“https://github.com/PhilJay”,“followers_url”:“https://api.github.com/users/PhilJay/followers”,“following_url”:“https://api.github.com/users/PhilJay/following{/other_user}”,“gists_url”:“https://api.github.com/users/PhilJay/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/PhilJay/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/PhilJay/subscriptions”,“organizations_url”:“https://api.github.com/users/PhilJay/orgs”,“repos_url”:“https://api.github.com/users/PhilJay/repos”,“events_url”:“https://api.github.com/users/PhilJay/events{/privacy}”,“received_events_url”:“https://api.github.com/users/PhilJay/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/PhilJay/MPAndroidChart”,“description”:“A powerful 🚀 Android chart view / graph view library, supporting line- bar- pie- radar- bubble- and candlestick charts as well as scaling, panning and animations.”,“fork”:false,“url”:“https://api.github.com/repos/PhilJay/MPAndroidChart”,“forks_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/forks”,“keys_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/teams”,“hooks_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/hooks”,“issue_events_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/issues/events{/number}”,“events_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/events”,“assignees_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/assignees{/user}”,“branches_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/branches{/branch}”,“tags_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/tags”,“blobs_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/languages”,“stargazers_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/stargazers”,“contributors_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/contributors”,“subscribers_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/subscribers”,“subscription_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/subscription”,“commits_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/contents/{+path}”,“compare_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/merges”,“archive_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/downloads”,“issues_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/issues{/number}”,“pulls_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/labels{/name}”,“releases_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/releases{/id}”,“deployments_url”:“https://api.github.com/repos/PhilJay/MPAndroidChart/deployments”,“created_at”:“2014-04-25T14:29:47Z”,“updated_at”:“2025-03-09T10:51:18Z”,“pushed_at”:“2024-08-20T14:01:30Z”,“git_url”:“git://github.com/PhilJay/MPAndroidChart.git”,“ssh_url”:“git@github.com:PhilJay/MPAndroidChart.git”,“clone_url”:“https://github.com/PhilJay/MPAndroidChart.git”,“svn_url”:“https://github.com/PhilJay/MPAndroidChart”,“homepage”:“”,“size”:21720,“stargazers_count”:37849,“watchers_count”:37849,“language”:“Java”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:9037,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:2191,“license”:{“key”:“other”,“name”:“Other”,“spdx_id”:“NOASSERTION”,“url”:null,“node_id”:“MDc6TGljZW5zZTA=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“chart”,“graph”,“java”,“mpandroidchart”],“visibility”:“public”,“forks”:9037,“open_issues”:2191,“watchers”:37849,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:7190986,“node_id”:“MDEwOlJlcG9zaXRvcnk3MTkwOTg2”,“name”:“shadowsocks-android”,“full_name”:“shadowsocks/shadowsocks-android”,“private”:false,“owner”:{“login”:“shadowsocks”,“id”:3006190,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjMwMDYxOTA=”,“avatar_url”:“https://avatars.githubusercontent.com/u/3006190?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/shadowsocks”,“html_url”:“https://github.com/shadowsocks”,“followers_url”:“https://api.github.com/users/shadowsocks/followers”,“following_url”:“https://api.github.com/users/shadowsocks/following{/other_user}”,“gists_url”:“https://api.github.com/users/shadowsocks/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/shadowsocks/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.co
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I m/users/shadowsocks/subscriptions”,“organizations_url”:“https://api.github.com/users/shadowsocks/orgs”,“repos_url”:“https://api.github.com/users/shadowsocks/repos”,“events_url”:“https://api.github.com/users/shadowsocks/events{/privacy}”,“received_events_url”:“https://api.github.com/users/shadowsocks/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/shadowsocks/shadowsocks-android”,“description”:“A shadowsocks client for Android”,“fork”:false,“url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android”,“forks_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/forks”,“keys_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/teams”,“hooks_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/hooks”,“issue_events_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/issues/events{/number}”,“events_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/events”,“assignees_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/assignees{/user}”,“branches_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/branches{/branch}”,“tags_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/tags”,“blobs_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/languages”,“stargazers_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/stargazers”,“contributors_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/contributors”,“subscribers_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/subscribers”,“subscription_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/subscription”,“commits_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/contents/{+path}”,“compare_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/merges”,“archive_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/downloads”,“issues_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/issues{/number}”,“pulls_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/labels{/name}”,“releases_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/releases{/id}”,“deployments_url”:“https://api.github.com/repos/shadowsocks/shadowsocks-android/deployments”,“created_at”:“2012-12-16T13:40:29Z”,“updated_at”:“2
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I 025-03-09T03:03:57Z”,“pushed_at”:“2025-02-10T19:00:52Z”,“git_url”:“git://github.com/shadowsocks/shadowsocks-android.git”,“ssh_url”:“git@github.com:shadowsocks/shadowsocks-android.git”,“clone_url”:“https://github.com/shadowsocks/shadowsocks-android.git”,“svn_url”:“https://github.com/shadowsocks/shadowsocks-android”,“homepage”:“”,“size”:53777,“stargazers_count”:35525,“watchers_count”:35525,“language”:“Kotlin”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:true,“forks_count”:11581,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:49,“license”:{“key”:“other”,“name”:“Other”,“spdx_id”:“NOASSERTION”,“url”:null,“node_id”:“MDc6TGljZW5zZTA=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“shadowsocks”],“visibility”:“public”,“forks”:11581,“open_issues”:49,“watchers”:35525,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:70198875,“node_id”:“MDEwOlJlcG9zaXRvcnk3MDE5ODg3NQ==”,“name”:“lottie-android”,“full_name”:“airbnb/lottie-android”,“private”:false,“owner”:{“login”:“airbnb”,“id”:698437,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjY5ODQzNw==”,“avatar_url”:“https://avatars.githubusercontent.com/u/698437?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/airbnb”,“html_url”:“https://github.com/airbnb”,“followers_url”:“https://api.github.com/users/airbnb/followers”,“following_url”:“https://api.github.com/users/airbnb/following{/other_user}”,“gists_url”:“https://api.github.com/users/airbnb/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/airbnb/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/airbnb/subscriptions”,“organizations_url”:“https://api.github.com/users/airbnb/orgs”,“repos_url”:“https://api.github.com/users/airbnb/repos”,“events_url”:“https://api.github.com/users/airbnb/events{/privacy}”,“received_events_url”:“https://api.github.com/users/airbnb/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/airbnb/lottie-android”,“description”:“Render After Effects animations natively on Android and iOS, Web, and React Native”,“fork”:false,“url”:“https://api.github.com/repos/airbnb/lottie-android”,“forks_url”:“https://api.github.com/repos/airbnb/lottie-android/forks”,“keys_url”:“https://api.github.com/repos/airbnb/lottie-android/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/airbnb/lottie-android/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/airbnb/lottie-android/teams”,“hooks_url”:“https://api.github.com/repos/airbnb/lottie-android/hooks”,“issue_events_url”:“https://api.github.com/repos/airbnb/lottie-android/issues/events{/number}”,“events_url”:“https://api.github.com/repos/airbnb/lottie-android/events”,“assignees_url”:“https://api.github.com/repos/airbnb/lottie-android/assignees{/user}”,“branches_url”:“https://api.github.com/repos/airbnb/lottie-android/branches{/branch}”,“tags_url”:“https://api.github.com/repos/airbnb/lottie-android/tags”,“blobs_url”:“https://api.github.com/repos/airbnb/lottie-android/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/airbnb/lottie-android/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/airbnb/lottie-android/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/airbnb/lottie-android/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/airbnb/lottie-android/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/airbnb/lottie-android/languages”,“stargazers_url”:“https://api.github.com/repos/airbnb/lottie-android/stargazers”,“contributors_url”:“https://api.github.com/repos/airbnb/lottie-android/contributors”,“subscribers_url”:“https://api.github.com/repos/airbnb/lottie-android/subscribers”,“subscription_url”:“https://api.github.com/repos/airbnb/lottie-android/subscription”,“commits_url”:“https://api.github.com/repos/
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I airbnb/lottie-android/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/airbnb/lottie-android/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/airbnb/lottie-android/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/airbnb/lottie-android/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/airbnb/lottie-android/contents/{+path}”,“compare_url”:“https://api.github.com/repos/airbnb/lottie-android/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/airbnb/lottie-android/merges”,“archive_url”:“https://api.github.com/repos/airbnb/lottie-android/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/airbnb/lottie-android/downloads”,“issues_url”:“https://api.github.com/repos/airbnb/lottie-android/issues{/number}”,“pulls_url”:“https://api.github.com/repos/airbnb/lottie-android/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/airbnb/lottie-android/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/airbnb/lottie-android/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/airbnb/lottie-android/labels{/name}”,“releases_url”:“https://api.github.com/repos/airbnb/lottie-android/releases{/id}”,“deployments_url”:“https://api.github.com/repos/airbnb/lottie-android/deployments”,“created_at”:“2016-10-06T22:42:42Z”,“updated_at”:“2025-03-09T10:52:18Z”,“pushed_at”:“2025-03-04T01:41:10Z”,“git_url”:“git://github.com/airbnb/lottie-android.git”,“ssh_url”:“git@github.com:airbnb/lottie-android.git”,“clone_url”:“https://github.com/airbnb/lottie-android.git”,“svn_url”:“https://github.com/airbnb/lottie-android”,“homepage”:“http://airbnb.io/lottie/”,“size”:137128,“stargazers_count”:35223,“watchers_count”:35223,“language”:“Java”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:false,“has_pages”:false,“has_discussions”:false,“forks_count”:5435,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:19,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“after-effects”,“airbnb”,“android”,“animation”,“lottie”],“visibility”:“public”,“forks”:5435,“open_issues”:19,“watchers”:35223,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:11267509,“node_id”:“MDEwOlJlcG9zaXRvcnkxMTI2NzUwOQ==”,“name”:“glide”,“full_name”:“bumptech/glide”,“private”:false,“owner”:{“login”:“bumptech”,“id”:423539,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjQyMzUzOQ==”,“avatar_url”:“https://avatars.githubusercontent.com/u/423539?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/bumptech”,“html_url”:“https://github.com/bumptech”,“followers_url”:“https://api.github.com/users/bumptech/followers”,“following_url”:“https://api.github.com/users/bumptech/following{/other_user}”,“gists_url”:“https://api.github.com/users/bumptech/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/bumptech/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/bumptech/subscriptions”,“organizations_url”:“https://api.github.com/users/bumptech/orgs”,“repos_url”:“https://api.github.com/users/bumptech/repos”,“events_url”:“https://api.github.com/users/bumptech/events{/privacy}”,“received_events_url”:“https://api.github.com/users/bumptech/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/bumptech/glide”,“description”:“An image loading and caching library for Android focused on smooth scrolling”,“fork”:false,“url”:“https://api.github.com/repos/bumptech/glide”,“forks_url”:“https://api.github.com/repos/bumptech/glide/forks”,“keys_url”:“https://api.github.com/repos/bumptech/glide/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/bumptech/glide/collaborators{/colla
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I borator}”,“teams_url”:“https://api.github.com/repos/bumptech/glide/teams”,“hooks_url”:“https://api.github.com/repos/bumptech/glide/hooks”,“issue_events_url”:“https://api.github.com/repos/bumptech/glide/issues/events{/number}”,“events_url”:“https://api.github.com/repos/bumptech/glide/events”,“assignees_url”:“https://api.github.com/repos/bumptech/glide/assignees{/user}”,“branches_url”:“https://api.github.com/repos/bumptech/glide/branches{/branch}”,“tags_url”:“https://api.github.com/repos/bumptech/glide/tags”,“blobs_url”:“https://api.github.com/repos/bumptech/glide/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/bumptech/glide/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/bumptech/glide/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/bumptech/glide/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/bumptech/glide/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/bumptech/glide/languages”,“stargazers_url”:“https://api.github.com/repos/bumptech/glide/stargazers”,“contributors_url”:“https://api.github.com/repos/bumptech/glide/contributors”,“subscribers_url”:“https://api.github.com/repos/bumptech/glide/subscribers”,“subscription_url”:“https://api.github.com/repos/bumptech/glide/subscription”,“commits_url”:“https://api.github.com/repos/bumptech/glide/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/bumptech/glide/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/bumptech/glide/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/bumptech/glide/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/bumptech/glide/contents/{+path}”,“compare_url”:“https://api.github.com/repos/bumptech/glide/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/bumptech/glide/merges”,“archive_url”:“https://api.github.com/repos/bumptech/glide/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/bumptech/glide/downloads”,“issues_url”:“https://api.github.com/repos/bumptech/glide/issues{/number}”,“pulls_url”:“https://api.github.com/repos/bumptech/glide/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/bumptech/glide/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/bumptech/glide/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/bumptech/glide/labels{/name}”,“releases_url”:“https://api.github.com/repos/bumptech/glide/releases{/id}”,“deployments_url”:“https://api.github.com/repos/bumptech/glide/deployments”,“created_at”:“2013-07-08T22:52:33Z”,“updated_at”:“2025-03-09T10:52:28Z”,“pushed_at”:“2025-02-13T19:00:51Z”,“git_url”:“git://github.com/bumptech/glide.git”,“ssh_url”:“git@github.com:bumptech/glide.git”,“clone_url”:“https://github.com/bumptech/glide.git”,“svn_url”:“https://github.com/bumptech/glide”,“homepage”:“https://bumptech.github.io/glide/”,“size”:97220,“stargazers_count”:34800,“watchers_count”:34800,“language”:“Java”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:true,“has_discussions”:false,“forks_count”:6150,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:565,“license”:{“key”:“other”,“name”:“Other”,“spdx_id”:“NOASSERTION”,“url”:null,“node_id”:“MDc6TGljZW5zZTA=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“disk-cache”,“gif”,“glide”,“imageloader”],“visibility”:“public”,“forks”:6150,“open_issues”:565,“watchers”:34800,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:64558143,“node_id”:“MDEwOlJlcG9zaXRvcnk2NDU1ODE0Mw==”,“name”:“AndroidUtilCode”,“full_name”:“Blankj/AndroidUtilCode”,“private”:false,“owner”:{“login”:“Blankj”,“id”:17978187,“node_id”:“MDQ6VXNlcjE3OTc4MTg3”,“avatar_url”:“https://avatars.githubusercontent.com/u/17978187?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/Blankj”,“html_url”:“https://github.com/Blankj”,“follower
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I s_url”:“https://api.github.com/users/Blankj/followers”,“following_url”:“https://api.github.com/users/Blankj/following{/other_user}”,“gists_url”:“https://api.github.com/users/Blankj/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/Blankj/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/Blankj/subscriptions”,“organizations_url”:“https://api.github.com/users/Blankj/orgs”,“repos_url”:“https://api.github.com/users/Blankj/repos”,“events_url”:“https://api.github.com/users/Blankj/events{/privacy}”,“received_events_url”:“https://api.github.com/users/Blankj/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/Blankj/AndroidUtilCode”,“description”:“🔥 Android developers should collect the following utils(updating).”,“fork”:false,“url”:“https://api.github.com/repos/Blankj/AndroidUtilCode”,“forks_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/forks”,“keys_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/teams”,“hooks_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/hooks”,“issue_events_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/issues/events{/number}”,“events_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/events”,“assignees_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/assignees{/user}”,“branches_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/branches{/branch}”,“tags_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/tags”,“blobs_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/languages”,“stargazers_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/stargazers”,“contributors_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/contributors”,“subscribers_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/subscribers”,“subscription_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/subscription”,“commits_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/contents/{+path}”,“compare_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/merges”,“archive_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/downloads”,“issues_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/issues{/number}”,“pulls_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/labels{/name}”,“releases_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/releases{/id}”,“deployments_url”:“https://api.github.com/repos/Blankj/AndroidUtilCode/deployments”,“created_at”:“2016-07-30T18:18:32Z”,“updated_at”:“2025-03-09T11:07:44Z”,
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I “pushed_at”:“2024-08-15T10:38:10Z”,“git_url”:“git://github.com/Blankj/AndroidUtilCode.git”,“ssh_url”:“git@github.com:Blankj/AndroidUtilCode.git”,“clone_url”:“https://github.com/Blankj/AndroidUtilCode.git”,“svn_url”:“https://github.com/Blankj/AndroidUtilCode”,“homepage”:“https://blankj.com/2016/07/31/android-utils-code/”,“size”:47329,“stargazers_count”:33481,“watchers_count”:33481,“language”:“Java”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:false,“has_pages”:true,“has_discussions”:true,“forks_count”:10708,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:317,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“androidx”,“app”,“bar”,“cache”,“encode”,“encrypt”,“eventbus”,“file”,“fragment”,“log”,“network”,“permission”,“reflect”,“regex”,“snackbar”,“spannable-string”,“thread-pool”,“toast”,“utils”],“visibility”:“public”,“forks”:10708,“open_issues”:317,“watchers”:33481,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:41889031,“node_id”:“MDEwOlJlcG9zaXRvcnk0MTg4OTAzMQ==”,“name”:“NewPipe”,“full_name”:“TeamNewPipe/NewPipe”,“private”:false,“owner”:{“login”:“TeamNewPipe”,“id”:22159318,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjIyMTU5MzE4”,“avatar_url”:“https://avatars.githubusercontent.com/u/22159318?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/TeamNewPipe”,“html_url”:“https://github.com/TeamNewPipe”,“followers_url”:“https://api.github.com/users/TeamNewPipe/followers”,“following_url”:“https://api.github.com/users/TeamNewPipe/following{/other_user}”,“gists_url”:“https://api.github.com/users/TeamNewPipe/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/TeamNewPipe/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/TeamNewPipe/subscriptions”,“organizations_url”:“https://api.github.com/users/TeamNewPipe/orgs”,“repos_url”:“https://api.github.com/users/TeamNewPipe/repos”,“events_url”:“https://api.github.com/users/TeamNewPipe/events{/privacy}”,“received_events_url”:“https://api.github.com/users/TeamNewPipe/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/TeamNewPipe/NewPipe”,“description”:“A libre lightweight streaming front-end for Android.”,“fork”:false,“url”:“https://api.github.com/repos/TeamNewPipe/NewPipe”,“forks_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/forks”,“keys_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/teams”,“hooks_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/hooks”,“issue_events_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/issues/events{/number}”,“events_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/events”,“assignees_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/assignees{/user}”,“branches_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/branches{/branch}”,“tags_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/tags”,“blobs_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/languages”,“stargazers_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/stargazers”,“contributors_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/contributors”,“subs
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I cribers_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/subscribers”,“subscription_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/subscription”,“commits_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/contents/{+path}”,“compare_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/merges”,“archive_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/downloads”,“issues_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/issues{/number}”,“pulls_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/labels{/name}”,“releases_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/releases{/id}”,“deployments_url”:“https://api.github.com/repos/TeamNewPipe/NewPipe/deployments”,“created_at”:“2015-09-03T23:39:26Z”,“updated_at”:“2025-03-09T11:21:29Z”,“pushed_at”:“2025-02-28T10:51:11Z”,“git_url”:“git://github.com/TeamNewPipe/NewPipe.git”,“ssh_url”:“git@github.com:TeamNewPipe/NewPipe.git”,“clone_url”:“https://github.com/TeamNewPipe/NewPipe.git”,“svn_url”:“https://github.com/TeamNewPipe/NewPipe”,“homepage”:“https://newpipe.net”,“size”:78643,“stargazers_count”:33149,“watchers_count”:33149,“language”:“Java”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:true,“forks_count”:3149,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:1199,“license”:{“key”:“gpl-3.0”,“name”:“GNU General Public License v3.0”,“spdx_id”:“GPL-3.0”,“url”:“https://api.github.com/licenses/gpl-3.0”,“node_id”:“MDc6TGljZW5zZTk=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“4k”,“android”,“bandcamp”,“download-videos”,“newpipe”,“peertube”,“soundcloud”,“translation”,“video”,“watch”,“youtube-video”],“visibility”:“public”,“forks”:3149,“open_issues”:1199,“watchers”:33149,“default_branch”:“dev”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:2562751,“node_id”:“MDEwOlJlcG9zaXRvcnkyNTYyNzUx”,“name”:“zxing”,“full_name”:“zxing/zxing”,“private”:false,“owner”:{“login”:“zxing”,“id”:1122572,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjExMjI1NzI=”,“avatar_url”:“https://avatars.githubusercontent.com/u/1122572?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/zxing”,“html_url”:“https://github.com/zxing”,“followers_url”:“https://api.github.com/users/zxing/followers”,“following_url”:“https://api.github.com/users/zxing/following{/other_user}”,“gists_url”:“https://api.github.com/users/zxing/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/zxing/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/zxing/subscriptions”,“organizations_url”:“https://api.github.com/users/zxing/orgs”,“repos_url”:“https://api.github.com/users/zxing/repos”,“events_url”:“https://api.github.com/users/zxing/events{/privacy}”,“received_events_url”:“https://api.github.com/users/zxing/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/zxing/zxing”,“description”:“ZXing (“Zebra Crossing”) barcode scanning library for Java, Android”,“fork”:false,“url”:“https://api.github.com/repos/zxing/zxing”,“forks_url”:“https://api.github.com/repos/zxing/
2025-03-09 19:40:49.439 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I zxing/forks”,“keys_url”:“https://api.github.com/repos/zxing/zxing/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/zxing/zxing/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/zxing/zxing/teams”,“hooks_url”:“https://api.github.com/repos/zxing/zxing/hooks”,“issue_events_url”:“https://api.github.com/repos/zxing/zxing/issues/events{/number}”,“events_url”:“https://api.github.com/repos/zxing/zxing/events”,“assignees_url”:“https://api.github.com/repos/zxing/zxing/assignees{/user}”,“branches_url”:“https://api.github.com/repos/zxing/zxing/branches{/branch}”,“tags_url”:“https://api.github.com/repos/zxing/zxing/tags”,“blobs_url”:“https://api.github.com/repos/zxing/zxing/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/zxing/zxing/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/zxing/zxing/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/zxing/zxing/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/zxing/zxing/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/zxing/zxing/languages”,“stargazers_url”:“https://api.github.com/repos/zxing/zxing/stargazers”,“contributors_url”:“https://api.github.com/repos/zxing/zxing/contributors”,“subscribers_url”:“https://api.github.com/repos/zxing/zxing/subscribers”,“subscription_url”:“https://api.github.com/repos/zxing/zxing/subscription”,“commits_url”:“https://api.github.com/repos/zxing/zxing/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/zxing/zxing/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/zxing/zxing/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/zxing/zxing/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/zxing/zxing/contents/{+path}”,“compare_url”:“https://api.github.com/repos/zxing/zxing/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/zxing/zxing/merges”,“archive_url”:“https://api.github.com/repos/zxing/zxing/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/zxing/zxing/downloads”,“issues_url”:“https://api.github.com/repos/zxing/zxing/issues{/number}”,“pulls_url”:“https://api.github.com/repos/zxing/zxing/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/zxing/zxing/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/zxing/zxing/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/zxing/zxing/labels{/name}”,“releases_url”:“https://api.github.com/repos/zxing/zxing/releases{/id}”,“deployments_url”:“https://api.github.com/repos/zxing/zxing/deployments”,“created_at”:“2011-10-12T14:07:27Z”,“updated_at”:“2025-03-09T05:50:24Z”,“pushed_at”:“2025-02-10T14:22:04Z”,“git_url”:“git://github.com/zxing/zxing.git”,“ssh_url”:“git@github.com:zxing/zxing.git”,“clone_url”:“https://github.com/zxing/zxing.git”,“svn_url”:“https://github.com/zxing/zxing”,“homepage”:“”,“size”:242772,“stargazers_count”:33135,“watchers_count”:33135,“language”:“Java”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:true,“has_pages”:true,“has_discussions”:true,“forks_count”:9385,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:15,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“barcode”,“barcode-scanner”,“datamatrix”,“java”,“qr-code”,“upc”,“zxing”],“visibility”:“public”,“forks”:9385,“open_issues”:15,“watchers”:33135,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:10446890,“node_id”:“MDEwOlJlcG9zaXRvcnkxMDQ0Njg5MA==”,“name”:“ijkplayer”,“full_name”:“bilibili/ijkplayer”,“private”:false,“owner”:{“login”:“bilibili”,“id”:12002442,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjEyMDAyNDQy”,“avatar_url”:“https://avatars.githubusercontent.com/u/12002442?v=4”
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I ,“gravatar_id”:“”,“url”:“https://api.github.com/users/bilibili”,“html_url”:“https://github.com/bilibili”,“followers_url”:“https://api.github.com/users/bilibili/followers”,“following_url”:“https://api.github.com/users/bilibili/following{/other_user}”,“gists_url”:“https://api.github.com/users/bilibili/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/bilibili/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/bilibili/subscriptions”,“organizations_url”:“https://api.github.com/users/bilibili/orgs”,“repos_url”:“https://api.github.com/users/bilibili/repos”,“events_url”:“https://api.github.com/users/bilibili/events{/privacy}”,“received_events_url”:“https://api.github.com/users/bilibili/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/bilibili/ijkplayer”,“description”:“Android/iOS video player based on FFmpeg n3.4, with MediaCodec, VideoToolbox support.”,“fork”:false,“url”:“https://api.github.com/repos/bilibili/ijkplayer”,“forks_url”:“https://api.github.com/repos/bilibili/ijkplayer/forks”,“keys_url”:“https://api.github.com/repos/bilibili/ijkplayer/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/bilibili/ijkplayer/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/bilibili/ijkplayer/teams”,“hooks_url”:“https://api.github.com/repos/bilibili/ijkplayer/hooks”,“issue_events_url”:“https://api.github.com/repos/bilibili/ijkplayer/issues/events{/number}”,“events_url”:“https://api.github.com/repos/bilibili/ijkplayer/events”,“assignees_url”:“https://api.github.com/repos/bilibili/ijkplayer/assignees{/user}”,“branches_url”:“https://api.github.com/repos/bilibili/ijkplayer/branches{/branch}”,“tags_url”:“https://api.github.com/repos/bilibili/ijkplayer/tags”,“blobs_url”:“https://api.github.com/repos/bilibili/ijkplayer/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/bilibili/ijkplayer/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/bilibili/ijkplayer/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/bilibili/ijkplayer/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/bilibili/ijkplayer/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/bilibili/ijkplayer/languages”,“stargazers_url”:“https://api.github.com/repos/bilibili/ijkplayer/stargazers”,“contributors_url”:“https://api.github.com/repos/bilibili/ijkplayer/contributors”,“subscribers_url”:“https://api.github.com/repos/bilibili/ijkplayer/subscribers”,“subscription_url”:“https://api.github.com/repos/bilibili/ijkplayer/subscription”,“commits_url”:“https://api.github.com/repos/bilibili/ijkplayer/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/bilibili/ijkplayer/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/bilibili/ijkplayer/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/bilibili/ijkplayer/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/bilibili/ijkplayer/contents/{+path}”,“compare_url”:“https://api.github.com/repos/bilibili/ijkplayer/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/bilibili/ijkplayer/merges”,“archive_url”:“https://api.github.com/repos/bilibili/ijkplayer/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/bilibili/ijkplayer/downloads”,“issues_url”:“https://api.github.com/repos/bilibili/ijkplayer/issues{/number}”,“pulls_url”:“https://api.github.com/repos/bilibili/ijkplayer/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/bilibili/ijkplayer/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/bilibili/ijkplayer/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/bilibili/ijkplayer/labels{/name}”,“releases_url”:“https://api.github.com/repos/bilibili/ijkplayer/releases{/id}”,“deployments_url”:“https://api.github.com/repos/bilibili/ijkplayer/deployments”,“created_at”:“2013-06-03T04:12:04Z”,“updated_at”:“2025-03-08T09:12:37Z
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I “,“pushed_at”:“2024-08-13T00:53:33Z”,“git_url”:“git://github.com/bilibili/ijkplayer.git”,“ssh_url”:“git@github.com:bilibili/ijkplayer.git”,“clone_url”:“https://github.com/bilibili/ijkplayer.git”,“svn_url”:“https://github.com/bilibili/ijkplayer”,“homepage”:””,“size”:8283,“stargazers_count”:32770,“watchers_count”:32770,“language”:“C”,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:8161,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:2879,“license”:{“key”:“gpl-2.0”,“name”:“GNU General Public License v2.0”,“spdx_id”:“GPL-2.0”,“url”:“https://api.github.com/licenses/gpl-2.0”,“node_id”:“MDc6TGljZW5zZTg=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“ffmpeg”,“ijkplayer”,“ios”,“player”,“video”],“visibility”:“public”,“forks”:8161,“open_issues”:2879,“watchers”:32770,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:15653276,“node_id”:“MDEwOlJlcG9zaXRvcnkxNTY1MzI3Ng==”,“name”:“android-open-project”,“full_name”:“Trinea/android-open-project”,“private”:false,“owner”:{“login”:“Trinea”,“id”:1169522,“node_id”:“MDQ6VXNlcjExNjk1MjI=”,“avatar_url”:“https://avatars.githubusercontent.com/u/1169522?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/Trinea”,“html_url”:“https://github.com/Trinea”,“followers_url”:“https://api.github.com/users/Trinea/followers”,“following_url”:“https://api.github.com/users/Trinea/following{/other_user}”,“gists_url”:“https://api.github.com/users/Trinea/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/Trinea/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/Trinea/subscriptions”,“organizations_url”:“https://api.github.com/users/Trinea/orgs”,“repos_url”:“https://api.github.com/users/Trinea/repos”,“events_url”:“https://api.github.com/users/Trinea/events{/privacy}”,“received_events_url”:“https://api.github.com/users/Trinea/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/Trinea/android-open-project”,“description”:“A categorized collection of Android Open Source Projects, More powerful web version:”,“fork”:false,“url”:“https://api.github.com/repos/Trinea/android-open-project”,“forks_url”:“https://api.github.com/repos/Trinea/android-open-project/forks”,“keys_url”:“https://api.github.com/repos/Trinea/android-open-project/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/Trinea/android-open-project/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/Trinea/android-open-project/teams”,“hooks_url”:“https://api.github.com/repos/Trinea/android-open-project/hooks”,“issue_events_url”:“https://api.github.com/repos/Trinea/android-open-project/issues/events{/number}”,“events_url”:“https://api.github.com/repos/Trinea/android-open-project/events”,“assignees_url”:“https://api.github.com/repos/Trinea/android-open-project/assignees{/user}”,“branches_url”:“https://api.github.com/repos/Trinea/android-open-project/branches{/branch}”,“tags_url”:“https://api.github.com/repos/Trinea/android-open-project/tags”,“blobs_url”:“https://api.github.com/repos/Trinea/android-open-project/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/Trinea/android-open-project/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/Trinea/android-open-project/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/Trinea/android-open-project/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/Trinea/android-open-project/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/Trinea/android-open-project/languages”,“stargazers_url”:“https://api.github.com/repos/Trinea/android-open-project/stargazers”,“contributors_url”:“https://api.github.com/repos/Trinea/android-open-project/contributors”,“subscribers_url”:“https://api.github.com/repos/Trinea/android-open-project/su
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I bscribers”,“subscription_url”:“https://api.github.com/repos/Trinea/android-open-project/subscription”,“commits_url”:“https://api.github.com/repos/Trinea/android-open-project/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/Trinea/android-open-project/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/Trinea/android-open-project/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/Trinea/android-open-project/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/Trinea/android-open-project/contents/{+path}”,“compare_url”:“https://api.github.com/repos/Trinea/android-open-project/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/Trinea/android-open-project/merges”,“archive_url”:“https://api.github.com/repos/Trinea/android-open-project/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/Trinea/android-open-project/downloads”,“issues_url”:“https://api.github.com/repos/Trinea/android-open-project/issues{/number}”,“pulls_url”:“https://api.github.com/repos/Trinea/android-open-project/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/Trinea/android-open-project/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/Trinea/android-open-project/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/Trinea/android-open-project/labels{/name}”,“releases_url”:“https://api.github.com/repos/Trinea/android-open-project/releases{/id}”,“deployments_url”:“https://api.github.com/repos/Trinea/android-open-project/deployments”,“created_at”:“2014-01-05T15:20:15Z”,“updated_at”:“2025-03-09T10:53:02Z”,“pushed_at”:“2024-07-08T20:33:59Z”,“git_url”:“git://github.com/Trinea/android-open-project.git”,“ssh_url”:“git@github.com:Trinea/android-open-project.git”,“clone_url”:“https://github.com/Trinea/android-open-project.git”,“svn_url”:“https://github.com/Trinea/android-open-project”,“homepage”:“https://p.codekk.com/”,“size”:2036,“stargazers_count”:31682,“watchers_count”:31682,“language”:null,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:11913,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:28,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“open-source-project”],“visibility”:“public”,“forks”:11913,“open_issues”:28,“watchers”:31682,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:31085130,“node_id”:“MDEwOlJlcG9zaXRvcnkzMTA4NTEzMA==”,“name”:“lottie-web”,“full_name”:“airbnb/lottie-web”,“private”:false,“owner”:{“login”:“airbnb”,“id”:698437,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjY5ODQzNw==”,“avatar_url”:“https://avatars.githubusercontent.com/u/698437?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/airbnb”,“html_url”:“https://github.com/airbnb”,“followers_url”:“https://api.github.com/users/airbnb/followers”,“following_url”:“https://api.github.com/users/airbnb/following{/other_user}”,“gists_url”:“https://api.github.com/users/airbnb/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/airbnb/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/airbnb/subscriptions”,“organizations_url”:“https://api.github.com/users/airbnb/orgs”,“repos_url”:“https://api.github.com/users/airbnb/repos”,“events_url”:“https://api.github.com/users/airbnb/events{/privacy}”,“received_events_url”:“https://api.github.com/users/airbnb/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/airbnb/lottie-web”,“description”:“Render After Effects animations natively on Web, Android and iOS, and React Native. http://airbnb.io/lottie/”,“fork”:false,“url”:“https://api
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I .github.com/repos/airbnb/lottie-web”,“forks_url”:“https://api.github.com/repos/airbnb/lottie-web/forks”,“keys_url”:“https://api.github.com/repos/airbnb/lottie-web/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/airbnb/lottie-web/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/airbnb/lottie-web/teams”,“hooks_url”:“https://api.github.com/repos/airbnb/lottie-web/hooks”,“issue_events_url”:“https://api.github.com/repos/airbnb/lottie-web/issues/events{/number}”,“events_url”:“https://api.github.com/repos/airbnb/lottie-web/events”,“assignees_url”:“https://api.github.com/repos/airbnb/lottie-web/assignees{/user}”,“branches_url”:“https://api.github.com/repos/airbnb/lottie-web/branches{/branch}”,“tags_url”:“https://api.github.com/repos/airbnb/lottie-web/tags”,“blobs_url”:“https://api.github.com/repos/airbnb/lottie-web/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/airbnb/lottie-web/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/airbnb/lottie-web/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/airbnb/lottie-web/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/airbnb/lottie-web/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/airbnb/lottie-web/languages”,“stargazers_url”:“https://api.github.com/repos/airbnb/lottie-web/stargazers”,“contributors_url”:“https://api.github.com/repos/airbnb/lottie-web/contributors”,“subscribers_url”:“https://api.github.com/repos/airbnb/lottie-web/subscribers”,“subscription_url”:“https://api.github.com/repos/airbnb/lottie-web/subscription”,“commits_url”:“https://api.github.com/repos/airbnb/lottie-web/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/airbnb/lottie-web/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/airbnb/lottie-web/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/airbnb/lottie-web/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/airbnb/lottie-web/contents/{+path}”,“compare_url”:“https://api.github.com/repos/airbnb/lottie-web/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/airbnb/lottie-web/merges”,“archive_url”:“https://api.github.com/repos/airbnb/lottie-web/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/airbnb/lottie-web/downloads”,“issues_url”:“https://api.github.com/repos/airbnb/lottie-web/issues{/number}”,“pulls_url”:“https://api.github.com/repos/airbnb/lottie-web/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/airbnb/lottie-web/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/airbnb/lottie-web/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/airbnb/lottie-web/labels{/name}”,“releases_url”:“https://api.github.com/repos/airbnb/lottie-web/releases{/id}”,“deployments_url”:“https://api.github.com/repos/airbnb/lottie-web/deployments”,“created_at”:“2015-02-20T21:02:59Z”,“updated_at”:“2025-03-09T08:06:40Z”,“pushed_at”:“2024-11-19T12:25:21Z”,“git_url”:“git://github.com/airbnb/lottie-web.git”,“ssh_url”:“git@github.com:airbnb/lottie-web.git”,“clone_url”:“https://github.com/airbnb/lottie-web.git”,“svn_url”:“https://github.com/airbnb/lottie-web”,“homepage”:“”,“size”:358659,“stargazers_count”:30934,“watchers_count”:30934,“language”:“JavaScript”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:2900,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:817,“license”:{“key”:“mit”,“name”:“MIT License”,“spdx_id”:“MIT”,“url”:“https://api.github.com/licenses/mit”,“node_id”:“MDc6TGljZW5zZTEz”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[],“visibility”:“public”,“forks”:2900,“open_issues”:817,“watchers”:30934,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:34824499,“node_id”:“MDEwOlJlcG9zaXRvcnkzNDgyNDQ5OQ
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I “,“name”:“leakcanary”,“full_name”:“square/leakcanary”,“private”:false,“owner”:{“login”:“square”,“id”:82592,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjgyNTky”,“avatar_url”:“https://avatars.githubusercontent.com/u/82592?v=4”,“gravatar_id”:”“,“url”:“https://api.github.com/users/square”,“html_url”:“https://github.com/square”,“followers_url”:“https://api.github.com/users/square/followers”,“following_url”:“https://api.github.com/users/square/following{/other_user}”,“gists_url”:“https://api.github.com/users/square/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/square/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/square/subscriptions”,“organizations_url”:“https://api.github.com/users/square/orgs”,“repos_url”:“https://api.github.com/users/square/repos”,“events_url”:“https://api.github.com/users/square/events{/privacy}”,“received_events_url”:“https://api.github.com/users/square/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/square/leakcanary”,“description”:“A memory leak detection library for Android.”,“fork”:false,“url”:“https://api.github.com/repos/square/leakcanary”,“forks_url”:“https://api.github.com/repos/square/leakcanary/forks”,“keys_url”:“https://api.github.com/repos/square/leakcanary/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/square/leakcanary/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/square/leakcanary/teams”,“hooks_url”:“https://api.github.com/repos/square/leakcanary/hooks”,“issue_events_url”:“https://api.github.com/repos/square/leakcanary/issues/events{/number}”,“events_url”:“https://api.github.com/repos/square/leakcanary/events”,“assignees_url”:“https://api.github.com/repos/square/leakcanary/assignees{/user}”,“branches_url”:“https://api.github.com/repos/square/leakcanary/branches{/branch}”,“tags_url”:“https://api.github.com/repos/square/leakcanary/tags”,“blobs_url”:“https://api.github.com/repos/square/leakcanary/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/square/leakcanary/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/square/leakcanary/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/square/leakcanary/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/square/leakcanary/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/square/leakcanary/languages”,“stargazers_url”:“https://api.github.com/repos/square/leakcanary/stargazers”,“contributors_url”:“https://api.github.com/repos/square/leakcanary/contributors”,“subscribers_url”:“https://api.github.com/repos/square/leakcanary/subscribers”,“subscription_url”:“https://api.github.com/repos/square/leakcanary/subscription”,“commits_url”:“https://api.github.com/repos/square/leakcanary/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/square/leakcanary/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/square/leakcanary/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/square/leakcanary/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/square/leakcanary/contents/{+path}”,“compare_url”:“https://api.github.com/repos/square/leakcanary/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/square/leakcanary/merges”,“archive_url”:“https://api.github.com/repos/square/leakcanary/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/square/leakcanary/downloads”,“issues_url”:“https://api.github.com/repos/square/leakcanary/issues{/number}”,“pulls_url”:“https://api.github.com/repos/square/leakcanary/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/square/leakcanary/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/square/leakcanary/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/square/leakcanary/labels{/name}”,“releases_url”:“https://api.github.com/repos/square/leakcanary/releases{/id}”,“deployments_url”:“https://api.githu
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I b.com/repos/square/leakcanary/deployments”,“created_at”:“2015-04-29T23:54:16Z”,“updated_at”:“2025-03-08T04:56:39Z”,“pushed_at”:“2025-02-27T18:37:44Z”,“git_url”:“git://github.com/square/leakcanary.git”,“ssh_url”:“git@github.com:square/leakcanary.git”,“clone_url”:“https://github.com/square/leakcanary.git”,“svn_url”:“https://github.com/square/leakcanary”,“homepage”:“https://square.github.io/leakcanary”,“size”:147425,“stargazers_count”:29589,“watchers_count”:29589,“language”:“Kotlin”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:false,“has_pages”:true,“has_discussions”:false,“forks_count”:3976,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:110,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“java”,“kotlin”,“kotlin-android”,“leak-canary”,“leak-trace”,“leakcanary”,“memory-leak”,“outofmemory”,“outofmemoryerror”],“visibility”:“public”,“forks”:3976,“open_issues”:110,“watchers”:29589,“default_branch”:“main”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:580836813,“node_id”:“R_kgDOIp7dzQ”,“name”:“comprehensive-rust”,“full_name”:“google/comprehensive-rust”,“private”:false,“owner”:{“login”:“google”,“id”:1342004,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=”,“avatar_url”:“https://avatars.githubusercontent.com/u/1342004?v=4”,“gravatar_id”:”",“url”:“https://api.github.com/users/google”,“html_url”:“https://github.com/google”,“followers_url”:“https://api.github.com/users/google/followers”,“following_url”:“https://api.github.com/users/google/following{/other_user}”,“gists_url”:“https://api.github.com/users/google/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/google/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/google/subscriptions”,“organizations_url”:“https://api.github.com/users/google/orgs”,“repos_url”:“https://api.github.com/users/google/repos”,“events_url”:“https://api.github.com/users/google/events{/privacy}”,“received_events_url”:“https://api.github.com/users/google/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/google/comprehensive-rust”,“description”:“This is the Rust course used by the Android team at Google. It provides you the material to quickly teach Rust.”,“fork”:false,“url”:“https://api.github.com/repos/google/comprehensive-rust”,“forks_url”:“https://api.github.com/repos/google/comprehensive-rust/forks”,“keys_url”:“https://api.github.com/repos/google/comprehensive-rust/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/google/comprehensive-rust/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/google/comprehensive-rust/teams”,“hooks_url”:“https://api.github.com/repos/google/comprehensive-rust/hooks”,“issue_events_url”:“https://api.github.com/repos/google/comprehensive-rust/issues/events{/number}”,“events_url”:“https://api.github.com/repos/google/comprehensive-rust/events”,“assignees_url”:“https://api.github.com/repos/google/comprehensive-rust/assignees{/user}”,“branches_url”:“https://api.github.com/repos/google/comprehensive-rust/branches{/branch}”,“tags_url”:“https://api.github.com/repos/google/comprehensive-rust/tags”,“blobs_url”:“https://api.github.com/repos/google/comprehensive-rust/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/google/comprehensive-rust/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/google/comprehensive-rust/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/google/comprehensive-rust/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/google/comprehensive-rust/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/google/comprehensive-rust/languages”,“stargazers_url”:“https://api.github.com/repos/go
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I ogle/comprehensive-rust/stargazers”,“contributors_url”:“https://api.github.com/repos/google/comprehensive-rust/contributors”,“subscribers_url”:“https://api.github.com/repos/google/comprehensive-rust/subscribers”,“subscription_url”:“https://api.github.com/repos/google/comprehensive-rust/subscription”,“commits_url”:“https://api.github.com/repos/google/comprehensive-rust/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/google/comprehensive-rust/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/google/comprehensive-rust/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/google/comprehensive-rust/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/google/comprehensive-rust/contents/{+path}”,“compare_url”:“https://api.github.com/repos/google/comprehensive-rust/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/google/comprehensive-rust/merges”,“archive_url”:“https://api.github.com/repos/google/comprehensive-rust/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/google/comprehensive-rust/downloads”,“issues_url”:“https://api.github.com/repos/google/comprehensive-rust/issues{/number}”,“pulls_url”:“https://api.github.com/repos/google/comprehensive-rust/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/google/comprehensive-rust/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/google/comprehensive-rust/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/google/comprehensive-rust/labels{/name}”,“releases_url”:“https://api.github.com/repos/google/comprehensive-rust/releases{/id}”,“deployments_url”:“https://api.github.com/repos/google/comprehensive-rust/deployments”,“created_at”:“2022-12-21T15:17:24Z”,“updated_at”:“2025-03-09T10:53:16Z”,“pushed_at”:“2025-03-09T03:03:29Z”,“git_url”:“git://github.com/google/comprehensive-rust.git”,“ssh_url”:“git@github.com:google/comprehensive-rust.git”,“clone_url”:“https://github.com/google/comprehensive-rust.git”,“svn_url”:“https://github.com/google/comprehensive-rust”,“homepage”:“https://google.github.io/comprehensive-rust/”,“size”:24282,“stargazers_count”:29513,“watchers_count”:29513,“language”:“Rust”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:false,“has_pages”:true,“has_discussions”:true,“forks_count”:1755,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:130,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“classroom”,“course”,“google”,“guide”,“rust”,“training”,“training-materials”],“visibility”:“public”,“forks”:1755,“open_issues”:130,“watchers”:29513,“default_branch”:“main”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:10788737,“node_id”:"MDEwOlJlcG9zaXRvcnkxMDc4ODczNw
”,“name”:“android_guides”,“full_name”:“codepath/android_guides”,“private”:false,“owner”:{“login”:“codepath”,“id”:3710273,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjM3MTAyNzM=”,“avatar_url”:“https://avatars.githubusercontent.com/u/3710273?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/codepath”,“html_url”:“https://github.com/codepath”,“followers_url”:“https://api.github.com/users/codepath/followers”,“following_url”:“https://api.github.com/users/codepath/following{/other_user}”,“gists_url”:“https://api.github.com/users/codepath/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/codepath/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/codepath/subscriptions”,“organizations_url”:“https://api.github.com/users/codepath/orgs”,“repos_url”:“https://api.github.com/users/codepath/repos”,“events_url”:“https://api.github.com/users/codepath/events{/privacy}”,“received_events_url”:“https://api.github.com/users/codepath/received_events”,
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I “type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/codepath/android_guides”,“description”:“Extensive Open-Source Guides for Android Developers”,“fork”:false,“url”:“https://api.github.com/repos/codepath/android_guides”,“forks_url”:“https://api.github.com/repos/codepath/android_guides/forks”,“keys_url”:“https://api.github.com/repos/codepath/android_guides/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/codepath/android_guides/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/codepath/android_guides/teams”,“hooks_url”:“https://api.github.com/repos/codepath/android_guides/hooks”,“issue_events_url”:“https://api.github.com/repos/codepath/android_guides/issues/events{/number}”,“events_url”:“https://api.github.com/repos/codepath/android_guides/events”,“assignees_url”:“https://api.github.com/repos/codepath/android_guides/assignees{/user}”,“branches_url”:“https://api.github.com/repos/codepath/android_guides/branches{/branch}”,“tags_url”:“https://api.github.com/repos/codepath/android_guides/tags”,“blobs_url”:“https://api.github.com/repos/codepath/android_guides/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/codepath/android_guides/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/codepath/android_guides/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/codepath/android_guides/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/codepath/android_guides/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/codepath/android_guides/languages”,“stargazers_url”:“https://api.github.com/repos/codepath/android_guides/stargazers”,“contributors_url”:“https://api.github.com/repos/codepath/android_guides/contributors”,“subscribers_url”:“https://api.github.com/repos/codepath/android_guides/subscribers”,“subscription_url”:“https://api.github.com/repos/codepath/android_guides/subscription”,“commits_url”:“https://api.github.com/repos/codepath/android_guides/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/codepath/android_guides/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/codepath/android_guides/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/codepath/android_guides/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/codepath/android_guides/contents/{+path}”,“compare_url”:“https://api.github.com/repos/codepath/android_guides/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/codepath/android_guides/merges”,“archive_url”:“https://api.github.com/repos/codepath/android_guides/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/codepath/android_guides/downloads”,“issues_url”:“https://api.github.com/repos/codepath/android_guides/issues{/number}”,“pulls_url”:“https://api.github.com/repos/codepath/android_guides/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/codepath/android_guides/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/codepath/android_guides/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/codepath/android_guides/labels{/name}”,“releases_url”:“https://api.github.com/repos/codepath/android_guides/releases{/id}”,“deployments_url”:“https://api.github.com/repos/codepath/android_guides/deployments”,“created_at”:“2013-06-19T10:24:45Z”,“updated_at”:“2025-03-09T10:53:26Z”,“pushed_at”:“2024-12-31T19:40:50Z”,“git_url”:“git://github.com/codepath/android_guides.git”,“ssh_url”:“git@github.com:codepath/android_guides.git”,“clone_url”:“https://github.com/codepath/android_guides.git”,“svn_url”:“https://github.com/codepath/android_guides”,“homepage”:“guides.codepath.com”,“size”:1100,“stargazers_count”:28353,“watchers_count”:28353,“language”:null,“has_issues”:true,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:6334,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:16
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I 2,“license”:{“key”:“mit”,“name”:“MIT License”,“spdx_id”:“MIT”,“url”:“https://api.github.com/licenses/mit”,“node_id”:“MDc6TGljZW5zZTEz”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“android”,“codepath”,“development”,“guides”,“tutorials”],“visibility”:“public”,“forks”:6334,“open_issues”:162,“watchers”:28353,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:23783375,“node_id”:“MDEwOlJlcG9zaXRvcnkyMzc4MzM3NQ==”,“name”:“ResumeSample”,“full_name”:“geekcompany/ResumeSample”,“private”:false,“owner”:{“login”:“geekcompany”,“id”:7380510,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjczODA1MTA=”,“avatar_url”:“https://avatars.githubusercontent.com/u/7380510?v=4”,“gravatar_id”:“”,“url”:“https://api.github.com/users/geekcompany”,“html_url”:“https://github.com/geekcompany”,“followers_url”:“https://api.github.com/users/geekcompany/followers”,“following_url”:“https://api.github.com/users/geekcompany/following{/other_user}”,“gists_url”:“https://api.github.com/users/geekcompany/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/geekcompany/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/geekcompany/subscriptions”,“organizations_url”:“https://api.github.com/users/geekcompany/orgs”,“repos_url”:“https://api.github.com/users/geekcompany/repos”,“events_url”:“https://api.github.com/users/geekcompany/events{/privacy}”,“received_events_url”:“https://api.github.com/users/geekcompany/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/geekcompany/ResumeSample”,“description”:“Resume template for Chinese programmers . 程序员简历模板系列。包括PHP程序员简历模板、iOS程序员简历模板、Android程序员简历模板、Web前端程序员简历模板、Java程序员简历模板、C/C++程序员简历模板、NodeJS程序员简历模板、架构师简历模板以及通用程序员简历模板”,“fork”:false,“url”:“https://api.github.com/repos/geekcompany/ResumeSample”,“forks_url”:“https://api.github.com/repos/geekcompany/ResumeSample/forks”,“keys_url”:“https://api.github.com/repos/geekcompany/ResumeSample/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/geekcompany/ResumeSample/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/geekcompany/ResumeSample/teams”,“hooks_url”:“https://api.github.com/repos/geekcompany/ResumeSample/hooks”,“issue_events_url”:“https://api.github.com/repos/geekcompany/ResumeSample/issues/events{/number}”,“events_url”:“https://api.github.com/repos/geekcompany/ResumeSample/events”,“assignees_url”:“https://api.github.com/repos/geekcompany/ResumeSample/assignees{/user}”,“branches_url”:“https://api.github.com/repos/geekcompany/ResumeSample/branches{/branch}”,“tags_url”:“https://api.github.com/repos/geekcompany/ResumeSample/tags”,“blobs_url”:“https://api.github.com/repos/geekcompany/ResumeSample/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/geekcompany/ResumeSample/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/geekcompany/ResumeSample/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/geekcompany/ResumeSample/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/geekcompany/ResumeSample/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/geekcompany/ResumeSample/languages”,“stargazers_url”:“https://api.github.com/repos/geekcompany/ResumeSample/stargazers”,“contributors_url”:“https://api.github.com/repos/geekcompany/ResumeSample/contributors”,“subscribers_url”:“https://api.github.com/repos/geekcompany/ResumeSample/subscribers”,“subscription_url”:“https://api.github.com/repos/geekcompany/ResumeSample/subscription”,“commits_url”:“https://api.github.com/repos/geekcompany/ResumeSample/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/geekcompany/ResumeSample/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/geekcompany/ResumeSample/comments{/number}”,
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I ithub.com/repos/geekcompany/ResumeSample/contents/{+path}“,“compare_url”:“https://api.github.com/repos/geekcompany/ResumeSample/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/geekcompany/ResumeSample/merges”,“archive_url”:“https://api.github.com/repos/geekcompany/ResumeSample/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/geekcompany/ResumeSample/downloads”,“issues_url”:“https://api.github.com/repos/geekcompany/ResumeSample/issues{/number}”,“pulls_url”:“https://api.github.com/repos/geekcompany/ResumeSample/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/geekcompany/ResumeSample/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/geekcompany/ResumeSample/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/geekcompany/ResumeSample/labels{/name}”,“releases_url”:“https://api.github.com/repos/geekcompany/ResumeSample/releases{/id}”,“deployments_url”:“https://api.github.com/repos/geekcompany/ResumeSample/deployments”,“created_at”:“2014-09-08T08:08:13Z”,“updated_at”:“2025-03-09T09:48:39Z”,“pushed_at”:“2024-08-14T10:20:23Z”,“git_url”:“git://github.com/geekcompany/ResumeSample.git”,“ssh_url”:“git@github.com:geekcompany/ResumeSample.git”,“clone_url”:“https://github.com/geekcompany/ResumeSample.git”,“svn_url”:“https://github.com/geekcompany/ResumeSample”,“homepage”:“http://cv.ftqq.com/?fr=github”,“size”:25,“stargazers_count”:27476,“watchers_count”:27476,“language”:null,“has_issues”:false,“has_projects”:true,“has_downloads”:true,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:8983,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:11,“license”:null,“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[],“visibility”:“public”,“forks”:8983,“open_issues”:11,“watchers”:27476,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:2990192,“node_id”:“MDEwOlJlcG9zaXRvcnkyOTkwMTky”,“name”:“Signal-Android”,“full_name”:“signalapp/Signal-Android”,“private”:false,“owner”:{“login”:“signalapp”,“id”:702459,“node_id”:“MDEyOk9yZ2FuaXphdGlvbjcwMjQ1OQ==”,“avatar_url”:“https://avatars.githubusercontent.com/u/702459?v=4”,“gravatar_id”:”“,“url”:“https://api.github.com/users/signalapp”,“html_url”:“https://github.com/signalapp”,“followers_url”:“https://api.github.com/users/signalapp/followers”,“following_url”:“https://api.github.com/users/signalapp/following{/other_user}”,“gists_url”:“https://api.github.com/users/signalapp/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/signalapp/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/signalapp/subscriptions”,“organizations_url”:“https://api.github.com/users/signalapp/orgs”,“repos_url”:“https://api.github.com/users/signalapp/repos”,“events_url”:“https://api.github.com/users/signalapp/events{/privacy}”,“received_events_url”:“https://api.github.com/users/signalapp/received_events”,“type”:“Organization”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/signalapp/Signal-Android”,“description”:“A private messenger for Android.”,“fork”:false,“url”:“https://api.github.com/repos/signalapp/Signal-Android”,“forks_url”:“https://api.github.com/repos/signalapp/Signal-Android/forks”,“keys_url”:“https://api.github.com/repos/signalapp/Signal-Android/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/signalapp/Signal-Android/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/signalapp/Signal-Android/teams”,“hooks_url”:“https://api.github.com/repos/signalapp/Signal-Android/hooks”,“issue_events_url”:“https://api.github.com/repos/signalapp/Signal-Android/issues/events{/number}”,“events_url”:“https://api.github.com/repos/signalapp/Signal-Android/events”,“assignees_url”:“https://api.github.com/repos/signalapp/Signal-Android/assignees{/user}”,“branches_url”:“https://api.github.com/rep
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I os/signalapp/Signal-Android/branches{/branch}”,“tags_url”:“https://api.github.com/repos/signalapp/Signal-Android/tags”,“blobs_url”:“https://api.github.com/repos/signalapp/Signal-Android/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/signalapp/Signal-Android/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/signalapp/Signal-Android/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/signalapp/Signal-Android/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/signalapp/Signal-Android/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/signalapp/Signal-Android/languages”,“stargazers_url”:“https://api.github.com/repos/signalapp/Signal-Android/stargazers”,“contributors_url”:“https://api.github.com/repos/signalapp/Signal-Android/contributors”,“subscribers_url”:“https://api.github.com/repos/signalapp/Signal-Android/subscribers”,“subscription_url”:“https://api.github.com/repos/signalapp/Signal-Android/subscription”,“commits_url”:“https://api.github.com/repos/signalapp/Signal-Android/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/signalapp/Signal-Android/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/signalapp/Signal-Android/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/signalapp/Signal-Android/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/signalapp/Signal-Android/contents/{+path}”,“compare_url”:“https://api.github.com/repos/signalapp/Signal-Android/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/signalapp/Signal-Android/merges”,“archive_url”:“https://api.github.com/repos/signalapp/Signal-Android/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/signalapp/Signal-Android/downloads”,“issues_url”:“https://api.github.com/repos/signalapp/Signal-Android/issues{/number}”,“pulls_url”:“https://api.github.com/repos/signalapp/Signal-Android/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/signalapp/Signal-Android/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/signalapp/Signal-Android/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/signalapp/Signal-Android/labels{/name}”,“releases_url”:“https://api.github.com/repos/signalapp/Signal-Android/releases{/id}”,“deployments_url”:“https://api.github.com/repos/signalapp/Signal-Android/deployments”,“created_at”:“2011-12-15T20:01:12Z”,“updated_at”:“2025-03-09T03:01:24Z”,“pushed_at”:“2025-03-07T21:48:36Z”,“git_url”:“git://github.com/signalapp/Signal-Android.git”,“ssh_url”:“git@github.com:signalapp/Signal-Android.git”,“clone_url”:“https://github.com/signalapp/Signal-Android.git”,“svn_url”:“https://github.com/signalapp/Signal-Android”,“homepage”:“https://signal.org”,“size”:1645649,“stargazers_count”:26243,“watchers_count”:26243,“language”:“Kotlin”,“has_issues”:true,“has_projects”:false,“has_downloads”:false,“has_wiki”:true,“has_pages”:false,“has_discussions”:false,“forks_count”:6294,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:371,“license”:{“key”:“agpl-3.0”,“name”:“GNU Affero General Public License v3.0”,“spdx_id”:“AGPL-3.0”,“url”:“https://api.github.com/licenses/agpl-3.0”,“node_id”:“MDc6TGljZW5zZTE=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[],“visibility”:“public”,“forks”:6294,“open_issues”:371,“watchers”:26243,“default_branch”:“main”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:13862381,“node_id”:“MDEwOlJlcG9zaXRvcnkxMzg2MjM4MQ==”,“name”:“Telegram”,“full_name”:“DrKLO/Telegram”,“private”:false,“owner”:{“login”:“DrKLO”,“id”:69369,“node_id”:“MDQ6VXNlcjY5MzY5”,“avatar_url”:“https://avatars.githubusercontent.com/u/69369?v=4”,“gravatar_id”:”“,“url”:“https://api.github.com/users/DrKLO”,“html_url”:“https://github.com/DrKLO”,“followers_url”:“https://api.github.com/users/DrKLO/followers”,“following_url”:“https://api.github.com/users/DrKLO/foll
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I owing{/other_user}”,“gists_url”:“https://api.github.com/users/DrKLO/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/DrKLO/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/DrKLO/subscriptions”,“organizations_url”:“https://api.github.com/users/DrKLO/orgs”,“repos_url”:“https://api.github.com/users/DrKLO/repos”,“events_url”:“https://api.github.com/users/DrKLO/events{/privacy}”,“received_events_url”:“https://api.github.com/users/DrKLO/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/DrKLO/Telegram”,“description”:“Telegram for Android source”,“fork”:false,“url”:“https://api.github.com/repos/DrKLO/Telegram”,“forks_url”:“https://api.github.com/repos/DrKLO/Telegram/forks”,“keys_url”:“https://api.github.com/repos/DrKLO/Telegram/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/DrKLO/Telegram/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/DrKLO/Telegram/teams”,“hooks_url”:“https://api.github.com/repos/DrKLO/Telegram/hooks”,“issue_events_url”:“https://api.github.com/repos/DrKLO/Telegram/issues/events{/number}”,“events_url”:“https://api.github.com/repos/DrKLO/Telegram/events”,“assignees_url”:“https://api.github.com/repos/DrKLO/Telegram/assignees{/user}”,“branches_url”:“https://api.github.com/repos/DrKLO/Telegram/branches{/branch}”,“tags_url”:“https://api.github.com/repos/DrKLO/Telegram/tags”,“blobs_url”:“https://api.github.com/repos/DrKLO/Telegram/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/DrKLO/Telegram/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/DrKLO/Telegram/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/DrKLO/Telegram/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/DrKLO/Telegram/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/DrKLO/Telegram/languages”,“stargazers_url”:“https://api.github.com/repos/DrKLO/Telegram/stargazers”,“contributors_url”:“https://api.github.com/repos/DrKLO/Telegram/contributors”,“subscribers_url”:“https://api.github.com/repos/DrKLO/Telegram/subscribers”,“subscription_url”:“https://api.github.com/repos/DrKLO/Telegram/subscription”,“commits_url”:“https://api.github.com/repos/DrKLO/Telegram/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/DrKLO/Telegram/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/DrKLO/Telegram/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/DrKLO/Telegram/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/DrKLO/Telegram/contents/{+path}”,“compare_url”:“https://api.github.com/repos/DrKLO/Telegram/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/DrKLO/Telegram/merges”,“archive_url”:“https://api.github.com/repos/DrKLO/Telegram/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/DrKLO/Telegram/downloads”,“issues_url”:“https://api.github.com/repos/DrKLO/Telegram/issues{/number}”,“pulls_url”:“https://api.github.com/repos/DrKLO/Telegram/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/DrKLO/Telegram/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/DrKLO/Telegram/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/DrKLO/Telegram/labels{/name}”,“releases_url”:“https://api.github.com/repos/DrKLO/Telegram/releases{/id}”,“deployments_url”:“https://api.github.com/repos/DrKLO/Telegram/deployments”,“created_at”:“2013-10-25T14:08:10Z”,“updated_at”:“2025-03-08T21:12:33Z”,“pushed_at”:“2025-01-26T21:01:29Z”,“git_url”:“git://github.com/DrKLO/Telegram.git”,“ssh_url”:“git@github.com:DrKLO/Telegram.git”,“clone_url”:“https://github.com/DrKLO/Telegram.git”,“svn_url”:“https://github.com/DrKLO/Telegram”,“homepage”:null,“size”:497796,“stargazers_count”:25863,“watchers_count”:25863,“language”:“Java”,“has_issues”:false,“has_projects”:true,“has_downloads”:true,“has_wiki”:false,“has_pages”:false,“has_discussions”:false,“forks_count”:8282,“mirro
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I r_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:400,“license”:{“key”:“gpl-2.0”,“name”:“GNU General Public License v2.0”,“spdx_id”:“GPL-2.0”,“url”:“https://api.github.com/licenses/gpl-2.0”,“node_id”:“MDc6TGljZW5zZTg=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[“telegram”],“visibility”:“public”,“forks”:8282,“open_issues”:400,“watchers”:25863,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0},{“id”:8575137,“node_id”:“MDEwOlJlcG9zaXRvcnk4NTc1MTM3”,“name”:“butterknife”,“full_name”:“JakeWharton/butterknife”,“private”:false,“owner”:{“login”:“JakeWharton”,“id”:66577,“node_id”:“MDQ6VXNlcjY2NTc3”,“avatar_url”:“https://avatars.githubusercontent.com/u/66577?v=4”,“gravatar_id”:”",“url”:“https://api.github.com/users/JakeWharton”,“html_url”:“https://github.com/JakeWharton”,“followers_url”:“https://api.github.com/users/JakeWharton/followers”,“following_url”:“https://api.github.com/users/JakeWharton/following{/other_user}”,“gists_url”:“https://api.github.com/users/JakeWharton/gists{/gist_id}”,“starred_url”:“https://api.github.com/users/JakeWharton/starred{/owner}{/repo}”,“subscriptions_url”:“https://api.github.com/users/JakeWharton/subscriptions”,“organizations_url”:“https://api.github.com/users/JakeWharton/orgs”,“repos_url”:“https://api.github.com/users/JakeWharton/repos”,“events_url”:“https://api.github.com/users/JakeWharton/events{/privacy}”,“received_events_url”:“https://api.github.com/users/JakeWharton/received_events”,“type”:“User”,“user_view_type”:“public”,“site_admin”:false},“html_url”:“https://github.com/JakeWharton/butterknife”,“description”:“Bind Android views and callbacks to fields and methods.”,“fork”:false,“url”:“https://api.github.com/repos/JakeWharton/butterknife”,“forks_url”:“https://api.github.com/repos/JakeWharton/butterknife/forks”,“keys_url”:“https://api.github.com/repos/JakeWharton/butterknife/keys{/key_id}”,“collaborators_url”:“https://api.github.com/repos/JakeWharton/butterknife/collaborators{/collaborator}”,“teams_url”:“https://api.github.com/repos/JakeWharton/butterknife/teams”,“hooks_url”:“https://api.github.com/repos/JakeWharton/butterknife/hooks”,“issue_events_url”:“https://api.github.com/repos/JakeWharton/butterknife/issues/events{/number}”,“events_url”:“https://api.github.com/repos/JakeWharton/butterknife/events”,“assignees_url”:“https://api.github.com/repos/JakeWharton/butterknife/assignees{/user}”,“branches_url”:“https://api.github.com/repos/JakeWharton/butterknife/branches{/branch}”,“tags_url”:“https://api.github.com/repos/JakeWharton/butterknife/tags”,“blobs_url”:“https://api.github.com/repos/JakeWharton/butterknife/git/blobs{/sha}”,“git_tags_url”:“https://api.github.com/repos/JakeWharton/butterknife/git/tags{/sha}”,“git_refs_url”:“https://api.github.com/repos/JakeWharton/butterknife/git/refs{/sha}”,“trees_url”:“https://api.github.com/repos/JakeWharton/butterknife/git/trees{/sha}”,“statuses_url”:“https://api.github.com/repos/JakeWharton/butterknife/statuses/{sha}”,“languages_url”:“https://api.github.com/repos/JakeWharton/butterknife/languages”,“stargazers_url”:“https://api.github.com/repos/JakeWharton/butterknife/stargazers”,“contributors_url”:“https://api.github.com/repos/JakeWharton/butterknife/contributors”,“subscribers_url”:“https://api.github.com/repos/JakeWharton/butterknife/subscribers”,“subscription_url”:“https://api.github.com/repos/JakeWharton/butterknife/subscription”,“commits_url”:“https://api.github.com/repos/JakeWharton/butterknife/commits{/sha}”,“git_commits_url”:“https://api.github.com/repos/JakeWharton/butterknife/git/commits{/sha}”,“comments_url”:“https://api.github.com/repos/JakeWharton/butterknife/comments{/number}”,“issue_comment_url”:“https://api.github.com/repos/JakeWharton/butterknife/issues/comments{/number}”,“contents_url”:“https://api.github.com/repos/JakeWharton/butterknife/contents/{+path}”,“compare_url”:“https://api.github.com/repos/JakeWharto
2025-03-09 19:40:49.440 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I n/butterknife/compare/{base}…{head}”,“merges_url”:“https://api.github.com/repos/JakeWharton/butterknife/merges”,“archive_url”:“https://api.github.com/repos/JakeWharton/butterknife/{archive_format}{/ref}”,“downloads_url”:“https://api.github.com/repos/JakeWharton/butterknife/downloads”,“issues_url”:“https://api.github.com/repos/JakeWharton/butterknife/issues{/number}”,“pulls_url”:“https://api.github.com/repos/JakeWharton/butterknife/pulls{/number}”,“milestones_url”:“https://api.github.com/repos/JakeWharton/butterknife/milestones{/number}”,“notifications_url”:“https://api.github.com/repos/JakeWharton/butterknife/notifications{?since,all,participating}”,“labels_url”:“https://api.github.com/repos/JakeWharton/butterknife/labels{/name}”,“releases_url”:“https://api.github.com/repos/JakeWharton/butterknife/releases{/id}”,“deployments_url”:“https://api.github.com/repos/JakeWharton/butterknife/deployments”,“created_at”:“2013-03-05T08:18:59Z”,“updated_at”:“2025-03-08T11:38:05Z”,“pushed_at”:“2023-09-02T07:41:30Z”,“git_url”:“git://github.com/JakeWharton/butterknife.git”,“ssh_url”:“git@github.com:JakeWharton/butterknife.git”,“clone_url”:“https://github.com/JakeWharton/butterknife.git”,“svn_url”:“https://github.com/JakeWharton/butterknife”,“homepage”:“http://jakewharton.github.io/butterknife/”,“size”:3909,“stargazers_count”:25531,“watchers_count”:25531,“language”:“Java”,“has_issues”:true,“has_projects”:false,“has_downloads”:true,“has_wiki”:false,“has_pages”:true,“has_discussions”:false,“forks_count”:4601,“mirror_url”:null,“archived”:false,“disabled”:false,“open_issues_count”:120,“license”:{“key”:“apache-2.0”,“name”:“Apache License 2.0”,“spdx_id”:“Apache-2.0”,“url”:“https://api.github.com/licenses/apache-2.0”,“node_id”:“MDc6TGljZW5zZTI=”},“allow_forking”:true,“is_template”:false,“web_commit_signoff_required”:false,“topics”:[],“visibility”:“public”,“forks”:4601,“open_issues”:120,“watchers”:25531,“default_branch”:“master”,“permissions”:{“admin”:false,“maintain”:false,“push”:false,“triage”:false,“pull”:true},“score”:1.0}]}
2025-03-09 19:40:49.441 14144-14188 okhttp.OkHttpClient com.example.android.codelabs.paging I <-- END HTTP (162224-byte body)