Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
com.ccwangluo.accelerator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sheteng
com.ccwangluo.accelerator
Commits
9533bad1
Commit
9533bad1
authored
May 14, 2020
by
Mygod
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dependencies
parent
857fb552
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
34 deletions
+44
-34
build.gradle.kts
build.gradle.kts
+1
-1
core/build.gradle.kts
core/build.gradle.kts
+2
-2
detekt.yml
detekt.yml
+37
-27
gradle/wrapper/gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
mobile/build.gradle.kts
mobile/build.gradle.kts
+2
-2
repositories.gradle.kts
repositories.gradle.kts
+1
-1
No files found.
build.gradle.kts
View file @
9533bad1
...
@@ -17,7 +17,7 @@ buildscript {
...
@@ -17,7 +17,7 @@ buildscript {
classpath
(
rootProject
.
extra
.
get
(
"androidPlugin"
).
toString
())
classpath
(
rootProject
.
extra
.
get
(
"androidPlugin"
).
toString
())
classpath
(
kotlin
(
"gradle-plugin"
,
rootProject
.
extra
.
get
(
"kotlinVersion"
).
toString
()))
classpath
(
kotlin
(
"gradle-plugin"
,
rootProject
.
extra
.
get
(
"kotlinVersion"
).
toString
()))
classpath
(
"com.google.android.gms:oss-licenses-plugin:0.10.2"
)
classpath
(
"com.google.android.gms:oss-licenses-plugin:0.10.2"
)
classpath
(
"com.google.firebase:firebase-crashlytics-gradle:2.
0
.0"
)
classpath
(
"com.google.firebase:firebase-crashlytics-gradle:2.
1
.0"
)
classpath
(
"com.google.gms:google-services:4.3.3"
)
classpath
(
"com.google.gms:google-services:4.3.3"
)
classpath
(
"com.vanniktech:gradle-maven-publish-plugin:0.11.1"
)
classpath
(
"com.vanniktech:gradle-maven-publish-plugin:0.11.1"
)
classpath
(
"gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3"
)
classpath
(
"gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3"
)
...
...
core/build.gradle.kts
View file @
9533bad1
...
@@ -69,7 +69,7 @@ tasks.register<Exec>("cargoClean") {
...
@@ -69,7 +69,7 @@ tasks.register<Exec>("cargoClean") {
tasks
.
clean
.
dependsOn
(
"cargoClean"
)
tasks
.
clean
.
dependsOn
(
"cargoClean"
)
dependencies
{
dependencies
{
val
coroutinesVersion
=
"1.3.
5
"
val
coroutinesVersion
=
"1.3.
6
"
val
roomVersion
=
"2.2.5"
val
roomVersion
=
"2.2.5"
val
workVersion
=
"2.3.4"
val
workVersion
=
"2.3.4"
...
@@ -83,7 +83,7 @@ dependencies {
...
@@ -83,7 +83,7 @@ dependencies {
api
(
"androidx.work:work-gcm:$workVersion"
)
api
(
"androidx.work:work-gcm:$workVersion"
)
api
(
"com.google.android.gms:play-services-oss-licenses:17.0.0"
)
api
(
"com.google.android.gms:play-services-oss-licenses:17.0.0"
)
api
(
"com.google.code.gson:gson:2.8.6"
)
api
(
"com.google.code.gson:gson:2.8.6"
)
api
(
"com.google.firebase:firebase-analytics-ktx:17.4.
0
"
)
api
(
"com.google.firebase:firebase-analytics-ktx:17.4.
1
"
)
api
(
"com.google.firebase:firebase-config-ktx:19.1.4"
)
api
(
"com.google.firebase:firebase-config-ktx:19.1.4"
)
api
(
"com.google.firebase:firebase-crashlytics:17.0.0"
)
api
(
"com.google.firebase:firebase-crashlytics:17.0.0"
)
api
(
"com.jakewharton.timber:timber:4.7.1"
)
api
(
"com.jakewharton.timber:timber:4.7.1"
)
...
...
detekt.yml
View file @
9533bad1
...
@@ -19,10 +19,8 @@ complexity:
...
@@ -19,10 +19,8 @@ complexity:
ignoreSingleWhenExpression
:
false
ignoreSingleWhenExpression
:
false
ignoreSimpleWhenEntries
:
false
ignoreSimpleWhenEntries
:
false
ignoreNestingFunctions
:
false
ignoreNestingFunctions
:
false
nestingFunctions
:
run,let,apply,with,also,use,forEach,isNotNull,ifNull
LabeledExpression
:
LabeledExpression
:
active
:
false
active
:
false
ignoredLabels
:
'
'
LargeClass
:
LargeClass
:
active
:
true
active
:
true
threshold
:
600
threshold
:
600
...
@@ -35,6 +33,7 @@ complexity:
...
@@ -35,6 +33,7 @@ complexity:
constructorThreshold
:
7
constructorThreshold
:
7
ignoreDefaultParameters
:
true
ignoreDefaultParameters
:
true
ignoreDataClasses
:
true
ignoreDataClasses
:
true
ignoreAnnotated
:
[]
MethodOverloading
:
MethodOverloading
:
active
:
false
active
:
false
NestedBlockDepth
:
NestedBlockDepth
:
...
@@ -42,14 +41,14 @@ complexity:
...
@@ -42,14 +41,14 @@ complexity:
threshold
:
4
threshold
:
4
StringLiteralDuplication
:
StringLiteralDuplication
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
threshold
:
3
threshold
:
3
ignoreAnnotation
:
true
ignoreAnnotation
:
true
excludeStringsWithLessThan5Characters
:
true
excludeStringsWithLessThan5Characters
:
true
ignoreStringsRegex
:
'
$^'
ignoreStringsRegex
:
'
$^'
TooManyFunctions
:
TooManyFunctions
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
thresholdInFiles
:
11
thresholdInFiles
:
11
thresholdInClasses
:
11
thresholdInClasses
:
11
thresholdInInterfaces
:
11
thresholdInInterfaces
:
11
...
@@ -105,7 +104,7 @@ exceptions:
...
@@ -105,7 +104,7 @@ exceptions:
active
:
true
active
:
true
ExceptionRaisedInUnexpectedLocation
:
ExceptionRaisedInUnexpectedLocation
:
active
:
true
active
:
true
methodNames
:
'
toString,hashCode,equals,finalize'
methodNames
:
[
toString
,
hashCode
,
equals
,
finalize
]
InstanceOfCheckForException
:
InstanceOfCheckForException
:
active
:
false
active
:
false
NotImplementedDeclaration
:
NotImplementedDeclaration
:
...
@@ -119,7 +118,11 @@ exceptions:
...
@@ -119,7 +118,11 @@ exceptions:
ignoreLabeled
:
true
ignoreLabeled
:
true
SwallowedException
:
SwallowedException
:
active
:
true
active
:
true
ignoredExceptionTypes
:
'
InterruptedException,NumberFormatException,ParseException,MalformedURLException'
ignoredExceptionTypes
:
-
InterruptedException
-
NumberFormatException
-
ParseException
-
MalformedURLException
allowedExceptionNameRegex
:
'
^(_|(ignore|expected).*)'
allowedExceptionNameRegex
:
'
^(_|(ignore|expected).*)'
ThrowingExceptionFromFinally
:
ThrowingExceptionFromFinally
:
active
:
false
active
:
false
...
@@ -127,12 +130,15 @@ exceptions:
...
@@ -127,12 +130,15 @@ exceptions:
active
:
true
active
:
true
ThrowingExceptionsWithoutMessageOrCause
:
ThrowingExceptionsWithoutMessageOrCause
:
active
:
true
active
:
true
exceptions
:
'
IllegalArgumentException,IllegalStateException,IOException'
exceptions
:
-
IllegalArgumentException
-
IllegalStateException
-
IOException
ThrowingNewInstanceOfSameException
:
ThrowingNewInstanceOfSameException
:
active
:
true
active
:
true
TooGenericExceptionCaught
:
TooGenericExceptionCaught
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
exceptionNames
:
exceptionNames
:
-
ArrayIndexOutOfBoundsException
-
ArrayIndexOutOfBoundsException
-
Error
-
Error
...
@@ -259,37 +265,37 @@ naming:
...
@@ -259,37 +265,37 @@ naming:
ClassNaming
:
ClassNaming
:
active
:
true
active
:
true
classPattern
:
'
[A-Z$][a-zA-Z0-9$]*'
classPattern
:
'
[A-Z$][a-zA-Z0-9$]*'
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
ConstructorParameterNaming
:
ConstructorParameterNaming
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
parameterPattern
:
'
[a-z][A-Za-z0-9]*'
parameterPattern
:
'
[a-z][A-Za-z0-9]*'
privateParameterPattern
:
'
[a-z][A-Za-z0-9]*'
privateParameterPattern
:
'
[a-z][A-Za-z0-9]*'
excludeClassPattern
:
'
$^'
excludeClassPattern
:
'
$^'
ignoreOverridden
:
true
ignoreOverridden
:
true
EnumNaming
:
EnumNaming
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
enumEntryPattern
:
'
^[A-Z][_a-zA-Z0-9]*'
enumEntryPattern
:
'
^[A-Z][_a-zA-Z0-9]*'
ForbiddenClassName
:
ForbiddenClassName
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
forbiddenName
:
'
'
forbiddenName
:
[]
FunctionMaxLength
:
FunctionMaxLength
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
maximumFunctionNameLength
:
30
maximumFunctionNameLength
:
30
FunctionMinLength
:
FunctionMinLength
:
active
:
false
active
:
false
FunctionNaming
:
FunctionNaming
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
functionPattern
:
'
^([a-z$][a-zA-Z$0-9]*)|(`.*`)$'
functionPattern
:
'
^([a-z$][a-zA-Z$0-9]*)|(`.*`)$'
excludeClassPattern
:
'
$^'
excludeClassPattern
:
'
$^'
ignoreOverridden
:
true
ignoreOverridden
:
true
FunctionParameterNaming
:
FunctionParameterNaming
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
parameterPattern
:
'
[a-z][A-Za-z0-9]*'
parameterPattern
:
'
[a-z][A-Za-z0-9]*'
excludeClassPattern
:
'
$^'
excludeClassPattern
:
'
$^'
ignoreOverridden
:
true
ignoreOverridden
:
true
...
@@ -303,29 +309,29 @@ naming:
...
@@ -303,29 +309,29 @@ naming:
active
:
false
active
:
false
ObjectPropertyNaming
:
ObjectPropertyNaming
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
constantPattern
:
'
[A-Za-z][_A-Za-z0-9]*'
constantPattern
:
'
[A-Za-z][_A-Za-z0-9]*'
propertyPattern
:
'
[A-Za-z][_A-Za-z0-9]*'
propertyPattern
:
'
[A-Za-z][_A-Za-z0-9]*'
privatePropertyPattern
:
'
(_)?[A-Za-z][_A-Za-z0-9]*'
privatePropertyPattern
:
'
(_)?[A-Za-z][_A-Za-z0-9]*'
PackageNaming
:
PackageNaming
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
packagePattern
:
'
^[a-z]+(\.[a-z][A-Za-z0-9]*)*$'
packagePattern
:
'
^[a-z]+(\.[a-z][A-Za-z0-9]*)*$'
TopLevelPropertyNaming
:
TopLevelPropertyNaming
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
constantPattern
:
'
[A-Z][_A-Z0-9]*'
constantPattern
:
'
[A-Z][_A-Z0-9]*'
propertyPattern
:
'
[A-Za-z][_A-Za-z0-9]*'
propertyPattern
:
'
[A-Za-z][_A-Za-z0-9]*'
privatePropertyPattern
:
'
_?[A-Za-z][_A-Za-z0-9]*'
privatePropertyPattern
:
'
_?[A-Za-z][_A-Za-z0-9]*'
VariableMaxLength
:
VariableMaxLength
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
maximumVariableNameLength
:
64
maximumVariableNameLength
:
64
VariableMinLength
:
VariableMinLength
:
active
:
false
active
:
false
VariableNaming
:
VariableNaming
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
variablePattern
:
'
[a-z][A-Za-z0-9]*'
variablePattern
:
'
[a-z][A-Za-z0-9]*'
privateVariablePattern
:
'
(_)?[a-z][A-Za-z0-9]*'
privateVariablePattern
:
'
(_)?[a-z][A-Za-z0-9]*'
excludeClassPattern
:
'
$^'
excludeClassPattern
:
'
$^'
...
@@ -337,10 +343,10 @@ performance:
...
@@ -337,10 +343,10 @@ performance:
active
:
true
active
:
true
ForEachOnRange
:
ForEachOnRange
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
SpreadOperator
:
SpreadOperator
:
active
:
true
active
:
true
excludes
:
'
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt'
excludes
:
[
'
**/test/**'
,
'
**/androidTest/**'
,
'
**/*.Test.kt'
,
'
**/*.Spec.kt'
,
'
**/*.Spek.kt'
]
UnnecessaryTemporaryInstantiation
:
UnnecessaryTemporaryInstantiation
:
active
:
true
active
:
true
...
@@ -376,6 +382,10 @@ potential-bugs:
...
@@ -376,6 +382,10 @@ potential-bugs:
active
:
true
active
:
true
UnconditionalJumpStatementInLoop
:
UnconditionalJumpStatementInLoop
:
active
:
true
active
:
true
UnnecessaryNotNullOperator
:
active
:
false
UnnecessarySafeCall
:
active
:
false
UnreachableCode
:
UnreachableCode
:
active
:
true
active
:
true
UnsafeCallOnNullableType
:
UnsafeCallOnNullableType
:
...
@@ -408,7 +418,7 @@ style:
...
@@ -408,7 +418,7 @@ style:
includeLineWrapping
:
false
includeLineWrapping
:
false
ForbiddenComment
:
ForbiddenComment
:
active
:
true
active
:
true
values
:
'
TODO:,FIXME:,STOPSHIP:'
values
:
[
'
TODO:'
,
'
FIXME:'
,
'
STOPSHIP:'
]
allowedPatterns
:
'
'
allowedPatterns
:
'
'
ForbiddenImport
:
ForbiddenImport
:
active
:
true
active
:
true
...
@@ -416,10 +426,10 @@ style:
...
@@ -416,10 +426,10 @@ style:
forbiddenPatterns
:
'
'
forbiddenPatterns
:
'
'
ForbiddenMethodCall
:
ForbiddenMethodCall
:
active
:
true
active
:
true
methods
:
'
'
methods
:
[]
ForbiddenPublicDataClass
:
ForbiddenPublicDataClass
:
active
:
true
active
:
true
ignorePackages
:
'
*.internal,*.internal.*'
ignorePackages
:
[
'
*.internal'
,
'
*.internal.*'
]
ForbiddenVoid
:
ForbiddenVoid
:
active
:
true
active
:
true
ignoreOverridden
:
true
ignoreOverridden
:
true
...
@@ -428,7 +438,7 @@ style:
...
@@ -428,7 +438,7 @@ style:
active
:
true
active
:
true
ignoreOverridableFunction
:
true
ignoreOverridableFunction
:
true
excludedFunctions
:
'
describeContents'
excludedFunctions
:
'
describeContents'
excludeAnnotatedFunction
:
'
dagger.Provides'
excludeAnnotatedFunction
:
[
'
dagger.Provides'
]
LibraryCodeMustSpecifyReturnType
:
LibraryCodeMustSpecifyReturnType
:
active
:
true
active
:
true
LoopWithTooManyJumpStatements
:
LoopWithTooManyJumpStatements
:
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
9533bad1
distributionBase
=
GRADLE_USER_HOME
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-6.
3
-all.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-6.
4
-all.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
zipStorePath
=
wrapper/dists
mobile/build.gradle.kts
View file @
9533bad1
...
@@ -14,13 +14,13 @@ androidExtensions.isExperimental = true
...
@@ -14,13 +14,13 @@ androidExtensions.isExperimental = true
dependencies
{
dependencies
{
implementation
(
"androidx.browser:browser:1.2.0"
)
implementation
(
"androidx.browser:browser:1.2.0"
)
implementation
(
"androidx.constraintlayout:constraintlayout:2.0.0-beta
4
"
)
implementation
(
"androidx.constraintlayout:constraintlayout:2.0.0-beta
5
"
)
implementation
(
"androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion"
)
implementation
(
"androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion"
)
implementation
(
"com.google.android.gms:play-services-vision:20.0.0"
)
implementation
(
"com.google.android.gms:play-services-vision:20.0.0"
)
implementation
(
"com.google.firebase:firebase-ads:19.1.0"
)
implementation
(
"com.google.firebase:firebase-ads:19.1.0"
)
implementation
(
"com.google.zxing:core:3.4.0"
)
implementation
(
"com.google.zxing:core:3.4.0"
)
implementation
(
"com.takisoft.preferencex:preferencex-simplemenu:1.1.0"
)
implementation
(
"com.takisoft.preferencex:preferencex-simplemenu:1.1.0"
)
implementation
(
"com.twofortyfouram:android-plugin-api-for-locale:1.0.4"
)
implementation
(
"com.twofortyfouram:android-plugin-api-for-locale:1.0.4"
)
implementation
(
"me.zhanghai.android.fastscroll:library:1.1.
3
"
)
implementation
(
"me.zhanghai.android.fastscroll:library:1.1.
4
"
)
implementation
(
"xyz.belvi.mobilevision:barcodescanner:2.0.3"
)
implementation
(
"xyz.belvi.mobilevision:barcodescanner:2.0.3"
)
}
}
repositories.gradle.kts
View file @
9533bad1
rootProject
.
extra
.
apply
{
rootProject
.
extra
.
apply
{
set
(
"androidPlugin"
,
"com.android.tools.build:gradle:4.1.0-alpha0
8
"
)
set
(
"androidPlugin"
,
"com.android.tools.build:gradle:4.1.0-alpha0
9
"
)
set
(
"kotlinVersion"
,
"1.3.72"
)
set
(
"kotlinVersion"
,
"1.3.72"
)
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment