File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
library/src/main/java/io/appwrite/services Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 25
25
git fetch --unshallow
26
26
sudo bash -c "echo '$GPG_KEY_CONTENTS' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'"
27
27
chmod +x ./gradlew
28
+
28
29
# Builds the release artifacts of the library
29
30
- name : Build Release Artifacts
30
- run : ./gradlew --info library:assembleRelease
31
+ run : ./gradlew library:assembleRelease
31
32
32
33
# Generates other artifacts (javadocJar is optional)
33
34
- name : Generate Source jar
@@ -38,10 +39,10 @@ jobs:
38
39
run : |
39
40
if ${{ endswith(github.event.release.tag_name, '-SNAPSHOT') }}; then
40
41
echo "Publising Snapshot Version ${{ github.event.release.tag_name}} to Snapshot repository"
41
- ./gradlew publishReleasePublicationToSonatypeRepository
42
+ ./gradlew publishToSonatype
42
43
else
43
44
echo "Publising Release Version ${{ github.event.release.tag_name}} to Staging repository"
44
- ./gradlew publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository
45
+ ./gradlew publishToSonatype --max-workers 1 closeAndReleaseSonatypeStagingRepository
45
46
fi
46
47
env :
47
48
OSSRH_USERNAME : ${{ secrets.OSSRH_USERNAME }}
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ repositories {
38
38
Next, add the dependency to your project's ` build.gradle(.kts) ` file:
39
39
40
40
``` groovy
41
- implementation("io.appwrite:sdk-for-android:0.6.0 ")
41
+ implementation("io.appwrite:sdk-for-android:0.6.1 ")
42
42
```
43
43
44
44
### Maven
@@ -49,7 +49,7 @@ Add this to your project's `pom.xml` file:
49
49
<dependency >
50
50
<groupId >io.appwrite</groupId >
51
51
<artifactId >sdk-for-android</artifactId >
52
- <version >0.6.0 </version >
52
+ <version >0.6.1 </version >
53
53
</dependency >
54
54
</dependencies >
55
55
```
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ class Storage(client: Client) : Service(client) {
115
115
val converter: (Map <String , Any >) -> io.appwrite.models.File = {
116
116
io.appwrite.models.File .from(map = it)
117
117
}
118
- val idParamName: String? = " fileId"
118
+ val idParamName: String? = " fileId"
119
119
val paramName = " file"
120
120
return client.chunkedUpload(
121
121
path,
You can’t perform that action at this time.
0 commit comments