Commit 2991d0ab authored by Mygod's avatar Mygod

Update beta/rc dependencies

They say that beta is ready for production.
parent ac57e915
...@@ -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-beta01'
androidEspressoVersion = '3.1.1' androidEspressoVersion = '3.2.0-beta01'
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'
......
...@@ -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'
} }
...@@ -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()
......
...@@ -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()
} }
......
...@@ -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'
......
...@@ -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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment