Skip to content

Commit

Permalink
docs(update guide): fix targetSdkVersion instructions (#2585)
Browse files Browse the repository at this point in the history
  • Loading branch information
bleuscyther committed Mar 17, 2020
1 parent 448e7b7 commit 0b4ade8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/docs-md/android/updating.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand All @@ -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)
For API changes check the [Release Notes](https://github.com/ionic-team/capacitor/releases/tag/2.0.0-beta.0)

0 comments on commit 0b4ade8

Please sign in to comment.