{"id":21548146,"url":"https://github.com/namiml/nami-android","last_synced_at":"2025-04-10T05:53:44.830Z","repository":{"id":40770943,"uuid":"243880640","full_name":"namiml/nami-android","owner":"namiml","description":"Easy Android subscriptions \u0026 in-app purchases, with powerful no-code paywalls and A/B testing.","archived":false,"fork":false,"pushed_at":"2024-11-09T01:07:23.000Z","size":748,"stargazers_count":16,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-02T22:36:54.724Z","etag":null,"topics":["android","android-sdk","google-play-billing","iap","in-app-purchase","java-android","jetpack","kotlin-android","mobile","paywall","sdk","subscriptions"],"latest_commit_sha":null,"homepage":"https://www.nami.ml","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/namiml.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-29T00:48:04.000Z","updated_at":"2024-11-09T01:07:26.000Z","dependencies_parsed_at":"2023-12-28T05:28:33.520Z","dependency_job_id":"4400b1a5-2d5e-49c0-a6e3-8836459552e5","html_url":"https://github.com/namiml/nami-android","commit_stats":null,"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namiml%2Fnami-android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namiml%2Fnami-android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namiml%2Fnami-android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/namiml%2Fnami-android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/namiml","download_url":"https://codeload.github.com/namiml/nami-android/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248166927,"owners_count":21058480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-sdk","google-play-billing","iap","in-app-purchase","java-android","jetpack","kotlin-android","mobile","paywall","sdk","subscriptions"],"created_at":"2024-11-24T06:17:37.543Z","updated_at":"2025-04-10T05:53:44.801Z","avatar_url":"https://github.com/namiml.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"![Nami SDK logo](https://cdn.namiml.com/brand/sdk/Nami-SDK@0.5x.png)\n\n## What is Nami?\n\nNami ML gives you everything you need to power your paywall, streamline subscription management, and drive revenue growth through instantly deployable paywalls, precise targeting and segmentation, and enterprise-grade security and scaleability.\n\nGo beyond basic Google Play Billing infrastructure and focus on results with:\n\n* Library of smart paywall templates to choose from, implemented natively using Jetpack Compose\n* No-code paywall creator so you can launch a new paywall design instantly, without submitting an app update\n* Experimentation engine to run paywall A/B tests so you can improve your conversion rates\n* Built-in IAP \u0026 subscription management and analytics, so you don't need another solution\n\nNami is simple adopt while giving you the tools you need to improve revenue. Our free tier is generous, and gives you everything you need to get started. [Sign up for a free account](https://app.namiml.com/join/)\n\nGet started by heading over to our [quick start guide](https://learn.namiml.com/public-docs/get-started/quickstart-guide)\n\n## Getting the Nami Framework\n\n### Requirements\n- Android SDK minimum version 22\n- SDK builds target Android 13 (API version 33)\n- SDK has been built with Kotlin v1.8.20\n\n### Add Maven repostiory\n\n```java\nallprojects {\n    repositories {\n        google()\n        mavenLocal()\n        maven { url \"https://packages.namiml.com/NamiSDK/Android/\"}\n    }\n}\n```\n\n### Add Nami SDK dependency\n\ndependencies {\n  implementation \"com.namiml:sdk-android:3.2.6\"\n}\n\n## Configure the SDK\n\nWe recommend that you configure the Nami SDK as early in your app's launch as possible. This will ensure the SDK is ready to receive and process purchases.\n\nThe best spot to do this is in the onCreate() method in your class that creates your Application and inherits from Application(). Here's a full code example.\n\nYou can find the Nami App Platform ID under the Nami Control Center's [Integrations \u003e Google Play](https://app.namiml.com/integrations/) section.\n\n```kotlin\nimport com.namiml.Nami\nimport com.namiml.NamiConfiguration\nimport com.namiml.NamiLogLevel\n\nclass DemoApplication : Application() {\n\n  override fun onCreate() {\n    super.onCreate()\n    Nami.configure(\n      NamiConfiguration.build(this, \"YOUR_APP_PLATFORM_ID\") {\n        LogLevel = NamiLogLevel.INFO.takeIf { BuildConfig.DEBUG } ?: NamiLogLevel.WARN\n      }\n    )\n  }\n}\n```\n\n## Next Steps\n\nOnce the SDK is initialized, you're ready to show a paywall. See the [complete guide to Android setup](https://learn.namiml.com/public-docs/integrations/billing-platforms/google-integration/sdk-setup) to find out how.\n\n\n## Other Resources\n\n### Release Notes\n- [Stable](https://github.com/namiml/nami-android/wiki/Nami-SDK-Stable-Releases)\n- [Early Access](https://github.com/namiml/nami-android/wiki/Nami-SDK-Early-Access-Releases)\n\n### Documentation\n\n- [SDK Reference](https://learn.namiml.com/public-docs/sdk-reference)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnamiml%2Fnami-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnamiml%2Fnami-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnamiml%2Fnami-android/lists"}