Dependency upgrades

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya
2019-07-16 18:33:13 +05:30
parent 27377c284f
commit 0889cbe7d2
2 changed files with 10 additions and 11 deletions

View File

@@ -8,7 +8,6 @@ plugins {
id("eclipse") id("eclipse")
} }
val buildTypeRelease = "release"
android { android {
compileSdkVersion(28) compileSdkVersion(28)
@@ -57,14 +56,14 @@ android {
project.hasProperty("mKeyAlias") && project.hasProperty("mKeyAlias") &&
project.hasProperty("mKeyPassword")) { project.hasProperty("mKeyPassword")) {
signingConfigs { signingConfigs {
getByName(buildTypeRelease) { getByName("release") {
storeFile = file(project.properties["mStoreFile"] as String) storeFile = file(project.properties["mStoreFile"] as String)
storePassword = project.properties["mStorePassword"] as String storePassword = project.properties["mStorePassword"] as String
keyAlias = project.properties["mKeyAlias"] as String keyAlias = project.properties["mKeyAlias"] as String
keyPassword = project.properties["mKeyPassword"] as String keyPassword = project.properties["mKeyPassword"] as String
} }
} }
buildTypes.getByName(buildTypeRelease).signingConfig = signingConfigs.getByName(buildTypeRelease) buildTypes.getByName("release").signingConfig = signingConfigs.getByName("release")
} }
} }
@@ -74,7 +73,7 @@ dependencies {
implementation("androidx.constraintlayout:constraintlayout:2.0.0-beta2") implementation("androidx.constraintlayout:constraintlayout:2.0.0-beta2")
implementation("androidx.preference:preference:1.1.0-rc01") implementation("androidx.preference:preference:1.1.0-rc01")
implementation("androidx.recyclerview:recyclerview:1.1.0-beta01") implementation("androidx.recyclerview:recyclerview:1.1.0-beta01")
implementation("com.google.android.material:material:1.1.0-alpha07") implementation("com.google.android.material:material:1.1.0-alpha08")
implementation("androidx.annotation:annotation:1.1.0") implementation("androidx.annotation:annotation:1.1.0")
implementation("org.sufficientlysecure:openpgp-api:12.0") implementation("org.sufficientlysecure:openpgp-api:12.0")
implementation("org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r") { implementation("org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r") {
@@ -89,10 +88,10 @@ dependencies {
// Testing-only dependencies // Testing-only dependencies
androidTestImplementation("junit:junit:4.13-beta-3") androidTestImplementation("junit:junit:4.13-beta-3")
androidTestImplementation("org.mockito:mockito-core:2.28.2") androidTestImplementation("org.mockito:mockito-core:3.0.0")
androidTestImplementation("androidx.test:runner:1.3.0-alpha01") androidTestImplementation("androidx.test:runner:1.3.0-alpha02")
androidTestImplementation("androidx.test:rules:1.3.0-alpha01") androidTestImplementation("androidx.test:rules:1.3.0-alpha02")
androidTestImplementation("androidx.test.ext:junit:1.1.2-alpha01") androidTestImplementation("androidx.test.ext:junit:1.1.2-alpha02")
androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0-alpha01") androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0-alpha02")
androidTestImplementation("androidx.test.espresso:espresso-intents:3.3.0-alpha01") androidTestImplementation("androidx.test.espresso:espresso-intents:3.3.0-alpha02")
} }

View File

@@ -7,7 +7,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath("com.android.tools.build:gradle:3.4.1") classpath("com.android.tools.build:gradle:3.4.2")
classpath(kotlin("gradle-plugin", "1.3.41")) classpath(kotlin("gradle-plugin", "1.3.41"))
} }
} }