Skip to content

Commit 5c3664d

Browse files
committed
add more output
1 parent cf6cba4 commit 5c3664d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

android-database-sqlcipher/native.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,15 @@ def gitClean(directory) {
126126
def executeNdkBuild(outputDir, androidMkDirectory, applicationMkFile,
127127
cflags, otherSqlcipherCFlags, androidVersion) {
128128
logger.info "Executing NDK build command"
129+
130+
def out = services.get(StyledTextOutputFactory).create("")
131+
out.style(Style.Normal).text("SQLCIPHER_CFLAGS=").style(Style.Info).println("${cflags}")
132+
out.style(Style.Normal).text("OPENSSL_DIR=").style(Style.Info).println("${opensslDir}")
133+
out.style(Style.Normal).text("SQLCIPHER_DIR=").style(Style.Info).println("${sqlcipherDir}")
134+
out.style(Style.Normal).text("SQLCIPHER_OTHER_CFLAGS=").style(Style.Info).println("${otherSqlcipherCFlags}")
135+
out.style(Style.Normal).text("ANDROID_NATIVE_ROOT_DIR=").style(Style.Info).println("${androidNativeRootDir}")
136+
out.style(Style.Normal).text("NDK_APP_PLATFORM=").style(Style.Info).println("${androidVersion}")
137+
129138
exec {
130139
def outputDirectory = "NDK_LIBS_OUT=${outputDir}"
131140
def applicationFile = "NDK_APPLICATION_MK=${applicationMkFile}"

0 commit comments

Comments
 (0)