2017-12-29 17:12:55 +01:00
|
|
|
android_package = 'org.musicpd'
|
|
|
|
android_package_path = join_paths(android_package.split('.'))
|
|
|
|
|
|
|
|
android_ndk = get_option('android_ndk')
|
|
|
|
android_sdk = get_option('android_sdk')
|
|
|
|
android_abi = get_option('android_abi')
|
|
|
|
|
2024-01-18 06:55:01 +01:00
|
|
|
android_sdk_build_tools_version = '34.0.0'
|
|
|
|
android_sdk_platform = 'android-34'
|
2017-12-29 17:12:55 +01:00
|
|
|
|
|
|
|
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)
|
|
|
|
|
2023-12-18 05:38:10 +01:00
|
|
|
|
|
|
|
android_gradlew = join_paths(meson.current_source_dir(), 'gradlew')
|
2017-12-29 17:12:55 +01:00
|
|
|
|
2023-12-22 16:37:52 +01:00
|
|
|
subdir('include')
|