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
2991d0ab
Commit
2991d0ab
authored
May 30, 2019
by
Mygod
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update beta/rc dependencies
They say that beta is ready for production.
parent
ac57e915
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
8 deletions
+11
-8
build.gradle
build.gradle
+3
-3
core/.gitignore
core/.gitignore
+1
-0
core/build.gradle
core/build.gradle
+3
-3
core/src/main/java/com/github/shadowsocks/database/PrivateDatabase.kt
...n/java/com/github/shadowsocks/database/PrivateDatabase.kt
+1
-0
core/src/main/java/com/github/shadowsocks/database/PublicDatabase.kt
...in/java/com/github/shadowsocks/database/PublicDatabase.kt
+1
-0
mobile/build.gradle
mobile/build.gradle
+1
-1
plugin/build.gradle
plugin/build.gradle
+1
-1
No files found.
build.gradle
View file @
2991d0ab
...
@@ -10,8 +10,8 @@ buildscript {
...
@@ -10,8 +10,8 @@ buildscript {
sdkVersion
=
28
sdkVersion
=
28
compileSdkVersion
=
'android-Q'
compileSdkVersion
=
'android-Q'
junitVersion
=
'4.12'
junitVersion
=
'4.12'
androidTestVersion
=
'1.
1.
1'
androidTestVersion
=
'1.
2.0-beta0
1'
androidEspressoVersion
=
'3.
1.
1'
androidEspressoVersion
=
'3.
2.0-beta0
1'
versionCode
=
4080050
versionCode
=
4080050
versionName
=
'4.8.0-nightly'
versionName
=
'4.8.0-nightly'
resConfigs
=
[
'es'
,
'fa'
,
'fr'
,
'ja'
,
'ko'
,
'ru'
,
'tr'
,
'zh-rCN'
,
'zh-rTW'
]
resConfigs
=
[
'es'
,
'fa'
,
'fr'
,
'ja'
,
'ko'
,
'ru'
,
'tr'
,
'zh-rCN'
,
'zh-rTW'
]
...
@@ -26,7 +26,7 @@ buildscript {
...
@@ -26,7 +26,7 @@ buildscript {
}
}
dependencies
{
dependencies
{
classpath
'com.android.tools.build:gradle:3.
4.1
'
classpath
'com.android.tools.build:gradle:3.
5.0-beta03
'
classpath
'com.github.ben-manes:gradle-versions-plugin:0.21.0'
classpath
'com.github.ben-manes:gradle-versions-plugin:0.21.0'
classpath
'com.google.gms:google-services:4.2.0'
classpath
'com.google.gms:google-services:4.2.0'
classpath
'com.vanniktech:gradle-maven-publish-plugin:0.8.0'
classpath
'com.vanniktech:gradle-maven-publish-plugin:0.8.0'
...
...
core/.gitignore
View file @
2991d0ab
/build
/build
/.cxx/
core/build.gradle
View file @
2991d0ab
...
@@ -47,8 +47,8 @@ androidExtensions {
...
@@ -47,8 +47,8 @@ androidExtensions {
experimental
=
true
experimental
=
true
}
}
def
lifecycleVersion
=
'2.
0.0
'
def
lifecycleVersion
=
'2.
1.0-beta01
'
def
roomVersion
=
'2.
0.0
'
def
roomVersion
=
'2.
1.0-rc01
'
dependencies
{
dependencies
{
api
project
(
':plugin'
)
api
project
(
':plugin'
)
api
"androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"
api
"androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"
...
@@ -68,5 +68,5 @@ dependencies {
...
@@ -68,5 +68,5 @@ dependencies {
androidTestImplementation
"androidx.room:room-testing:$roomVersion"
androidTestImplementation
"androidx.room:room-testing:$roomVersion"
androidTestImplementation
"androidx.test:runner:$androidTestVersion"
androidTestImplementation
"androidx.test:runner:$androidTestVersion"
androidTestImplementation
"androidx.test.espresso:espresso-core:$androidEspressoVersion"
androidTestImplementation
"androidx.test.espresso:espresso-core:$androidEspressoVersion"
androidTestImplementation
'androidx.test.ext:junit-ktx:1.1.
0
'
androidTestImplementation
'androidx.test.ext:junit-ktx:1.1.
1-beta01
'
}
}
core/src/main/java/com/github/shadowsocks/database/PrivateDatabase.kt
View file @
2991d0ab
...
@@ -39,6 +39,7 @@ abstract class PrivateDatabase : RoomDatabase() {
...
@@ -39,6 +39,7 @@ abstract class PrivateDatabase : RoomDatabase() {
Migration27
,
Migration27
,
Migration28
Migration28
)
)
.
enableMultiInstanceInvalidation
()
.
fallbackToDestructiveMigration
()
.
fallbackToDestructiveMigration
()
.
allowMainThreadQueries
()
.
allowMainThreadQueries
()
.
build
()
.
build
()
...
...
core/src/main/java/com/github/shadowsocks/database/PublicDatabase.kt
View file @
2991d0ab
...
@@ -36,6 +36,7 @@ abstract class PublicDatabase : RoomDatabase() {
...
@@ -36,6 +36,7 @@ abstract class PublicDatabase : RoomDatabase() {
.
addMigrations
(
.
addMigrations
(
Migration3
Migration3
)
)
.
enableMultiInstanceInvalidation
()
.
fallbackToDestructiveMigration
()
.
fallbackToDestructiveMigration
()
.
build
()
.
build
()
}
}
...
...
mobile/build.gradle
View file @
2991d0ab
...
@@ -60,7 +60,7 @@ androidExtensions {
...
@@ -60,7 +60,7 @@ androidExtensions {
dependencies
{
dependencies
{
implementation
project
(
':core'
)
implementation
project
(
':core'
)
implementation
'androidx.browser:browser:1.0.0'
implementation
'androidx.browser:browser:1.0.0'
implementation
'androidx.constraintlayout:constraintlayout:
1.1.3
'
implementation
'androidx.constraintlayout:constraintlayout:
2.0.0-beta1
'
implementation
'com.google.android.gms:play-services-vision:17.0.2'
implementation
'com.google.android.gms:play-services-vision:17.0.2'
implementation
'com.google.firebase:firebase-ads:17.2.1'
implementation
'com.google.firebase:firebase-ads:17.2.1'
implementation
'com.takisoft.preferencex:preferencex-simplemenu:1.0.0'
implementation
'com.takisoft.preferencex:preferencex-simplemenu:1.0.0'
...
...
plugin/build.gradle
View file @
2991d0ab
...
@@ -53,7 +53,7 @@ mavenPublish {
...
@@ -53,7 +53,7 @@ mavenPublish {
}
}
dependencies
{
dependencies
{
api
'androidx.core:core-ktx:1.
0.2
'
api
'androidx.core:core-ktx:1.
1.0-beta01
'
api
'com.google.android.material:material:1.1.0-alpha06'
api
'com.google.android.material:material:1.1.0-alpha06'
api
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
api
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
testImplementation
"junit:junit:$junitVersion"
testImplementation
"junit:junit:$junitVersion"
...
...
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