Compare commits
79 Commits
81e7dc207d
...
renovate/c
Author | SHA1 | Date | |
---|---|---|---|
4aae580c2b | |||
343b95de8c | |||
5105597620 | |||
07cfec550b | |||
d31a4c4c69 | |||
974f8a6738 | |||
934215723b | |||
546fbb55d6 | |||
e1d05ba16f | |||
0ec542ef25 | |||
b9203a4659 | |||
c6ca8ef754 | |||
2bc3372db1 | |||
76cbdb7832 | |||
87ea1df4cd | |||
ceffc79929 | |||
0914ebe475 | |||
f57bb2b935 | |||
d896124765 | |||
a3e06eea84 | |||
01d206fb2b | |||
d6824843f0 | |||
7635266a78 | |||
3b27d27c02 | |||
571f7d60cd | |||
ce23372932 | |||
1024b8f4aa | |||
73e2e20398 | |||
a95c6951f2 | |||
0966aa5054 | |||
8ca461ee0a | |||
6c7b1e2675 | |||
2359fdca81 | |||
998ed5abc0 | |||
e4452160f6 | |||
8e67f2d885 | |||
e3943b33ff | |||
e26055afe7 | |||
587607f7dc | |||
262dc08881 | |||
cea9c27d57 | |||
17a6526b29 | |||
a931335a2b | |||
aafd4f76d6 | |||
5d464826dc | |||
6eddd15d81 | |||
6fee471dec | |||
38727a239d | |||
83e2cf733e | |||
3214d772b2 | |||
40c3f39c49 | |||
6215ffa7b6 | |||
bf073da67b | |||
49fe5ca037 | |||
62f854db27 | |||
aea6fa6c69 | |||
029a1fcde7 | |||
92c99bec22 | |||
663c1236a4 | |||
a9582ffb05 | |||
b11fb89bd9 | |||
1e6bebe853 | |||
96904bce79 | |||
08675a5fc3 | |||
019046474c | |||
0e63b6a50d | |||
608ff610d8 | |||
a009ce0c15 | |||
1ba95c54a2 | |||
51987f54e1 | |||
efb3a436c4 | |||
8a22d3b66e | |||
c404d498d5 | |||
10d35956b3 | |||
1de639dc46 | |||
a297988d33 | |||
e788d064a5 | |||
d6692b5b7c | |||
5ac4ba1d43 |
@ -1,7 +1,7 @@
|
||||
plugins {
|
||||
id 'com.android.application'
|
||||
id 'org.jetbrains.kotlin.android'
|
||||
id 'org.jetbrains.kotlin.plugin.serialization' version '2.0.21'
|
||||
id 'org.jetbrains.kotlin.plugin.serialization' version '2.2.0'
|
||||
}
|
||||
|
||||
|
||||
@ -72,13 +72,13 @@ android {
|
||||
|
||||
|
||||
dependencies {
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.1.2'
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.1.5'
|
||||
|
||||
implementation 'androidx.camera:camera-lifecycle:1.3.4'
|
||||
implementation 'androidx.camera:camera-view:1.3.4'
|
||||
runtimeOnly 'androidx.camera:camera-camera2:1.3.4'
|
||||
implementation 'androidx.camera:camera-lifecycle:1.4.2'
|
||||
implementation 'androidx.camera:camera-view:1.4.2'
|
||||
runtimeOnly 'androidx.camera:camera-camera2:1.4.2'
|
||||
|
||||
implementation 'com.google.code.gson:gson:2.11.0'
|
||||
implementation 'com.google.code.gson:gson:2.13.1'
|
||||
implementation 'com.google.android.material:material:1.12.0'
|
||||
implementation 'com.google.zxing:core:3.5.3'
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
plugins {
|
||||
id 'com.android.application' version '8.7.0' apply false
|
||||
id 'com.android.library' version '8.6.1' apply false
|
||||
id 'org.jetbrains.kotlin.android' version '2.0.20' apply false
|
||||
id 'com.autonomousapps.dependency-analysis' version '2.1.4' apply true
|
||||
id 'com.android.application' version '8.11.1' apply false
|
||||
id 'com.android.library' version '8.11.1' apply false
|
||||
id 'org.jetbrains.kotlin.android' version '2.2.0' apply false
|
||||
id 'com.autonomousapps.dependency-analysis' version '2.19.0' apply true
|
||||
}
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
9
gradlew
vendored
9
gradlew
vendored
@ -86,8 +86,7 @@ done
|
||||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
|
||||
' "$PWD" ) || exit
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
@ -115,7 +114,7 @@ case "$( uname )" in #(
|
||||
NONSTOP* ) nonstop=true ;;
|
||||
esac
|
||||
|
||||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||
CLASSPATH="\\\"\\\""
|
||||
|
||||
|
||||
# Determine the Java command to use to start the JVM.
|
||||
@ -206,7 +205,7 @@ fi
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
|
||||
# Collect all arguments for the java command:
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||
# and any embedded shellness will be escaped.
|
||||
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
||||
# treated as '${Hostname}' itself on the command line.
|
||||
@ -214,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
set -- \
|
||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||
-classpath "$CLASSPATH" \
|
||||
org.gradle.wrapper.GradleWrapperMain \
|
||||
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
|
||||
"$@"
|
||||
|
||||
# Stop when "xargs" is not available.
|
||||
|
4
gradlew.bat
vendored
4
gradlew.bat
vendored
@ -70,11 +70,11 @@ goto fail
|
||||
:execute
|
||||
@rem Setup the command line
|
||||
|
||||
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||
set CLASSPATH=
|
||||
|
||||
|
||||
@rem Execute Gradle
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
|
||||
|
||||
:end
|
||||
@rem End local scope for the variables with windows NT shell
|
||||
|
Reference in New Issue
Block a user