diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-07-16 18:33:13 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-07-16 18:33:13 +0530 |
commit | 0889cbe7d2800712992e8a21d1922ccb56bcbd55 (patch) | |
tree | a4c9a298035bee848e7b8239a1f68f260b35ab10 | |
parent | 27377c284fc8f9163f90352412dcd6e2c3f62500 (diff) |
Dependency upgrades
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
-rw-r--r-- | app/build.gradle.kts | 19 | ||||
-rw-r--r-- | build.gradle.kts | 2 |
2 files changed, 10 insertions, 11 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 60131c3b..a19c5c61 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -8,7 +8,6 @@ plugins { id("eclipse") } -val buildTypeRelease = "release" android { compileSdkVersion(28) @@ -57,14 +56,14 @@ android { project.hasProperty("mKeyAlias") && project.hasProperty("mKeyPassword")) { signingConfigs { - getByName(buildTypeRelease) { + getByName("release") { storeFile = file(project.properties["mStoreFile"] as String) storePassword = project.properties["mStorePassword"] as String keyAlias = project.properties["mKeyAlias"] 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.preference:preference:1.1.0-rc01") 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("org.sufficientlysecure:openpgp-api:12.0") implementation("org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r") { @@ -89,10 +88,10 @@ dependencies { // Testing-only dependencies androidTestImplementation("junit:junit:4.13-beta-3") - androidTestImplementation("org.mockito:mockito-core:2.28.2") - androidTestImplementation("androidx.test:runner:1.3.0-alpha01") - androidTestImplementation("androidx.test:rules:1.3.0-alpha01") - androidTestImplementation("androidx.test.ext:junit:1.1.2-alpha01") - androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0-alpha01") - androidTestImplementation("androidx.test.espresso:espresso-intents:3.3.0-alpha01") + androidTestImplementation("org.mockito:mockito-core:3.0.0") + androidTestImplementation("androidx.test:runner:1.3.0-alpha02") + androidTestImplementation("androidx.test:rules:1.3.0-alpha02") + androidTestImplementation("androidx.test.ext:junit:1.1.2-alpha02") + androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0-alpha02") + androidTestImplementation("androidx.test.espresso:espresso-intents:3.3.0-alpha02") } diff --git a/build.gradle.kts b/build.gradle.kts index c0c8f99e..234beed3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ buildscript { mavenCentral() } 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")) } } |