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
"Do you want to install the Android Studio command line tools to setup the Android SDK?",
295
+
Some(false),
296
+
)
297
+
.unwrap_or_default();
298
+
299
+
if !granted_permission_to_install {
300
+
anyhow::bail!("Skipping Android Studio command line tools installation. Please go through the manual setup process described in the documentation: https://tauri.app/start/prerequisites/#android");
"Do you want to install the Android SDK using the command line tools?",
309
+
Some(false),
310
+
)
311
+
.unwrap_or_default();
312
+
313
+
if !granted_permission_to_install {
314
+
anyhow::bail!("Skipping Android Studio SDK installation. Please go through the manual setup process described in the documentation: https://tauri.app/start/prerequisites/#android");
315
+
}
316
+
}
317
+
318
+
log::info!("Running sdkmanager to install platform-tools, android-{SDK_VERSION} and ndk-{NDK_VERSION} on {}...", default_android_home.display());
"Do you want to install the Android Studio command line tools to setup the Android NDK?",
368
+
Some(false),
369
+
)
370
+
.unwrap_or_default();
371
+
372
+
if !granted_permission_to_install {
373
+
anyhow::bail!("Skipping Android Studio command line tools installation. Please go through the manual setup process described in the documentation: https://tauri.app/start/prerequisites/#android");
"Do you want to install the Android NDK using the command line tools?",
382
+
Some(false),
383
+
)
384
+
.unwrap_or_default();
385
+
386
+
if !granted_permission_to_install {
387
+
anyhow::bail!("Skipping Android Studio NDK installation. Please go through the manual setup process described in the documentation: https://tauri.app/start/prerequisites/#android");
388
+
}
389
+
}
390
+
391
+
log::info!(
392
+
"Running sdkmanager to install ndk-{NDK_VERSION} on {}...",
0 commit comments