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
d78e6b6e
Unverified
Commit
d78e6b6e
authored
Feb 07, 2021
by
Goooler
Committed by
GitHub
Feb 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dependencies (#2672)
* Update dependencies * Refine code style * Bump gradle to 6.8.2
parent
7112c49d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
17 deletions
+17
-17
build.gradle.kts
build.gradle.kts
+4
-4
buildSrc/build.gradle.kts
buildSrc/build.gradle.kts
+2
-2
core/build.gradle.kts
core/build.gradle.kts
+5
-5
gradle/wrapper/gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
mobile/build.gradle.kts
mobile/build.gradle.kts
+3
-3
plugin/build.gradle.kts
plugin/build.gradle.kts
+1
-1
repositories.gradle.kts
repositories.gradle.kts
+1
-1
No files found.
build.gradle.kts
View file @
d78e6b6e
...
@@ -10,16 +10,16 @@ buildscript {
...
@@ -10,16 +10,16 @@ buildscript {
repositories
{
repositories
{
google
()
google
()
jcenter
()
jcenter
()
maven
(
"https://plugins.gradle.org/m2/"
)
gradlePluginPortal
(
)
}
}
dependencies
{
dependencies
{
val
kotlinVersion
=
rootProject
.
extra
.
get
(
"kotlinVersion"
)
.
toString
()
val
kotlinVersion
=
rootProject
.
extra
[
"kotlinVersion"
]
.
toString
()
classpath
(
rootProject
.
extra
.
get
(
"androidPlugin"
)
.
toString
())
classpath
(
rootProject
.
extra
[
"androidPlugin"
]
.
toString
())
classpath
(
kotlin
(
"gradle-plugin"
,
kotlinVersion
))
classpath
(
kotlin
(
"gradle-plugin"
,
kotlinVersion
))
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.4.1"
)
classpath
(
"com.google.firebase:firebase-crashlytics-gradle:2.4.1"
)
classpath
(
"com.google.gms:google-services:4.3.
4
"
)
classpath
(
"com.google.gms:google-services:4.3.
5
"
)
classpath
(
"com.vanniktech:gradle-maven-publish-plugin:0.13.0"
)
classpath
(
"com.vanniktech:gradle-maven-publish-plugin:0.13.0"
)
classpath
(
"gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3"
)
classpath
(
"gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3"
)
classpath
(
"org.jetbrains.dokka:dokka-gradle-plugin:1.4.20"
)
classpath
(
"org.jetbrains.dokka:dokka-gradle-plugin:1.4.20"
)
...
...
buildSrc/build.gradle.kts
View file @
d78e6b6e
...
@@ -5,6 +5,6 @@ plugins {
...
@@ -5,6 +5,6 @@ plugins {
apply
(
from
=
"../repositories.gradle.kts"
)
apply
(
from
=
"../repositories.gradle.kts"
)
dependencies
{
dependencies
{
implementation
(
rootProject
.
extra
.
get
(
"androidPlugin"
)
.
toString
())
implementation
(
rootProject
.
extra
[
"androidPlugin"
]
.
toString
())
implementation
(
kotlin
(
"gradle-plugin"
,
rootProject
.
extra
.
get
(
"kotlinVersion"
)
.
toString
()))
implementation
(
kotlin
(
"gradle-plugin"
,
rootProject
.
extra
[
"kotlinVersion"
]
.
toString
()))
}
}
core/build.gradle.kts
View file @
d78e6b6e
...
@@ -63,14 +63,14 @@ tasks.clean.dependsOn("cargoClean")
...
@@ -63,14 +63,14 @@ tasks.clean.dependsOn("cargoClean")
dependencies
{
dependencies
{
val
coroutinesVersion
=
"1.4.2"
val
coroutinesVersion
=
"1.4.2"
val
roomVersion
=
"2.2.
5
"
val
roomVersion
=
"2.2.
6
"
val
workVersion
=
"2.5.0
-rc01
"
val
workVersion
=
"2.5.0"
api
(
project
(
":plugin"
))
api
(
project
(
":plugin"
))
api
(
"androidx.appcompat:appcompat:1.2.0"
)
api
(
"androidx.appcompat:appcompat:1.2.0"
)
api
(
"androidx.core:core-ktx:1.5.0-beta01"
)
api
(
"androidx.core:core-ktx:1.5.0-beta01"
)
api
(
"androidx.fragment:fragment-ktx:1.3.0-rc0
1
"
)
api
(
"androidx.fragment:fragment-ktx:1.3.0-rc0
2
"
)
api
(
"androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"
)
api
(
"androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"
)
api
(
"androidx.lifecycle:lifecycle-livedata-core-ktx:$lifecycleVersion"
)
api
(
"androidx.lifecycle:lifecycle-livedata-core-ktx:$lifecycleVersion"
)
api
(
"androidx.preference:preference:1.1.1"
)
api
(
"androidx.preference:preference:1.1.1"
)
...
@@ -79,8 +79,8 @@ dependencies {
...
@@ -79,8 +79,8 @@ dependencies {
api
(
"androidx.work:work-runtime-ktx:$workVersion"
)
api
(
"androidx.work:work-runtime-ktx:$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:18.0.
1
"
)
api
(
"com.google.firebase:firebase-analytics-ktx:18.0.
2
"
)
api
(
"com.google.firebase:firebase-crashlytics:17.3.
0
"
)
api
(
"com.google.firebase:firebase-crashlytics:17.3.
1
"
)
api
(
"com.jakewharton.timber:timber:4.7.1"
)
api
(
"com.jakewharton.timber:timber:4.7.1"
)
api
(
"dnsjava:dnsjava:3.3.1"
)
api
(
"dnsjava:dnsjava:3.3.1"
)
api
(
"org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
)
api
(
"org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
)
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
d78e6b6e
distributionBase
=
GRADLE_USER_HOME
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-6.8.
1
-bin.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-6.8.
2
-bin.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
zipStorePath
=
wrapper/dists
mobile/build.gradle.kts
View file @
d78e6b6e
...
@@ -12,15 +12,15 @@ setupApp()
...
@@ -12,15 +12,15 @@ setupApp()
android
.
defaultConfig
.
applicationId
=
"com.github.shadowsocks"
android
.
defaultConfig
.
applicationId
=
"com.github.shadowsocks"
dependencies
{
dependencies
{
val
cameraxVersion
=
"1.0.0-rc0
1
"
val
cameraxVersion
=
"1.0.0-rc0
2
"
implementation
(
"androidx.browser:browser:1.3.0"
)
implementation
(
"androidx.browser:browser:1.3.0"
)
implementation
(
"androidx.camera:camera-camera2:$cameraxVersion"
)
implementation
(
"androidx.camera:camera-camera2:$cameraxVersion"
)
implementation
(
"androidx.camera:camera-lifecycle:$cameraxVersion"
)
implementation
(
"androidx.camera:camera-lifecycle:$cameraxVersion"
)
implementation
(
"androidx.camera:camera-view:1.0.0-alpha2
0
"
)
implementation
(
"androidx.camera:camera-view:1.0.0-alpha2
1
"
)
implementation
(
"androidx.constraintlayout:constraintlayout:2.0.4"
)
implementation
(
"androidx.constraintlayout:constraintlayout:2.0.4"
)
implementation
(
"androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion"
)
implementation
(
"androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion"
)
implementation
(
"com.google.mlkit:barcode-scanning:16.1.
0
"
)
implementation
(
"com.google.mlkit:barcode-scanning:16.1.
1
"
)
implementation
(
"com.google.zxing:core:3.4.1"
)
implementation
(
"com.google.zxing:core:3.4.1"
)
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"
)
...
...
plugin/build.gradle.kts
View file @
d78e6b6e
...
@@ -26,5 +26,5 @@ dependencies {
...
@@ -26,5 +26,5 @@ dependencies {
api
(
"androidx.core:core-ktx:1.3.2"
)
api
(
"androidx.core:core-ktx:1.3.2"
)
// https://android-developers.googleblog.com/2019/07/android-q-beta-5-update.html
// https://android-developers.googleblog.com/2019/07/android-q-beta-5-update.html
api
(
"androidx.drawerlayout:drawerlayout:1.1.1"
)
api
(
"androidx.drawerlayout:drawerlayout:1.1.1"
)
api
(
"com.google.android.material:material:1.
2.1
"
)
api
(
"com.google.android.material:material:1.
3.0
"
)
}
}
repositories.gradle.kts
View file @
d78e6b6e
rootProject
.
extra
.
apply
{
rootProject
.
extra
.
apply
{
set
(
"androidPlugin"
,
"com.android.tools.build:gradle:4.1.2"
)
set
(
"androidPlugin"
,
"com.android.tools.build:gradle:4.1.2"
)
set
(
"kotlinVersion"
,
"1.4.
21
"
)
set
(
"kotlinVersion"
,
"1.4.
30
"
)
}
}
repositories
{
repositories
{
...
...
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