Skip to content

Commit 78943ca

Browse files
Use root project build tools version if present (#691)
Co-authored-by: sgong-pdftron <sgong@apryse.com>
1 parent 908c885 commit 78943ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ apply plugin: 'kotlin-kapt'
2828

2929
android {
3030
compileSdkVersion 33
31-
buildToolsVersion "30.0.2"
31+
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : "30.0.2"
3232

3333
defaultConfig {
3434
minSdkVersion 21

0 commit comments

Comments
 (0)