Skip to content

Commit 70d509e

Browse files
committed
Update dependencies
1 parent 5e3bf2a commit 70d509e

File tree

11 files changed

+16
-30
lines changed

11 files changed

+16
-30
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ buildscript {
1717
classpath(rootProject.extra.get("androidPlugin").toString())
1818
classpath(kotlin("gradle-plugin", rootProject.extra.get("kotlinVersion").toString()))
1919
classpath("com.google.android.gms:oss-licenses-plugin:0.10.2")
20-
classpath("com.google.firebase:firebase-crashlytics-gradle:2.2.0")
20+
classpath("com.google.firebase:firebase-crashlytics-gradle:2.2.1")
2121
classpath("com.google.gms:google-services:4.3.3")
2222
classpath("com.vanniktech:gradle-maven-publish-plugin:0.12.0")
2323
classpath("gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3")

buildSrc/src/main/kotlin/Helpers.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ fun Project.setupCommon() {
4747

4848
dependencies {
4949
add("testImplementation", "junit:junit:4.13")
50-
add("androidTestImplementation", "androidx.test:runner:1.2.0")
51-
add("androidTestImplementation", "androidx.test.espresso:espresso-core:3.2.0")
50+
add("androidTestImplementation", "androidx.test:runner:1.3.0")
51+
add("androidTestImplementation", "androidx.test.espresso:espresso-core:3.3.0")
5252
}
5353
}
5454

core/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ cargo {
3838
profile = findProperty("CARGO_PROFILE")?.toString() ?: currentFlavor
3939
extraCargoBuildArguments = listOf("--bin", libname!!)
4040
featureSpec.noDefaultBut(arrayOf(
41+
"ring-aead-ciphers",
4142
"sodium",
4243
"rc4",
4344
"aes-cfb",
@@ -92,5 +93,5 @@ dependencies {
9293
api("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:$coroutinesVersion")
9394
kapt("androidx.room:room-compiler:$roomVersion")
9495
androidTestImplementation("androidx.room:room-testing:$roomVersion")
95-
androidTestImplementation("androidx.test.ext:junit-ktx:1.1.1")
96+
androidTestImplementation("androidx.test.ext:junit-ktx:1.1.2")
9697
}

gradle/wrapper/gradle-wrapper.jar

293 Bytes
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ fi
130130
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
131131
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
132132
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133-
133+
134134
JAVACMD=`cygpath --unix "$JAVACMD"`
135135

136136
# We build the pattern for arguments to be converted via cygpath

gradlew.bat

+3-18
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
4040

4141
set JAVA_EXE=java.exe
4242
%JAVA_EXE% -version >NUL 2>&1
43-
if "%ERRORLEVEL%" == "0" goto init
43+
if "%ERRORLEVEL%" == "0" goto execute
4444

4545
echo.
4646
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@@ -54,7 +54,7 @@ goto fail
5454
set JAVA_HOME=%JAVA_HOME:"=%
5555
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5656

57-
if exist "%JAVA_EXE%" goto init
57+
if exist "%JAVA_EXE%" goto execute
5858

5959
echo.
6060
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
@@ -64,29 +64,14 @@ echo location of your Java installation.
6464

6565
goto fail
6666

67-
:init
68-
@rem Get command-line arguments, handling Windows variants
69-
70-
if not "%OS%" == "Windows_NT" goto win9xME_args
71-
72-
:win9xME_args
73-
@rem Slurp the command line arguments.
74-
set CMD_LINE_ARGS=
75-
set _SKIP=2
76-
77-
:win9xME_args_slurp
78-
if "x%~1" == "x" goto execute
79-
80-
set CMD_LINE_ARGS=%*
81-
8267
:execute
8368
@rem Setup the command line
8469

8570
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
8671

8772

8873
@rem Execute Gradle
89-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
74+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
9075

9176
:end
9277
@rem End local scope for the variables with windows NT shell

mobile/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ dependencies {
1818
implementation("androidx.camera:camera-camera2:$cameraxVersion")
1919
implementation("androidx.camera:camera-lifecycle:$cameraxVersion")
2020
implementation("androidx.camera:camera-view:1.0.0-alpha15")
21-
implementation("androidx.constraintlayout:constraintlayout:2.0.0")
21+
implementation("androidx.constraintlayout:constraintlayout:2.0.1")
2222
implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion")
2323
implementation("com.google.firebase:firebase-ads:19.3.0")
24-
implementation("com.google.mlkit:barcode-scanning:16.0.2")
24+
implementation("com.google.mlkit:barcode-scanning:16.0.3")
2525
implementation("com.google.zxing:core:3.4.0")
2626
implementation("com.takisoft.preferencex:preferencex-simplemenu:1.1.0")
2727
implementation("com.twofortyfouram:android-plugin-api-for-locale:1.0.4")

plugin/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ mavenPublish.targets.getByName("uploadArchives") {
2424
dependencies {
2525
api("androidx.core:core-ktx:1.3.1")
2626
// https://android-developers.googleblog.com/2019/07/android-q-beta-5-update.html
27-
api("androidx.drawerlayout:drawerlayout:1.1.0")
28-
api("com.google.android.material:material:1.2.0")
27+
api("androidx.drawerlayout:drawerlayout:1.1.1")
28+
api("com.google.android.material:material:1.2.1")
2929
}

repositories.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rootProject.extra.apply {
2-
set("androidPlugin", "com.android.tools.build:gradle:4.1.0-rc01")
2+
set("androidPlugin", "com.android.tools.build:gradle:4.1.0-rc02")
33
set("kotlinVersion", "1.4.0")
44
}
55

0 commit comments

Comments
 (0)