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
{{ message }}
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
I've set this in my project/build/MyProject.scala:
trait Defaults {
def androidPlatformName = "android-10"
}
Which seems to work fine. However, I had a look at the source of android-plugin and found that it doesn't support API level 10 in AndroidProject.platformName2ApiLevel. It also seems that platformName2ApiLevel expects another format, e.g. android-2.2 instead of android-8. Perhaps it would make sense to use one format throughout?
The text was updated successfully, but these errors were encountered:
I appears that some changes made to support the newer sdks have made it so that that map can not work, so minSdkVersion is used as a fallback. The only place that apiLevel is used is for the google add-ons. If those are broken in some way we can open a new bug. I'm closing this one as I can see no problem specific to API level 10, which I've also tested.
I've set this in my
project/build/MyProject.scala
:trait Defaults {
def androidPlatformName = "android-10"
}
Which seems to work fine. However, I had a look at the source of
android-plugin
and found that it doesn't support API level 10 inAndroidProject.platformName2ApiLevel
. It also seems thatplatformName2ApiLevel
expects another format, e.g.android-2.2
instead ofandroid-8
. Perhaps it would make sense to use one format throughout?The text was updated successfully, but these errors were encountered: