@@ -168,13 +168,15 @@ fn build_android_dynamic_lib(daita: bool) -> anyhow::Result<()> {
168
168
let target_triple = env:: var ( "TARGET" ) . context ( "Missing 'TARGET'" ) ?;
169
169
let target = AndroidTarget :: from_str ( & target_triple) ?;
170
170
171
- // TODO: Since `libwg.so` is always copied to `android_output_path`, this rerun-directive will
172
- // always trigger cargo to rebuild this crate. Some mechanism to detected changes to `android_output_path`
173
- // is needed, because some external program may clean it at any time (e.g. gradle).
171
+ // This will either trigger a rebuild if any changes have been made to the libwg code
172
+ // or if the libwg.so file has been changed. The latter is required since the
173
+ // libwg.so file could be deleted. It however means that this build will need
174
+ // to run two times before it is properly cached.
174
175
println ! (
175
176
"cargo::rerun-if-changed={}" ,
176
- android_output_path( target) ?. display( )
177
+ android_output_path( target) ?. join ( "libwg.so" ) . display( )
177
178
) ;
179
+ println ! ( "cargo::rerun-if-changed={}" , libwg_path( ) ?. display( ) ) ;
178
180
179
181
// Before calling `canonicalize`, the directory we're referring to actually has to exist.
180
182
std:: fs:: create_dir_all ( "../build" ) ?;
@@ -229,12 +231,14 @@ fn android_move_binary(binary: &Path, output: &Path) -> anyhow::Result<()> {
229
231
) ) ?;
230
232
std:: fs:: create_dir_all ( parent_of_output) ?;
231
233
232
- let mut move_command = Command :: new ( "mv" ) ;
233
- move_command
234
+ let mut copy_command = Command :: new ( "cp" ) ;
235
+ // P command is required to not rebuild this module everytime
236
+ copy_command
237
+ . arg ( "-p" )
234
238
. arg ( binary. to_str ( ) . unwrap ( ) )
235
239
. arg ( output. to_str ( ) . unwrap ( ) ) ;
236
240
237
- exec ( & mut move_command ) ?;
241
+ exec ( & mut copy_command ) ?;
238
242
239
243
Ok ( ( ) )
240
244
}
@@ -273,12 +277,20 @@ fn android_arch_name(target: AndroidTarget) -> String {
273
277
274
278
// Returns the path where the Android project expects Rust binaries to be
275
279
fn android_output_path ( target : AndroidTarget ) -> anyhow:: Result < PathBuf > {
276
- let relative_output_path = Path :: new ( "../android/app/build/extraJni" ) . join ( android_abi ( target) ) ;
280
+ let relative_output_path =
281
+ Path :: new ( "../android/app/build/rustJniLibs/android" ) . join ( android_abi ( target) ) ;
277
282
std:: fs:: create_dir_all ( relative_output_path. clone ( ) ) ?;
278
283
let output_path = relative_output_path. canonicalize ( ) ?;
279
284
Ok ( output_path)
280
285
}
281
286
287
+ // Return the path of the libwg folder so that we can trigger rebuilds when any code is
288
+ fn libwg_path ( ) -> anyhow:: Result < PathBuf > {
289
+ let relative_output_path = Path :: new ( "libwg" ) ;
290
+ let output_path = relative_output_path. canonicalize ( ) ?;
291
+ Ok ( output_path)
292
+ }
293
+
282
294
/// Execute a command, assert that it succeeds, and return stdout as a string.
283
295
fn exec ( mut command : impl BorrowMut < Command > ) -> anyhow:: Result < String > {
284
296
let command = command. borrow_mut ( ) ;
0 commit comments