File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ def METADATA_JAVA_OUT = "mdg-java-out.txt"
77
77
def pluginsJarLibraries = new LinkedList<String > ()
78
78
def allJarLibraries = new LinkedList<String > ()
79
79
80
- def computeCompileSdkVersion = { -> project. hasProperty(" compileSdk" ) ? compileSdk : NS_DEFAULT_COMPILE_SDK_VERSION as int }
81
- def computeTargetSdkVersion = { -> project. hasProperty(" targetSdk" ) ? targetSdk : NS_DEFAULT_COMPILE_SDK_VERSION as int }
80
+ def computeCompileSdkVersion = { -> project. hasProperty(" compileSdk" ) ? compileSdk as int : NS_DEFAULT_COMPILE_SDK_VERSION as int }
81
+ def computeTargetSdkVersion = { -> project. hasProperty(" targetSdk" ) ? targetSdk as int : NS_DEFAULT_COMPILE_SDK_VERSION as int }
82
82
def computeMinSdkVersion = { -> project. hasProperty(" minSdk" ) ? minSdk : NS_DEFAULT_MIN_SDK_VERSION as int }
83
83
def computeBuildToolsVersion = { ->
84
84
project. hasProperty(" buildToolsVersion" ) ? buildToolsVersion : NS_DEFAULT_BUILD_TOOLS_VERSION as String
You can’t perform that action at this time.
0 commit comments