From 7f7370fb677a79a611da94f8d467fc7954e19837 Mon Sep 17 00:00:00 2001 From: Sebastian Roth Date: Mon, 7 Oct 2019 22:25:51 +0100 Subject: [PATCH] Typos --- Resolving-common-build-failures.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Resolving-common-build-failures.md b/Resolving-common-build-failures.md index 00100a2..0b9191e 100644 --- a/Resolving-common-build-failures.md +++ b/Resolving-common-build-failures.md @@ -7,7 +7,7 @@ This page collects such errors and the standard procedure to work around them. ## Android -And builds are handled by Gradle; which is configured using .gradle files. +Android builds are handled by the Gradle tool, which is configured using .gradle files. Android Apps themselves are packaged, compiled & optimized by a variety of tools - all being orchestrated by the Android Gradle Plugin (AGP). Usually, Android Studio and AGP are aligned in their versions. Android Studio also contains a few assistants to smoothen the upgrade process for existing projects. @@ -29,8 +29,9 @@ To fix it, open `android/gradle/wrapper/gradle-wrapper.properties` (`example/and With the steps above, only AGP and the wrapper got upgraded. The Kotlin compiler infrastructure is a secondary dependency which is also dependent on certain AGP/Gradle versions. To resolve it: - - Scan your build.gradle files for a placeholder like `ext.kotlin_version = '1.2.71'` and replace it with the latest Kotlin version (or the version named in the error message). - - New Kotlin versions introduce language & syntax optimizations; it is therefore recommended to use Android Studio again and open the native part of the App (see above) and let it run a full compilation, including a clean operation. Android Studio will report build failures and suggestions to optimize your code + - Scan your build.gradle files for a placeholder like `ext.kotlin_version = '1.2.71'` and replace it with the latest Kotlin version (or the version named in the error message). + - Android Studio can recommend the latest version, if you open the build.gradle file in it + - New Kotlin versions introduce language & syntax optimizations; it is therefore recommended to use Android Studio again and open the native part of the App (see above) and let it run a full compilation, including a clean operation. Android Studio will report build failures and suggestions to optimize your code. ### Gradle task assembleDebug failed with exit code 1