mirror of
https://github.com/bevyengine/bevy
synced 2024-11-25 14:10:19 +00:00
Fixed Android example icon (#4076)
# Objective - The android example icon doesn't show up ## Solution - I fixed the android metadata to match `cargo-apk` manifest
This commit is contained in:
parent
3d68094f6f
commit
ad88bdae5c
1 changed files with 4 additions and 2 deletions
|
@ -673,8 +673,10 @@ path = "examples/android/android.rs"
|
|||
[package.metadata.android]
|
||||
apk_label = "Bevy Example"
|
||||
assets = "assets"
|
||||
res = "assets/android-res"
|
||||
icon = "@mipmap/ic_launcher"
|
||||
resources = "assets/android-res"
|
||||
build_targets = ["aarch64-linux-android", "armv7-linux-androideabi"]
|
||||
min_sdk_version = 16
|
||||
target_sdk_version = 29
|
||||
|
||||
[package.metadata.android.application]
|
||||
icon = "@mipmap/ic_launcher"
|
||||
|
|
Loading…
Reference in a new issue