summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle13
1 files changed, 5 insertions, 8 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 9666a547..50a9a67d 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -4,14 +4,9 @@
*/
plugins {
id 'kotlin-android'
- id 'kotlin-kapt'
id 'kotlin-android-extensions'
}
-repositories {
- maven { url 'https://jitpack.io' }
-}
-
final def keystorePropertiesFile = rootProject.file 'keystore.properties'
final def gitHash = { ->
@@ -37,7 +32,7 @@ android {
}
defaultConfig {
- applicationId 'com.zeapo.pwdstore'
+ applicationId versions.packageName
}
lintOptions {
@@ -88,8 +83,10 @@ dependencies {
implementation deps.androidx.constraint_layout
implementation deps.androidx.documentfile
implementation deps.androidx.preference
- implementation (deps.androidx.recycler_view) {
- force = true
+ constraints {
+ implementation(deps.androidx.recycler_view) {
+ because 'versions above 1.0.0 have an accessibility related bug that causes crashes'
+ }
}
implementation deps.androidx.material
implementation deps.third_party.commons_io