From 0b4ade8c3ca9061ea1792d5ee214521ac9e59254 Mon Sep 17 00:00:00 2001 From: "jeffrey n. carre" Date: Tue, 17 Mar 2020 06:34:32 -0400 Subject: [PATCH] docs(update guide): fix targetSdkVersion instructions (#2585) --- site/docs-md/android/updating.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/docs-md/android/updating.md b/site/docs-md/android/updating.md index ae4b3d353e..e70b47cb95 100644 --- a/site/docs-md/android/updating.md +++ b/site/docs-md/android/updating.md @@ -99,7 +99,7 @@ Recommended changes: Since we have common variables, it's recommended to update your project to use them. In the `android/app/build.gradle` file, change: - `compileSdkVersion 28` to `compileSdkVersion rootProject.ext.compileSdkVersion` - `minSdkVersion 21` to `minSdkVersion rootProject.ext.minSdkVersion` - - `targetSdkVersion 28` to `rootProject.ext.targetSdkVersion` + - `targetSdkVersion 28` to `targetSdkVersion rootProject.ext.targetSdkVersion` - `implementation 'androidx.appcompat:appcompat:1.0.0'` to `implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"` - `testImplementation 'junit:junit:4.12'` to `testImplementation "junit:junit:$junitVersion"` - `androidTestImplementation 'androidx.test.ext:junit:1.1.1'` to `androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"` @@ -121,4 +121,4 @@ Recommended changes: In `android/build.gradle` file, change `classpath 'com.google.gms:google-services:4.2.0'` to `classpath 'com.google.gms:google-services:4.3.3'`. -For API changes check the [Release Notes](https://github.com/ionic-team/capacitor/releases/tag/2.0.0-beta.0) \ No newline at end of file +For API changes check the [Release Notes](https://github.com/ionic-team/capacitor/releases/tag/2.0.0-beta.0)