Android:Changes to simplify command-line building of the app, and bugfixes to the Gradle script
This commit is contained in:
parent
08516ee09e
commit
658c49fab3
10
Readme.md
10
Readme.md
|
@ -65,14 +65,14 @@ and place the following inside:
|
|||
# Specifies arguments for the 'make' command. Can be blank.
|
||||
makeArgs=
|
||||
|
||||
# The path to your machine's Git executable. Will autodetect if blank.
|
||||
# The path to your machine's Git executable. Will autodetect if blank (on Linux only).
|
||||
gitPath=
|
||||
|
||||
# The path to the extracted NDK package. Will autodetect if blank.
|
||||
ndkPath=
|
||||
|
||||
# The path to the CMake executable. Will autodetect if blank.
|
||||
# The path to the CMake executable. Will autodetect if blank (on Linux only).
|
||||
cmakePath=
|
||||
|
||||
# The path to the extracted NDK package. Will autodetect if blank (on Linux only).
|
||||
ndkPath=
|
||||
```
|
||||
|
||||
If you prefer, you can run the CMake step manually, and it will copy the resulting
|
||||
|
|
|
@ -36,7 +36,6 @@ workspace.xml
|
|||
tasks.xml
|
||||
.gradle/*
|
||||
.idea
|
||||
gradle/
|
||||
build/
|
||||
*.so
|
||||
*.iml
|
||||
|
|
|
@ -134,7 +134,11 @@ task compileNative(type: Exec, dependsOn: 'setupCMake') {
|
|||
|
||||
executable 'make'
|
||||
|
||||
if (buildProperties.makeArgs == null || buildProperties.makeArgs.isEmpty()) {
|
||||
// TODO
|
||||
} else {
|
||||
args buildProperties.makeArgs
|
||||
}
|
||||
} else {
|
||||
executable 'echo'
|
||||
args 'No build.properties found; skipping native build.'
|
||||
|
@ -144,13 +148,15 @@ task compileNative(type: Exec, dependsOn: 'setupCMake') {
|
|||
String getExecutablePath(String command) {
|
||||
def propsFile = rootProject.file("build.properties")
|
||||
def path = null
|
||||
|
||||
if (propsFile.canRead()) {
|
||||
def buildProperties = new Properties()
|
||||
buildProperties.load(new FileInputStream(propsFile))
|
||||
println buildProperties
|
||||
path = buildProperties[command + "Path"]
|
||||
}
|
||||
if (path == null) {
|
||||
|
||||
if (path == null || path.isEmpty()) {
|
||||
try {
|
||||
def stdout = new ByteArrayOutputStream()
|
||||
|
||||
|
@ -164,21 +170,25 @@ String getExecutablePath(String command) {
|
|||
project.logger.error("Gradle error: Couldn't find " + command + " executable.")
|
||||
}
|
||||
}
|
||||
|
||||
if (path != null) {
|
||||
project.logger.quiet("Gradle: Found " + command + " executuable:" + path)
|
||||
}
|
||||
|
||||
return path
|
||||
}
|
||||
|
||||
String getNdkPath() {
|
||||
def propsFile = rootProject.file("build.properties")
|
||||
def ndkPath = null
|
||||
|
||||
if (propsFile.canRead()) {
|
||||
def buildProperties = new Properties()
|
||||
buildProperties.load(new FileInputStream(propsFile))
|
||||
ndkPath = buildProperties.ndkPath
|
||||
}
|
||||
if (ndkPath == null) {
|
||||
|
||||
if (ndkPath == null || ndkPath.isEmpty()) {
|
||||
try {
|
||||
def stdout = new ByteArrayOutputStream()
|
||||
|
||||
|
@ -194,6 +204,7 @@ String getNdkPath() {
|
|||
project.logger.error("Gradle error: Couldn't find NDK.")
|
||||
}
|
||||
}
|
||||
|
||||
if (ndkPath != null) {
|
||||
project.logger.quiet("Gradle: Found Android NDK: " + ndkPath)
|
||||
}
|
||||
|
|
Binary file not shown.
|
@ -0,0 +1,6 @@
|
|||
#Wed Apr 10 15:27:10 PDT 2013
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
|
Loading…
Reference in New Issue