You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if !symbols.contains(&"Java_app_tauri_plugin_PluginManager_handlePluginResponse"){
139
+
anyhow::bail!(
140
+
"Library from {} does not include required runtime symbols. This means you are likely missing the tauri::mobile_entry_point macro usage, see the documentation for more information: https://v2.tauri.app/start/migrate/from-tauri-1",
returnErr(anyhow::anyhow!("Library not found at {}. Make sure your Cargo.toml file has a [lib] block with `crate-type = [\"staticlib\", \"cdylib\", \"lib\"]`", lib_path.display()));
212
213
}
213
214
215
+
validate_lib(&lib_path)?;
216
+
214
217
let project_dir = config.project_dir();
215
218
let externals_lib_dir = project_dir.join(format!("Externals/{arch}/{}", profile.as_str()));
let symbols = String::from_utf8_lossy(&output.stdout);
232
+
if !symbols.contains("start_app"){
233
+
anyhow::bail!(
234
+
"Library from {} does not include required runtime symbols. This means you are likely missing the tauri::mobile_entry_point macro usage, see the documentation for more information: https://v2.tauri.app/start/migrate/from-tauri-1",
0 commit comments