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
I propose that we split out api_level and ndk_version into something like:
constandroid_sdk: android.Sdk=android.Sdk.create(b, .{}); // <- Second parameter will likely be an empty struct but we'll add options later if need be.constapk=android_sdk.createApk(b, .{
// .api_level = .android15, // <- Maybe even possibly deprecate and just use the `Target.Query.android_api_level`
.build_tools_version="35.0.1",
.ndk_version="29.0.13113456",
});
From there, it would be nice to add additional machinery like being able to invoke commands like sdkmanager via the newly created android.Sdk through Zig to avoid needing to think about setting up environment variables like $ANDROID_HOME and $JDK_PATH.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Description
I propose that we split out
api_level
andndk_version
into something like:From there, it would be nice to add additional machinery like being able to invoke commands like
sdkmanager
via the newly createdandroid.Sdk
through Zig to avoid needing to think about setting up environment variables like$ANDROID_HOME
and$JDK_PATH
.The text was updated successfully, but these errors were encountered: