diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-02-25 08:29:53 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-02-25 08:29:53 +0530 |
commit | 8078347880c59d66df89a367e2d696f03ab7e76c (patch) | |
tree | 0833989e502090e019f39a4785324ab117d68650 /build.gradle | |
parent | dd8a802bece8417508f5df3e8aa47ac7c77f4d60 (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.gradle | 4 |
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 } } |