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 2f68af6 commit f0a56c7Copy full SHA for f0a56c7
1 file changed
mobile/build.gradle
@@ -70,7 +70,6 @@ dependencies {
70
}
71
72
// Can be used to build with: ./gradlew cargoBuild
73
-// NOTE: Doesn't work, chokes on building openssl-sys
74
apply plugin: 'org.mozilla.rust-android-gradle.rust-android'
75
76
cargo {
@@ -82,10 +81,9 @@ cargo {
82
81
83
tasks.whenTaskAdded { task ->
84
// TODO: Build aw-server lib here instead of in Makefile?
85
- // Doesn't work, chokes on building openssl-sys
86
- //if ((task.name == 'javaPreCompileDebug' || task.name == 'javaPreCompileRelease')) {
87
- // task.dependsOn 'cargoBuild'
88
- //}
+ if ((task.name == 'javaPreCompileDebug' || task.name == 'javaPreCompileRelease')) {
+ task.dependsOn 'cargoBuild'
+ }
89
90
// TODO: Build aw-webui here?
91
//if (task.name.contains("assembleRelease")) {
0 commit comments