Skip to content

Commit

Permalink
Fix #750 Bump compileSdkVersion and targetSdkVersion to 33 (#764)
Browse files Browse the repository at this point in the history
* Fix #750 Bump compileSdkVersion and targetSdkVersion to 33

* Update SDK Build Tools
  • Loading branch information
FluorescentHallucinogen authored Feb 20, 2023
1 parent 0214f23 commit c44bbed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/lib/androidSdk/AndroidSdkTools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {Log, ConsoleLog} from '../../lib/Log';
import {Result} from '../../lib/Result';
import {ValidatePathError} from '../errors/ValidatePathError';

export const BUILD_TOOLS_VERSION = '30.0.3';
export const BUILD_TOOLS_VERSION = '33.0.2';

/**
* Wraps functionality of the Android SDK Tools and allows them to be invoked programatically.
Expand Down
4 changes: 2 additions & 2 deletions packages/core/template_project/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ def twaManifest = [
]

android {
compileSdkVersion 31
compileSdkVersion 33
defaultConfig {
applicationId "<%= packageId %>"
minSdkVersion <%= minSdkVersion %>
targetSdkVersion 31
targetSdkVersion 33
versionCode <%= appVersionCode %>
versionName "<%= appVersionName %>"

Expand Down

0 comments on commit c44bbed

Please sign in to comment.