android: Use build tools and SDK 34

The gradle config for the app is already compiling with the 34 SDK
so lets bump it for the bridge build too
This commit is contained in:
Colin Edwards
2024-01-17 23:55:01 -06:00
parent 5a2267bdb4
commit 04ba7eb987
2 changed files with 3 additions and 3 deletions

View File

@@ -5,8 +5,8 @@ android_ndk = get_option('android_ndk')
android_sdk = get_option('android_sdk')
android_abi = get_option('android_abi')
android_sdk_build_tools_version = '29.0.3'
android_sdk_platform = 'android-29'
android_sdk_build_tools_version = '34.0.0'
android_sdk_platform = 'android-34'
android_build_tools_dir = join_paths(android_sdk, 'build-tools', android_sdk_build_tools_version)
android_sdk_platform_dir = join_paths(android_sdk, 'platforms', android_sdk_platform)