Add FeatBit Kotlin/Android client SDK (port of .NET client SDK) - #1
Merged
Conversation
Port of FeatBit's official .NET client-side SDK to an idiomatic Kotlin/Android library, since FeatBit ships no native Kotlin SDK and our production app is native Kotlin. - FBClient with suspend start()/identify() and synchronous typed variations - Polling data synchronizer (coroutine loop), in-memory store, evaluator - FlagTracker: listener API + flagChanges Flow - OkHttp + kotlinx.serialization; String-based URLs (no OkHttp type leak) - 28 unit tests (JUnit4 + MockWebServer + Turbine), all passing - Example app + Gradle wrapper (8.9) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Modeled on the gravitee-policy-token-exchange CI (Temurin JDK, dependency caching, sequential test -> build -> upload-artifact), adapted from Maven to this Gradle/Android build. Triggers on pull_request only; release automation is intentionally omitted. - Unit tests (:featbit-client:testDebugUnitTest) - Assemble library AAR + example app - Upload AAR and unit test report artifacts Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
A native Kotlin/Android client-side SDK for FeatBit — a port of FeatBit's official .NET client SDK, since FeatBit ships no Kotlin SDK and our production app is native Kotlin.
Highlights
FBClientwithsuspendstart()/identify()and synchronous typed variations (boolVariation,stringVariation,int/float/double, +*Detail)FlagTracker: .NET-style listener API plus aflagChanges: Flowfor coroutine/Compose consumersStringURLs (no OkHttp type leak)minSdk 21, JVM target 11, Gradle wrapper 8.9Testing
./gradlew :featbit-client:testDebugUnitTest :featbit-client:assembleRelease :example-app:assembleDebug— green; AAR + example APK buildNotes / follow-ups
explicitApi()not enforced; tests use JUnit4 (AGP-native)🤖 Generated with Claude Code