Skip to content

Commit e43dfea

Browse files
committed
Merge remote-tracking branch 'feilongfl/master'
# Conflicts: # build.gradle
2 parents af22163 + 57edef5 commit e43dfea

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
uses: actions/setup-java@v1
2020
with:
2121
java-version: 1.8
22-
- name: Set up Go 1.16
22+
- name: Set up Go 1.18
2323
uses: actions/setup-go@v1
2424
with:
25-
go-version: 1.16
25+
go-version: 1.18
2626
id: go
2727
- name: Force NDK version
28-
run: echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;22.1.7171670"
28+
run: echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;24.0.8215888"
2929
- name: Build rclone
3030
run: ./gradlew rclone:buildNative
3131
- name: Build app

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010
}
1111
}
1212
compileSdkVersion 30
13-
ndkVersion '22.1.7171670'
13+
ndkVersion '24.0.8215888'
1414
defaultConfig {
1515
applicationId 'de.felixnuesse.extract'
1616
minSdkVersion 21

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
66
# Warning: Update checksum when updating gradle, or Android Studio will crash!
7-
distributionSha256Sum=765442b8069c6bee2ea70713861c027587591c6b1df2c857a23361512560894e
7+
distributionSha256Sum=b586e04868a22fd817c8971330fec37e298f3242eb85c374181b12d637f80302

rclone/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
// - windows x86 (with NDK 21b installed)
1515
//
1616
// Prerequisits:
17-
// - go 1.14 - go 1.16
17+
// - go 1.18
1818
// - ndk
1919

2020
// Rclone version - any git reference (tag, branch, hash) should work
21-
def buildTag = 'v1.55.1'
22-
ext.ndkVersion = '22.1.7171670'
21+
def buildTag = 'v1.58.1'
22+
ext.ndkVersion = '24.0.8215888'
2323

2424
//
2525
// DO NOT EDIT ANYTHING BELOW

0 commit comments

Comments
 (0)