Help to select and icon from apk, and rename apk

Monkey Forums/Monkey Beginners/Help to select and icon from apk, and rename apk

monoloc(Posted 2014) [#1]
Question: on the icons for apk
compiling the apk and it worked.
what I saw that came out with the default icon
within the apk I see 3 icons saved
36x36 48x48 72x72 in png
like not even as an icon allocate
draw a png, those sizes and remplaze
when I open the apk in the tablet,
see my icon, but when you want to install
I can still see the icon but then gives me error

I suppose. that somewhere, I can choose my png
so believe me, those icons automatically?
is that possible?

another thing I saw is that always goes as
"Monkey game"
I can somehow change the name to come out as I want?
because even if I do another apk I replaced the previous


GuShh(Posted 2014) [#2]
Try

#ANDROID_APP_LABEL="Monkey Game"



Midimaster(Posted 2014) [#3]
You have to create your icon as "Icon.png" and then save it to all 3 different folder:

save your icon here:
C:\Monkey\MyApp\MyApp.build\android\res\drawable-hdpi\
C:\Monkey\MyApp\MyApp.build\android\res\drawable-ldpi\
C:\Monkey\MyApp\MyApp.build\android\res\drawable-mdpi\


Supertino(Posted 2014) [#4]
You might also want to add;

C:\Monkey\MyApp\MyApp.build\android\res\drawable-hdpi\ < ------ 72x72
C:\Monkey\MyApp\MyApp.build\android\res\drawable-xhdpi\ < -------96x96
C:\Monkey\MyApp\MyApp.build\android\res\drawable-xxhdpi\ < -------144x144

Or you icon will be up scaled and might look awful and very high DPI screens, there is also an xxxhdpi but AFAIK there are no ~640DPI devices out there.