forked from github/cordova-android
CB-8026 Remove default target value from gradle file
Wasn't being used anyways, and it still referenced android-19 This also switches to using a Properties object rather than a RegEx for parsing project.properties
This commit is contained in:
parent
b69fed18e2
commit
a3457d9408
@ -60,11 +60,11 @@ ext {
|
|||||||
apply from: 'CordovaLib/cordova.gradle'
|
apply from: 'CordovaLib/cordova.gradle'
|
||||||
// The value for android.compileSdkVersion.
|
// The value for android.compileSdkVersion.
|
||||||
if (!project.hasProperty('cdvCompileSdkVersion')) {
|
if (!project.hasProperty('cdvCompileSdkVersion')) {
|
||||||
cdvCompileSdkVersion = privateHelpers.getProjectTarget('android-19')
|
cdvCompileSdkVersion = privateHelpers.getProjectTarget()
|
||||||
}
|
}
|
||||||
// The value for android.buildToolsVersion.
|
// The value for android.buildToolsVersion.
|
||||||
if (!project.hasProperty('cdvBuildToolsVersion')) {
|
if (!project.hasProperty('cdvBuildToolsVersion')) {
|
||||||
cdvBuildToolsVersion = privateHelpers.findLatestInstalledBuildTools('19.1.0')
|
cdvBuildToolsVersion = privateHelpers.findLatestInstalledBuildTools()
|
||||||
}
|
}
|
||||||
// Sets the versionCode to the given value.
|
// Sets the versionCode to the given value.
|
||||||
if (!project.hasProperty('cdvVersionCode')) {
|
if (!project.hasProperty('cdvVersionCode')) {
|
||||||
@ -249,27 +249,20 @@ gradle.taskGraph.whenReady { taskGraph ->
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def ensureValueExists(filePath, props, key) {
|
|
||||||
if (props.get(key) == null) {
|
|
||||||
throw new GradleException(filePath + ': Missing key required "' + key + '"')
|
|
||||||
}
|
|
||||||
return props.get(key)
|
|
||||||
}
|
|
||||||
|
|
||||||
def addSigningProps(propsFilePath, signingConfig) {
|
def addSigningProps(propsFilePath, signingConfig) {
|
||||||
def propsFile = file(propsFilePath)
|
def propsFile = file(propsFilePath)
|
||||||
def props = new Properties()
|
def props = new Properties()
|
||||||
propsFile.withReader { reader ->
|
propsFile.withReader { reader ->
|
||||||
props.load(reader)
|
props.load(reader)
|
||||||
}
|
}
|
||||||
def storeFile = new File(ensureValueExists(propsFilePath, props, 'storeFile'))
|
def storeFile = new File(privateHelpers.ensureValueExists(propsFilePath, props, 'storeFile'))
|
||||||
if (!storeFile.isAbsolute()) {
|
if (!storeFile.isAbsolute()) {
|
||||||
storeFile = RelativePath.parse(true, storeFile.toString()).getFile(propsFile.getParentFile())
|
storeFile = RelativePath.parse(true, storeFile.toString()).getFile(propsFile.getParentFile())
|
||||||
}
|
}
|
||||||
if (!storeFile.exists()) {
|
if (!storeFile.exists()) {
|
||||||
throw new FileNotFoundException('Keystore file does not exist: ' + storeFile.getAbsolutePath())
|
throw new FileNotFoundException('Keystore file does not exist: ' + storeFile.getAbsolutePath())
|
||||||
}
|
}
|
||||||
signingConfig.keyAlias = ensureValueExists(propsFilePath, props, 'keyAlias')
|
signingConfig.keyAlias = privateHelpers.ensureValueExists(propsFilePath, props, 'keyAlias')
|
||||||
signingConfig.keyPassword = props.get('keyPassword', signingConfig.keyPassword)
|
signingConfig.keyPassword = props.get('keyPassword', signingConfig.keyPassword)
|
||||||
signingConfig.storeFile = storeFile
|
signingConfig.storeFile = storeFile
|
||||||
signingConfig.storePassword = props.get('storePassword', signingConfig.storePassword)
|
signingConfig.storePassword = props.get('storePassword', signingConfig.storePassword)
|
||||||
|
@ -20,16 +20,19 @@
|
|||||||
import java.util.regex.Pattern
|
import java.util.regex.Pattern
|
||||||
import groovy.swing.SwingBuilder
|
import groovy.swing.SwingBuilder
|
||||||
|
|
||||||
|
String doEnsureValueExists(filePath, props, key) {
|
||||||
String getProjectTarget(String defaultTarget) {
|
if (props.get(key) == null) {
|
||||||
def manifestFile = file("project.properties")
|
throw new GradleException(filePath + ': Missing key required "' + key + '"')
|
||||||
def pattern = Pattern.compile("target\\s*=\\s*(.*)")
|
|
||||||
def matcher = pattern.matcher(manifestFile.getText())
|
|
||||||
if (matcher.find()) {
|
|
||||||
matcher.group(1)
|
|
||||||
} else {
|
|
||||||
defaultTarget
|
|
||||||
}
|
}
|
||||||
|
return props.get(key)
|
||||||
|
}
|
||||||
|
|
||||||
|
String doGetProjectTarget() {
|
||||||
|
def props = new Properties()
|
||||||
|
file('project.properties').withReader { reader ->
|
||||||
|
props.load(reader)
|
||||||
|
}
|
||||||
|
return doEnsureValueExists('project.properties', props, 'target')
|
||||||
}
|
}
|
||||||
|
|
||||||
String[] getAvailableBuildTools() {
|
String[] getAvailableBuildTools() {
|
||||||
@ -39,7 +42,7 @@ String[] getAvailableBuildTools() {
|
|||||||
.sort { a, b -> compareVersions(b, a) }
|
.sort { a, b -> compareVersions(b, a) }
|
||||||
}
|
}
|
||||||
|
|
||||||
String findLatestInstalledBuildTools(String minBuildToolsVersion) {
|
String doFindLatestInstalledBuildTools(String minBuildToolsVersion) {
|
||||||
def availableBuildToolsVersions
|
def availableBuildToolsVersions
|
||||||
try {
|
try {
|
||||||
availableBuildToolsVersions = getAvailableBuildTools()
|
availableBuildToolsVersions = getAvailableBuildTools()
|
||||||
@ -117,7 +120,7 @@ String getAndroidSdkDir() {
|
|||||||
androidSdkDir
|
androidSdkDir
|
||||||
}
|
}
|
||||||
|
|
||||||
def extractIntFromManifest(name) {
|
def doExtractIntFromManifest(name) {
|
||||||
def manifestFile = file(android.sourceSets.main.manifest.srcFile)
|
def manifestFile = file(android.sourceSets.main.manifest.srcFile)
|
||||||
def pattern = Pattern.compile(name + "=\"(\\d+)\"")
|
def pattern = Pattern.compile(name + "=\"(\\d+)\"")
|
||||||
def matcher = pattern.matcher(manifestFile.getText())
|
def matcher = pattern.matcher(manifestFile.getText())
|
||||||
@ -125,7 +128,7 @@ def extractIntFromManifest(name) {
|
|||||||
return Integer.parseInt(matcher.group(1))
|
return Integer.parseInt(matcher.group(1))
|
||||||
}
|
}
|
||||||
|
|
||||||
def promptForPassword(msg) {
|
def doPromptForPassword(msg) {
|
||||||
if (System.console() == null) {
|
if (System.console() == null) {
|
||||||
def ret = null
|
def ret = null
|
||||||
new SwingBuilder().edt {
|
new SwingBuilder().edt {
|
||||||
@ -153,9 +156,10 @@ def promptForPassword(msg) {
|
|||||||
ext {
|
ext {
|
||||||
// These helpers are shared, but are not guaranteed to be stable / unchanged.
|
// These helpers are shared, but are not guaranteed to be stable / unchanged.
|
||||||
privateHelpers = {}
|
privateHelpers = {}
|
||||||
privateHelpers.getProjectTarget = { defaultValue -> getProjectTarget(defaultValue) }
|
privateHelpers.getProjectTarget = { doGetProjectTarget() }
|
||||||
privateHelpers.findLatestInstalledBuildTools = { defaultValue -> findLatestInstalledBuildTools(defaultValue) }
|
privateHelpers.findLatestInstalledBuildTools = { doFindLatestInstalledBuildTools('19.1.0') }
|
||||||
privateHelpers.extractIntFromManifest = { name -> extractIntFromManifest(name) }
|
privateHelpers.extractIntFromManifest = { name -> doExtractIntFromManifest(name) }
|
||||||
privateHelpers.promptForPassword = { msg -> promptForPassword(msg) }
|
privateHelpers.promptForPassword = { msg -> doPromptForPassword(msg) }
|
||||||
|
privateHelpers.ensureValueExists = { filePath, props, key -> doEnsureValueExists(filePath, props, key) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user