Skip to content

Commit 6757249

Browse files
committed
fix(release): change android package name
1 parent 2e26a1a commit 6757249

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ jobs:
445445
[**Node**](https://www.npmjs.com/package/@sqliteai/sqlite-sync): `npm install @sqliteai/sqlite-sync@dev`
446446
[**WASM**](https://www.npmjs.com/package/@sqliteai/sqlite-wasm): `npm install @sqliteai/sqlite-wasm@dev`
447447
[**Expo**](https://www.npmjs.com/package/@sqliteai/sqlite-sync-expo): `npm install @sqliteai/sqlite-sync-expo@dev`
448-
[**Android**](https://central.sonatype.com/artifact/ai.sqlite/sync-dev): `ai.sqlite:sync-dev:${{ steps.tag.outputs.version }}`
448+
[**Android**](https://central.sonatype.com/artifact/ai.sqlite/sync.dev): `ai.sqlite:sync.dev:${{ steps.tag.outputs.version }}`
449449
[**Swift**](https://github.com/sqliteai/sqlite-sync-dev#swift-package): [Installation Guide](https://github.com/sqliteai/sqlite-sync-dev#swift-package)
450450
451451
---

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ sqlite3_close(db)
155155

156156
### Android Package
157157

158-
Add the [following](https://central.sonatype.com/artifact/ai.sqlite/sync-dev) to your Gradle dependencies:
158+
Add the [following](https://central.sonatype.com/artifact/ai.sqlite/sync.dev) to your Gradle dependencies:
159159

160160
```gradle
161-
implementation 'ai.sqlite:sync-dev:0.9.91'
161+
implementation 'ai.sqlite:sync.dev:0.9.91'
162162
```
163163

164164
Here's an example of how to use the package:

packages/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'maven-publish'
1717
apply plugin: 'signing'
1818

1919
android {
20-
namespace 'ai.sqlite.sync-dev'
20+
namespace 'ai.sqlite.sync.dev'
2121
compileSdk 34
2222

2323
defaultConfig {
@@ -57,7 +57,7 @@ afterEvaluate {
5757
publications {
5858
release(MavenPublication) {
5959
groupId = 'ai.sqlite'
60-
artifactId = 'sync-dev'
60+
artifactId = 'sync.dev'
6161
version = project.hasProperty('VERSION') ? project.VERSION : ['make', 'version'].execute(null, file('../..')).text.trim()
6262

6363
artifact(project.hasProperty('AAR_PATH') ? project.AAR_PATH : "$buildDir/outputs/aar/android-release.aar")

0 commit comments

Comments
 (0)