summaryrefslogtreecommitdiffhomepage
path: root/build.gradle
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2020-02-25 08:29:53 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2020-02-25 08:29:53 +0530
commit622cbf5cd2105b7d5b2d225125277bff34e0b6b0 (patch)
tree0833989e502090e019f39a4785324ab117d68650 /build.gradle
parent9a43e74b358836223988f2f4d316a9a8da0e4849 (diff)
Upgrade AGP and Gradle
If anybody has a problem with missing or mismatched NDK, run this command to install the right version $ANDROID_SDK_ROOT/tools/bin/sdkmanager 'ndk;20.0.5594570' Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 950065d6..ff7fed75 100644
--- a/build.gradle
+++ b/build.gradle
@@ -7,7 +7,7 @@ allprojects {
buildscript {
dependencies {
- classpath 'com.android.tools.build:gradle:3.5.3'
+ classpath 'com.android.tools.build:gradle:3.6.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61'
}
repositories {
@@ -22,7 +22,7 @@ task clean(type: Delete) {
tasks {
wrapper {
- gradleVersion = "6.1.1"
+ gradleVersion = "6.2.1"
distributionType = Wrapper.DistributionType.ALL
}
}