aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2020-02-29 23:35:07 -0800
committerAllan Wang <me@allanwang.ca>2020-02-29 23:35:07 -0800
commit118635f6630487e93a519e9a63151d95b31ee8b1 (patch)
tree354c8b0a52866ad62e1b20860517bc5287401cb4 /app/build.gradle
parent34e5eebbc2dfdd9e71ba200c044f3637ba89aaa2 (diff)
parente732e30d97babca49ba5f7d97aea1620ba14024b (diff)
downloadfrost-118635f6630487e93a519e9a63151d95b31ee8b1.tar.gz
frost-118635f6630487e93a519e9a63151d95b31ee8b1.tar.bz2
frost-118635f6630487e93a519e9a63151d95b31ee8b1.zip
Merge remote-tracking branch 'origin/dev' into save-image
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle16
1 files changed, 8 insertions, 8 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 63ada71b..ac93a214 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -10,20 +10,20 @@ apply plugin: 'com.gladed.androidgitversion'
buildscript {
repositories {
jcenter()
+ maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
- classpath "com.moowork.gradle:gradle-node-plugin:${Versions.nodeGradle}"
+ classpath "com.github.node-gradle:gradle-node-plugin:${Versions.nodeGradle}"
}
}
-apply plugin: com.moowork.gradle.node.NodePlugin
+apply plugin: 'com.github.node-gradle.node'
apply from: '../spotless.gradle'
group = APP_GROUP
android {
compileSdkVersion Versions.targetSdk
- buildToolsVersion kau.Versions.buildTools
androidGitVersion {
codeFormat = 'MMNNPPXX'
@@ -75,8 +75,8 @@ android {
textOutput 'stdout'
}
- viewBinding {
- enabled = true
+ buildFeatures {
+ viewBinding = true
}
def testKeystoreFile = file('../files/test.keystore')
@@ -199,8 +199,8 @@ android {
}
node {
- version = '12.4.0'
- npmVersion = '6.9.0'
+ version = '13.8.0'
+ npmVersion = '6.13.7'
download = true
nodeModulesDir = file("${project.projectDir}/src/web")
}
@@ -283,7 +283,7 @@ dependencies {
//noinspection GradleDependency
kapt kau.Dependencies.glideKapt
- debugImplementation "com.squareup.leakcanary:leakcanary-android:${Versions.leakCanary}"
+ debugImplementation kau.Dependencies.leakCanary
//Icons
implementation kau.Dependencies.iconicsMaterial