{"id":15111186,"url":"https://github.com/setapp-io/setapp-android-sdk","last_synced_at":"2026-02-07T09:32:20.092Z","repository":{"id":57736190,"uuid":"411024636","full_name":"setapp-io/setapp-android-sdk","owner":"setapp-io","description":"Setapp is an android SDK that lets you change the behavior and appearance of your app without requiring a rebuilt app.","archived":false,"fork":false,"pushed_at":"2023-02-25T11:40:41.000Z","size":180,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-03T19:38:56.860Z","etag":null,"topics":["android","android-development","android-library","android-sdk","config","configuration","configuration-management","configurations","control-systems","kotlin","kotlin-library","offline","preference","setapp","setapp-sdk","settings","settings-management"],"latest_commit_sha":null,"homepage":"https://setapp.io","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/setapp-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-09-27T19:56:18.000Z","updated_at":"2023-07-11T19:00:56.000Z","dependencies_parsed_at":"2024-01-12T02:14:10.052Z","dependency_job_id":null,"html_url":"https://github.com/setapp-io/setapp-android-sdk","commit_stats":{"total_commits":23,"total_committers":1,"mean_commits":23.0,"dds":0.0,"last_synced_commit":"c89362fbb6131b0b663a21fbf9fe06b4cf14f36c"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/setapp-io/setapp-android-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setapp-io%2Fsetapp-android-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setapp-io%2Fsetapp-android-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setapp-io%2Fsetapp-android-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setapp-io%2Fsetapp-android-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/setapp-io","download_url":"https://codeload.github.com/setapp-io/setapp-android-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/setapp-io%2Fsetapp-android-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29191404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T07:37:03.739Z","status":"ssl_error","status_checked_at":"2026-02-07T07:37:03.029Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-development","android-library","android-sdk","config","configuration","configuration-management","configurations","control-systems","kotlin","kotlin-library","offline","preference","setapp","setapp-sdk","settings","settings-management"],"created_at":"2024-09-26T00:02:15.979Z","updated_at":"2026-02-07T09:32:20.074Z","avatar_url":"https://github.com/setapp-io.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# setapp\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.setapp/setapp/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.setapp/setapp)\n[![Build](https://github.com/setapp-io/setapp-android-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/setapp-io/setapp-android-sdk/actions/workflows/ci.yml)\n\nSetapp is an android application that lets you change the behavior and appearance of your app without requiring a rebuilt app. When using the setapp client library, you call settings with in-app default values that control the behavior and appearance of your app. Then, you can later use the [setapp application](https://play.google.com/store/apps/details?id=io.setapp.android) to override in-app default values for the app. See the [project website](https://setapp.io/) for documentation.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://setapp.io/images/workflow.gif\" alt=\"setapp demo\"/\u003e\n\u003c/p\u003e\n\nTo set up setapp SDK for Android, you need to add the necessary dependencies to your app.\n\n## Dependencies\n\nSetapp is distributed through [***mavenCentral***](https://search.maven.org/artifact/io.setapp/setapp). To use it, you need to add the\nfollowing to your project's root `build.gradle` file\n\n```groovy\nrepositories {\n    mavenCentral()\n}\n```\n\nAdd the following to your project's `build.gradle` file\n\n```groovy\ndependencies {\n    debugImplementation \"io.setapp:setapp:${setapp_version}\"\n    releaseImplementation \"io.setapp:setapp-noop:${setapp_version}\"\n}\n```\n\n\u003e Please note that our `io.setapp:setapp-noop` package provides empty implementations.\n\n## Usage\n\nFor getting value from setapp application just cal one of the following methods.\n\n#### Get int value\n\n```kotlin\nval value: Int = Settings.getInt(\"YOUR_KEY_HERE\", -1)\nval value: Int? = Settings.getIntOrNull(\"YOUR_KEY_HERE\")\n```\n\n#### Get long value\n\n```kotlin\nval value: Long = Settings.getLong(\"YOUR_KEY_HERE\", -1L)\nval value: Long? = Settings.getLongOrNull(\"YOUR_KEY_HERE\")\n```\n\n#### Get float value\n\n```kotlin\nval value: Float = Settings.getFloat(\"YOUR_KEY_HERE\", -1F)\nval value: Float? = Settings.getFloatOrNull(\"YOUR_KEY_HERE\")\n```\n\n#### Get string value\n\n```kotlin\nval value: String = Settings.getString(\"YOUR_KEY_HERE\", \"\")\nval value: String? = Settings.getStringOrNull(\"YOUR_KEY_HERE\")\n```\n\n#### Get boolean value\n\n```kotlin\nval value: Boolean = Settings.getBoolean(\"YOUR_KEY_HERE\", false)\nval value: Boolean? = Settings.getBooleanOrNull(\"YOUR_KEY_HERE\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsetapp-io%2Fsetapp-android-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsetapp-io%2Fsetapp-android-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsetapp-io%2Fsetapp-android-sdk/lists"}