Skip to content

Commit 6e73cb7

Browse files
committed
feat: snapshot release
1 parent 9024031 commit 6e73cb7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repositories {
3838
Next, add the dependency to your project's `build.gradle(.kts)` file:
3939

4040
```groovy
41-
implementation("io.appwrite:sdk-for-android:0.0.1")
41+
implementation("io.appwrite:sdk-for-android:0.0.1-SNAPSHOT")
4242
```
4343

4444
### Maven
@@ -49,7 +49,7 @@ Add this to your project's `pom.xml` file:
4949
<dependency>
5050
<groupId>io.appwrite</groupId>
5151
<artifactId>sdk-for-android</artifactId>
52-
<version>0.0.1</version>
52+
<version>0.0.1-SNAPSHOT</version>
5353
</dependency>
5454
</dependencies>
5555
```

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'io.github.gradle-nexus.publish-plugin'
33
// Top-level build file where you can add configuration options common to all sub-projects/modules.
44
buildscript {
55
ext.kotlin_version = "1.4.31"
6-
version '0.0.1'
6+
version '0.0.1-SNAPSHOT'
77
repositories {
88
maven { url "https://plugins.gradle.org/m2/" }
99
google()

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
ext {
88
PUBLISH_GROUP_ID = 'io.appwrite'
99
PUBLISH_ARTIFACT_ID = 'sdk-for-android'
10-
PUBLISH_VERSION = '0.0.1'
10+
PUBLISH_VERSION = '0.0.1-SNAPSHOT'
1111
POM_URL = 'https://github.com/appwrite/sdk-for-android'
1212
POM_SCM_URL = 'https://github.com/appwrite/sdk-for-android'
1313
POM_ISSUE_URL = 'https://github.com/appwrite/sdk-for-android/issues'

0 commit comments

Comments
 (0)