We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b630882 commit cf6cba4Copy full SHA for cf6cba4
android-database-sqlcipher/native.gradle
@@ -1,8 +1,12 @@
1
-task buildOpenSSL () {
+import org.gradle.internal.logging.text.StyledTextOutputFactory
2
+import static org.gradle.internal.logging.text.StyledTextOutput.Style
3
+
4
+task buildOpenSSL() {
5
onlyIf {
6
def armNativeFile = new File("${androidNativeRootDir}/armeabi/libcrypto.a")
7
if (armNativeFile.exists()) {
- println ("${androidNativeRootDir}/armeabi/libcrypto.a exists nothing to do")
8
+ def out = services.get(StyledTextOutputFactory).create("")
9
+ out.style(Style.Normal).text("${androidNativeRootDir}/armeabi/libcrypto.a exists").style(Style.Info).println(' SKIPPED')
10
}
11
return !armNativeFile.exists()
12
0 commit comments