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
31cb7a0d
Commit
31cb7a0d
authored
Jan 09, 2020
by
Mygod
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dependencies
parent
5fe3ff77
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
28 additions
and
10 deletions
+28
-10
build.gradle
build.gradle
+1
-1
core/build.gradle
core/build.gradle
+2
-2
detekt.yml
detekt.yml
+18
-3
mobile/build.gradle
mobile/build.gradle
+2
-2
plugin/CHANGES.md
plugin/CHANGES.md
+3
-0
plugin/build.gradle
plugin/build.gradle
+1
-1
tv/build.gradle
tv/build.gradle
+1
-1
No files found.
build.gradle
View file @
31cb7a0d
...
@@ -10,7 +10,7 @@ buildscript {
...
@@ -10,7 +10,7 @@ buildscript {
sdkVersion
=
29
sdkVersion
=
29
compileSdkVersion
=
29
compileSdkVersion
=
29
lifecycleVersion
=
'2.2.0-rc03'
lifecycleVersion
=
'2.2.0-rc03'
junitVersion
=
'4.1
2
'
junitVersion
=
'4.1
3
'
androidTestVersion
=
'1.2.0'
androidTestVersion
=
'1.2.0'
androidEspressoVersion
=
'3.2.0'
androidEspressoVersion
=
'3.2.0'
versionCode
=
4080750
versionCode
=
4080750
...
...
core/build.gradle
View file @
31cb7a0d
...
@@ -49,7 +49,7 @@ androidExtensions {
...
@@ -49,7 +49,7 @@ androidExtensions {
}
}
def
coroutinesVersion
=
'1.3.3'
def
coroutinesVersion
=
'1.3.3'
def
roomVersion
=
'2.2.
2
'
def
roomVersion
=
'2.2.
3
'
def
workVersion
=
'2.2.0'
def
workVersion
=
'2.2.0'
dependencies
{
dependencies
{
api
project
(
':plugin'
)
api
project
(
':plugin'
)
...
@@ -64,7 +64,7 @@ dependencies {
...
@@ -64,7 +64,7 @@ dependencies {
api
'com.crashlytics.sdk.android:crashlytics:2.10.1'
api
'com.crashlytics.sdk.android:crashlytics:2.10.1'
api
'com.google.code.gson:gson:2.8.6'
api
'com.google.code.gson:gson:2.8.6'
api
'com.google.firebase:firebase-analytics:17.2.1'
api
'com.google.firebase:firebase-analytics:17.2.1'
api
'com.google.firebase:firebase-config:19.
0.4
'
api
'com.google.firebase:firebase-config:19.
1.0
'
api
'dnsjava:dnsjava:2.1.9'
api
'dnsjava:dnsjava:2.1.9'
api
"org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
api
"org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
api
"org.jetbrains.kotlinx:kotlinx-coroutines-play-services:$coroutinesVersion"
api
"org.jetbrains.kotlinx:kotlinx-coroutines-play-services:$coroutinesVersion"
...
...
detekt.yml
View file @
31cb7a0d
# https://github.com/arturbosch/detekt/blob/1.
1
.1/detekt-cli/src/main/resources/default-detekt-config.yml
# https://github.com/arturbosch/detekt/blob/1.
3
.1/detekt-cli/src/main/resources/default-detekt-config.yml
comments
:
comments
:
active
:
false
active
:
false
...
@@ -14,9 +14,11 @@ complexity:
...
@@ -14,9 +14,11 @@ complexity:
includeStaticDeclarations
:
false
includeStaticDeclarations
:
false
ComplexMethod
:
ComplexMethod
:
active
:
true
active
:
true
threshold
:
1
0
threshold
:
1
5
ignoreSingleWhenExpression
:
false
ignoreSingleWhenExpression
:
false
ignoreSimpleWhenEntries
:
false
ignoreSimpleWhenEntries
:
false
ignoreNestingFunctions
:
false
nestingFunctions
:
run,let,apply,with,also,use,forEach,isNotNull,ifNull
LabeledExpression
:
LabeledExpression
:
active
:
false
active
:
false
ignoredLabels
:
"
"
ignoredLabels
:
"
"
...
@@ -245,6 +247,7 @@ naming:
...
@@ -245,6 +247,7 @@ naming:
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
EnumNaming
:
EnumNaming
:
active
:
true
active
:
true
excludes
:
"
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt"
excludes
:
"
**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt"
...
@@ -337,6 +340,8 @@ potential-bugs:
...
@@ -337,6 +340,8 @@ potential-bugs:
active
:
true
active
:
true
HasPlatformType
:
HasPlatformType
:
active
:
true
active
:
true
ImplicitDefaultLocale
:
active
:
true
InvalidRange
:
InvalidRange
:
active
:
true
active
:
true
IteratorHasNextCallsNextMethod
:
IteratorHasNextCallsNextMethod
:
...
@@ -345,6 +350,8 @@ potential-bugs:
...
@@ -345,6 +350,8 @@ potential-bugs:
active
:
true
active
:
true
LateinitUsage
:
LateinitUsage
:
active
:
false
active
:
false
MapGetWithNotNullAssertionOperator
:
active
:
true
MissingWhenCase
:
MissingWhenCase
:
active
:
false
active
:
false
RedundantElseInWhen
:
RedundantElseInWhen
:
...
@@ -354,7 +361,7 @@ potential-bugs:
...
@@ -354,7 +361,7 @@ potential-bugs:
UnreachableCode
:
UnreachableCode
:
active
:
true
active
:
true
UnsafeCallOnNullableType
:
UnsafeCallOnNullableType
:
active
:
fals
e
active
:
tru
e
UnsafeCast
:
UnsafeCast
:
active
:
false
active
:
false
UselessPostfixExpression
:
UselessPostfixExpression
:
...
@@ -387,6 +394,12 @@ style:
...
@@ -387,6 +394,12 @@ style:
active
:
true
active
:
true
imports
:
'
'
imports
:
'
'
forbiddenPatterns
:
"
"
forbiddenPatterns
:
"
"
ForbiddenMethodCall
:
active
:
true
methods
:
'
'
ForbiddenPublicDataClass
:
active
:
true
ignorePackages
:
'
*.internal,*.internal.*'
ForbiddenVoid
:
ForbiddenVoid
:
active
:
true
active
:
true
ignoreOverridden
:
true
ignoreOverridden
:
true
...
@@ -453,6 +466,8 @@ style:
...
@@ -453,6 +466,8 @@ style:
UnnecessaryAbstractClass
:
UnnecessaryAbstractClass
:
active
:
true
active
:
true
excludeAnnotatedClasses
:
"
dagger.Module"
excludeAnnotatedClasses
:
"
dagger.Module"
UnnecessaryAnnotationUseSiteTarget
:
active
:
true
UnnecessaryApply
:
UnnecessaryApply
:
active
:
true
active
:
true
UnnecessaryInheritance
:
UnnecessaryInheritance
:
...
...
mobile/build.gradle
View file @
31cb7a0d
...
@@ -60,8 +60,8 @@ androidExtensions {
...
@@ -60,8 +60,8 @@ androidExtensions {
dependencies
{
dependencies
{
implementation
project
(
':core'
)
implementation
project
(
':core'
)
implementation
'androidx.browser:browser:1.2.0
-rc01
'
implementation
'androidx.browser:browser:1.2.0'
implementation
'androidx.constraintlayout:constraintlayout:2.0.0-beta
3
'
implementation
'androidx.constraintlayout:constraintlayout:2.0.0-beta
4
'
implementation
"androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion"
implementation
"androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion"
implementation
'com.google.android.gms:play-services-vision:19.0.0'
implementation
'com.google.android.gms:play-services-vision:19.0.0'
implementation
'com.google.firebase:firebase-ads:18.3.0'
implementation
'com.google.firebase:firebase-ads:18.3.0'
...
...
plugin/CHANGES.md
View file @
31cb7a0d
*
1.3.2:
*
1.3.2:
*
Fix first key-value pair disappearing with null value. (#2391)
*
Fix first key-value pair disappearing with null value. (#2391)
*
Dependency updates:
-
`com.google.android.material:material:1.1.0-rc01`
;
-
`org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61`
.
*
1.3.1:
*
1.3.1:
*
New theme resource
`Theme.Shadowsocks.Immersive`
for better Android Q-esque translucent navigation bars.
*
New theme resource
`Theme.Shadowsocks.Immersive`
for better Android Q-esque translucent navigation bars.
This is an opt-in feature.
This is an opt-in feature.
...
...
plugin/build.gradle
View file @
31cb7a0d
...
@@ -57,7 +57,7 @@ mavenPublish {
...
@@ -57,7 +57,7 @@ mavenPublish {
dependencies
{
dependencies
{
api
'androidx.core:core-ktx:1.1.0'
api
'androidx.core:core-ktx:1.1.0'
api
'androidx.drawerlayout:drawerlayout:1.1.0-alpha03'
// https://android-developers.googleblog.com/2019/07/android-q-beta-5-update.html
api
'androidx.drawerlayout:drawerlayout:1.1.0-alpha03'
// https://android-developers.googleblog.com/2019/07/android-q-beta-5-update.html
api
'com.google.android.material:material:1.1.0-
beta02
'
api
'com.google.android.material:material:1.1.0-
rc01
'
api
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
api
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
testImplementation
"junit:junit:$junitVersion"
testImplementation
"junit:junit:$junitVersion"
androidTestImplementation
"androidx.test:runner:$androidTestVersion"
androidTestImplementation
"androidx.test:runner:$androidTestVersion"
...
...
tv/build.gradle
View file @
31cb7a0d
...
@@ -56,7 +56,7 @@ android {
...
@@ -56,7 +56,7 @@ android {
dependencies
{
dependencies
{
implementation
project
(
':core'
)
implementation
project
(
':core'
)
implementation
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
implementation
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
implementation
"androidx.leanback:leanback-preference:1.1.0-alpha02"
implementation
'androidx.leanback:leanback-preference:1.1.0-alpha03'
}
}
apply
plugin:
'com.google.gms.google-services'
apply
plugin:
'com.google.gms.google-services'
...
...
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