Skip to content

Commit 532bc21

Browse files
committed
chore: remove incorrect maven.purchasely.io references
SDK is resolved from Maven Central, not a custom repo. Removes outdated references from CLAUDE.md, settings.gradle.kts, and the original implementation plan.
1 parent 7954b44 commit 532bc21

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

CLAUDE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ cocktails.json → CocktailRepository → ViewModel (StateFlow/Published) → Co
117117
- Placements: `onboarding`, `recipe_detail`, `favorites`, `filters`
118118
- Shared data in `shared-assets/` - copied to platform asset dirs
119119
- API keys via local config files (never committed)
120-
- Purchasely Maven repo: `https://maven.purchasely.io`
121120
- **Purchasely best practices**: All SDK integration changes must follow `docs/purchasely-best-practices.md`. Update the doc when patterns change.
122121

123122
## Gotchas

docs/plans/2026-02-06-feat-shaker-sample-app-plan.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ Handle in `Application.onCreate` / `App.onOpenURL` → pass to `Purchasely.isDee
207207
2. Source 25 royalty-free cocktail images (webp, ~400x600px), place in `shared-assets/images/`
208208
3. Scaffold Android project:
209209
- `android/` with Gradle 8.x, Kotlin 2.2, Compose, Material 3
210-
- Dependencies: `io.purchasely:core`, `io.purchasely:google-play` from Maven (`https://maven.purchasely.io`)
210+
- Dependencies: `io.purchasely:core`, `io.purchasely:google-play` from Maven Central
211211
- API key via `local.properties` (`purchasely.apiKey=...`)
212212
- Create `local.properties.example` with placeholder
213213
- Package: `com.purchasely.shaker`
@@ -416,7 +416,7 @@ Based on patterns from `Android_SDK/samplev2/`:
416416
- **SDK init** in `Application.onCreate()` via `Purchasely.Builder(context).apiKey(...).stores(listOf(GoogleStore())).build().start {...}`
417417
- **Paywall display**: `Purchasely.fetchPresentation(...)` then `presentation.display(activity)` (required to support Purchasely flows)
418418
- **Manual close handling** required after purchase (Android does not auto-close)
419-
- **Dependencies**: `io.purchasely:core:5.7.3`, `io.purchasely:google-play:5.7.3` from `https://maven.purchasely.io`
419+
- **Dependencies**: `io.purchasely:core:5.7.3`, `io.purchasely:google-play:5.7.3` from Maven Central
420420
- **Gradle config**: Compose enabled, Kotlin 2.2, Java target 11, min SDK 26, compile SDK 35
421421
- **DI**: Koin (lightweight, matches existing sample pattern)
422422
- **Serialization**: `kotlinx.serialization.json` for `cocktails.json` parsing

settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ dependencyResolutionManagement {
1414
repositories {
1515
google()
1616
mavenCentral()
17-
maven { url = uri("https://maven.purchasely.io") }
1817
}
1918
versionCatalogs {
2019
create("libs") {

0 commit comments

Comments
 (0)