|
||
#21
|
||||
|
||||
Hola,
he estado sacando algunos iconos. Y tengo una pregunta. [Creo que es así!, no tengo otro móvil para compararlo] Por ejemplo Google Play muestra un icono cuando hay una actualización disponible, otro icono cuando son varias aplicaciones las disponibles. Lo mismo cuando se han instalado la aplicación o aplicaciones. Es posible gestionar esto? |
|
#22
|
||||
|
||||
Hola,
he estado sacando algunos iconos. Y tengo una pregunta. [Creo que es así!, no tengo otro móvil para compararlo] Por ejemplo Google Play muestra un icono cuando hay una actualización disponible, otro icono cuando son varias aplicaciones las disponibles. Lo mismo cuando se han instalado la aplicación o aplicaciones. Es posible gestionar esto? ![]() Cuando tenga un poco de tiempo libre hago lo de acanogon y a ver si intento lo tuyo. |
Gracias de parte de: | ||
#23
|
||||
|
||||
|
Gracias de parte de: | ||
#25
|
||||
|
||||
Gracias! |
#27
|
||||
|
||||
Gracias! Os prometo que este finde y en adelante podré retomar todo esto y todo lo que me quedó a medias de hacer. He estado muy liado.
|
Los siguientes 3 usuarios han agradecido a iicc su comentario: | ||
#28
|
||||
|
||||
Hola, la verdad es que sí, necesito ayuda
![]() Si yo solo configuro la apk para meter todos esos iconos puedo tardar días y días. Me podrías echar una mano? Sería lo siguiente: Para modificar el código de la apk para que admita los iconos, necesito modificar dos cosas, el public.xml y un .smali que está por SystemUI\smali\com\android\systemui\statusbar\phon e... Te podrías encargar de añadir los iconos al public? Es lo más sencillo y más corto. El public.xml lo que hace es asignar un "número" a cada icono para que la apk pueda llamarlos cuando sea necesario. En nuestro caso, a cada icono añadido hay que asignarle ese "número" en el public para que yo los pueda programar en el .smali y que se inicien cuando llega una notificación Te pongo un ejemplo del un trozo de public modificado de los otros iconos para que veas como va: [php] <public type="drawable" name="mz_stat_sys_9gag" id="0x7f020186" /> <public type="drawable" name="mz_stat_sys_telegram" id="0x7f020188" /> <public type="drawable" name="mz_stat_sys_amazon" id="0x7f020189" /> <public type="drawable" name="mz_stat_sys_Aquamail" id="0x7f02018a" /> <public type="drawable" name="mz_stat_sys_clash" id="0x7f02018b" /> <public type="drawable" name="mz_stat_sys_diradio" id="0x7f02018c" /> <public type="drawable" name="mz_stat_sys_ebay" id="0x7f02018d" /> <public type="drawable" name="mz_stat_sys_facebook" id="0x7f02018f" /> <public type="drawable" name="mz_stat_sys_facebook_message" id="0x7f020190" /> <public type="drawable" name="mz_stat_sys_flynx" id="0x7f020191" /> <public type="drawable" name="mz_stat_sys_gmail" id="0x7f020192" /> <public type="drawable" name="mz_stat_sys_google_plus" id="0x7f020193" /> <public type="drawable" name="mz_stat_sys_hangouts" id="0x7f020194" /> <public type="drawable" name="mz_stat_sys_instagram" id="0x7f020195" /> <public type="drawable" name="mz_stat_sys_imdb" id="0x7f020196" /> <public type="drawable" name="mz_stat_sys_play" id="0x7f020197" /> <public type="drawable" name="mz_stat_sys_screenfilter" id="0x7f020198" /> <public type="drawable" name="mz_stat_sys_smartwatch" id="0x7f020199" /> <public type="drawable" name="mz_stat_sys_line" id="0x7f02019a" /> <public type="drawable" name="mz_stat_sys_snapchat" id="0x7f02019b" /> <public type="drawable" name="mz_stat_sys_soundcloud" id="0x7f02019c" /> <public type="drawable" name="mz_stat_sys_spotify" id="0x7f02019d" /> <public type="drawable" name="mz_stat_sys_vueling" id="0x7f0201a0" /> <public type="drawable" name="mz_stat_sys_Wallapop" id="0x7f0201a1" /> <public type="drawable" name="mz_stat_sys_youtube" id="0x7f0201a2" /> <public type="drawable" name="mz_stat_sys_aliexpress" id="0x7f0201a3" /> <public type="drawable" name="mz_stat_sys_ElTiempo" id="0x7f0201a4" /> <public type="drawable" name="mz_stat_sys_tapatalk" id="0x7f0201a5" /> <public type="drawable" name="mz_stat_sys_timely" id="0x7f0201a6" /> <public type="drawable" name="mz_stat_sys_Pinterest" id="0x7f0201a7" /> <public type="drawable" name="mz_stat_sys_Paypal" id="0x7f0201a8" /> <public type="drawable" name="mz_stat_sys_Htcmania" id="0x7f0201a9" /> <public type="drawable" name="mz_stat_sys_telegramplus" id="0x7f0201aa" />[/php] Verás que lo que hay que añadir es: <public type="drawable" name="mz_stat_sys_[nombre del icono]" id="[número en hexadecimal en aumento]"/> Si no sabes hexadecimal, va como en el sistema digital pero en lugar de haber 10 posibles números por cada dígito, van 16. Así: 0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f Verás en el ejemplo que por cada línea voy sumando +1 en el número hexadecimal. Se trata de eso, de continuar con los nuevos iconos, siguiendo por el mismo núimero. Por ejemplo, este sería el 1º de los nuevos:[php] <public type="drawable" name="mz_stat_sys_podcastaddict" id="0x7f0201ab" /> [/php] Y yo me encargo del smali que es lo gordo. Gracias, a ver que te parece ![]() |
#29
|
||||
|
||||
Hola, la verdad es que sí, necesito ayuda
![]() @iicc Si yo solo configuro la apk para meter todos esos iconos puedo tardar días y días. Me podrías echar una mano? Sería lo siguiente: Para modificar el código de la apk para que admita los iconos, necesito modificar dos cosas, el public.xml y un .smali que está por SystemUI\smali\com\android\systemui\statusbar\phon e... Te podrías encargar de añadir los iconos al public? Es lo más sencillo y más corto. El public.xml lo que hace es asignar un "número" a cada icono para que la apk pueda llamarlos cuando sea necesario. En nuestro caso, a cada icono añadido hay que asignarle ese "número" en el public para que yo los pueda programar en el .smali y que se inicien cuando llega una notificación Te pongo un ejemplo del un trozo de public modificado de los otros iconos para que veas como va: [php] <public type="drawable" name="mz_stat_sys_9gag" id="0x7f020186" /> <public type="drawable" name="mz_stat_sys_telegram" id="0x7f020188" /> <public type="drawable" name="mz_stat_sys_amazon" id="0x7f020189" /> <public type="drawable" name="mz_stat_sys_Aquamail" id="0x7f02018a" /> <public type="drawable" name="mz_stat_sys_clash" id="0x7f02018b" /> <public type="drawable" name="mz_stat_sys_diradio" id="0x7f02018c" /> <public type="drawable" name="mz_stat_sys_ebay" id="0x7f02018d" /> <public type="drawable" name="mz_stat_sys_facebook" id="0x7f02018f" /> <public type="drawable" name="mz_stat_sys_facebook_message" id="0x7f020190" /> <public type="drawable" name="mz_stat_sys_flynx" id="0x7f020191" /> <public type="drawable" name="mz_stat_sys_gmail" id="0x7f020192" /> <public type="drawable" name="mz_stat_sys_google_plus" id="0x7f020193" /> <public type="drawable" name="mz_stat_sys_hangouts" id="0x7f020194" /> <public type="drawable" name="mz_stat_sys_instagram" id="0x7f020195" /> <public type="drawable" name="mz_stat_sys_imdb" id="0x7f020196" /> <public type="drawable" name="mz_stat_sys_play" id="0x7f020197" /> <public type="drawable" name="mz_stat_sys_screenfilter" id="0x7f020198" /> <public type="drawable" name="mz_stat_sys_smartwatch" id="0x7f020199" /> <public type="drawable" name="mz_stat_sys_line" id="0x7f02019a" /> <public type="drawable" name="mz_stat_sys_snapchat" id="0x7f02019b" /> <public type="drawable" name="mz_stat_sys_soundcloud" id="0x7f02019c" /> <public type="drawable" name="mz_stat_sys_spotify" id="0x7f02019d" /> <public type="drawable" name="mz_stat_sys_vueling" id="0x7f0201a0" /> <public type="drawable" name="mz_stat_sys_Wallapop" id="0x7f0201a1" /> <public type="drawable" name="mz_stat_sys_youtube" id="0x7f0201a2" /> <public type="drawable" name="mz_stat_sys_aliexpress" id="0x7f0201a3" /> <public type="drawable" name="mz_stat_sys_ElTiempo" id="0x7f0201a4" /> <public type="drawable" name="mz_stat_sys_tapatalk" id="0x7f0201a5" /> <public type="drawable" name="mz_stat_sys_timely" id="0x7f0201a6" /> <public type="drawable" name="mz_stat_sys_Pinterest" id="0x7f0201a7" /> <public type="drawable" name="mz_stat_sys_Paypal" id="0x7f0201a8" /> <public type="drawable" name="mz_stat_sys_Htcmania" id="0x7f0201a9" /> <public type="drawable" name="mz_stat_sys_telegramplus" id="0x7f0201aa" />[/php] Verás que lo que hay que añadir es: <public type="drawable" name="mz_stat_sys_[nombre del icono]" id="[número en hexadecimal en aumento]"/> Si no sabes hexadecimal, va como en el sistema digital pero en lugar de haber 10 posibles números por cada dígito, van 16. Así: 0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f Verás en el ejemplo que por cada línea voy sumando +1 en el número hexadecimal. Se trata de eso, de continuar con los nuevos iconos, siguiendo por el mismo núimero. Por ejemplo, este sería el 1º de los nuevos:[php] <public type="drawable" name="mz_stat_sys_podcastaddict" id="0x7f0201ab" /> [/php] Y yo me encargo del smali que es lo gordo. Gracias, a ver que te parece ![]() ![]() @iicc Para sacar el archivo, simplemente abrir el systemui.apk como zip? o hay que decompilar? Veo que hay algunos iconos que ya estaban includos. Tienen toda la pinta de ser iconos de aplicaciones chinas. <public type="drawable" name=" mz_stat_sys_skype " id=" 0x7f0201ad " /> <public type="drawable" name=" mz_stat_sys_inbox " id=" 0x7f0201ae " /> <public type="drawable" name=" mz_stat_sys_kakaotalk " id=" 0x7f0201af " /> <public type="drawable" name=" mz_stat_sys_disa " id=" 0x7f0201b0 " /> <public type="drawable" name=" mz_stat_sys_tango " id=" 0x7f0201b1 " /> <public type="drawable" name=" mz_stat_sys_taobao " id=" 0x7f0201b2 " /> <public type="drawable" name=" mz_stat_sys_thunder " id=" 0x7f0201b3 " /> -La última que tu debeiste añadir fue disa (b0) La pregunta es por donde continuo yo? por la siguiente a disa que sería 0x7f0201b1 o continuo por la última app china que sería zhihu 0x7f0201ca? No sé como lanza Flyme esos iconos. Si añado numeración entremedias tengo que renumerar los iconos chinos, y no sé si eso causaría problemas. (para que siempre fuera incrementandose en 1) También he visto que algún valor le metiste "1". Supongo que por no dejar un hueco vacío en la numeración Cuando tenga un ratito lo hago. Por cierto, la versión 1.4 funciona solo para Lollipop en el M1? *Estoy haciendo una hoja de excel para automatizar el proceso Última edición por yodrako Día 13/07/15 a las 11:20:22. |
#30
|
||||
|
||||
@iicc
Para sacar el archivo, simplemente abrir el systemui.apk como zip? o hay que decompilar? Veo que hay algunos iconos que ya estaban includos. Tienen toda la pinta de ser iconos de aplicaciones chinas. <public type="drawable" name=" mz_stat_sys_skype " id=" 0x7f0201ad " /> <public type="drawable" name=" mz_stat_sys_inbox " id=" 0x7f0201ae " /> <public type="drawable" name=" mz_stat_sys_kakaotalk " id=" 0x7f0201af " /> <public type="drawable" name=" mz_stat_sys_disa " id=" 0x7f0201b0 " /> <public type="drawable" name=" mz_stat_sys_tango " id=" 0x7f0201b1 " /> <public type="drawable" name=" mz_stat_sys_taobao " id=" 0x7f0201b2 " /> <public type="drawable" name=" mz_stat_sys_thunder " id=" 0x7f0201b3 " /> -La última que tu debeiste añadir fue disa (b0) La pregunta es por donde continuo yo? por la siguiente a disa que sería 0x7f0201b1 o continuo por la última app china que sería zhihu 0x7f0201ca? No sé como lanza Flyme esos iconos. Si añado numeración entremedias tengo que renumerar los iconos chinos, y no sé si eso causaría problemas. (para que siempre fuera incrementandose en 1) También he visto que algún valor le metiste "1". Supongo que por no dejar un hueco vacío en la numeración Cuando tenga un ratito lo hago. Por cierto, la versión 1.4 funciona solo para Lollipop en el M1? *Estoy haciendo una hoja de excel para automatizar el proceso ![]() No hace falta que lo decompiles, con que lo hagas en algún programa tipo Notepad++ es suficiente. Te paso el public.xml modificado entero si quieres: Sí, la última que añadí fue creo que disa pero al final lo hice desordenado, así que al final la última de la lista que añadí fue el telegram plus: <public type="drawable" name="mz_stat_sys_telegramplus" id="0x7f0201aa"> Sería continuar a partir del 0x7f0201aa EDIT: espera que creo que estoy con otra versión que hice y me estoy liando He introducido los iconos de manera que tengamos casi infinitos siguiendo ese número. Sí, lo del 1 fue siguiendo un orden que no llegé a ninguna parte porque me quedé sin número s para seguir añadiendo iconos No lo he probado para lollipop pero 100% seguro que no va a ir. Si quieres podemos empezar ha hacerlo para lollipop directamente Última edición por iicc Día 13/07/15 a las 13:29:55. |
#31
|
||||
|
||||
Sí, estaba diciendo pero con una versión antigua que hice que tenía por el pc.
Esto es lo modificado del public.xml: [php]<public type="drawable" name="mz_stat_sys_9gag" id="0x7f020186" /> <public type="drawable" name="1" id="0x7f020187" /> <public type="drawable" name="mz_stat_sys_telegram" id="0x7f020188" /> <public type="drawable" name="mz_stat_sys_amazon" id="0x7f020189" /> <public type="drawable" name="mz_stat_sys_Aquamail" id="0x7f02018a" /> <public type="drawable" name="mz_stat_sys_clash" id="0x7f02018b" /> <public type="drawable" name="mz_stat_sys_diradio" id="0x7f02018c" /> <public type="drawable" name="mz_stat_sys_ebay" id="0x7f02018d" /> <public type="drawable" name="mz_stat_sys_alibaba" id="0x7f02018e" /> <public type="drawable" name="mz_stat_sys_facebook" id="0x7f02018f" /> <public type="drawable" name="mz_stat_sys_facebook_message" id="0x7f020190" /> <public type="drawable" name="mz_stat_sys_flynx" id="0x7f020191" /> <public type="drawable" name="mz_stat_sys_gmail" id="0x7f020192" /> <public type="drawable" name="mz_stat_sys_google_plus" id="0x7f020193" /> <public type="drawable" name="mz_stat_sys_hangouts" id="0x7f020194" /> <public type="drawable" name="mz_stat_sys_instagram" id="0x7f020195" /> <public type="drawable" name="mz_stat_sys_imdb" id="0x7f020196" /> <public type="drawable" name="mz_stat_sys_play" id="0x7f020197" /> <public type="drawable" name="mz_stat_sys_screenfilter" id="0x7f020198" /> <public type="drawable" name="mz_stat_sys_smartwatch" id="0x7f020199" /> <public type="drawable" name="mz_stat_sys_line" id="0x7f02019a" /> <public type="drawable" name="mz_stat_sys_snapchat" id="0x7f02019b" /> <public type="drawable" name="mz_stat_sys_soundcloud" id="0x7f02019c" /> <public type="drawable" name="mz_stat_sys_spotify" id="0x7f02019d" /> <public type="drawable" name="mz_stat_sys_alipay" id="0x7f02019e" /> <public type="drawable" name="mz_stat_sys_baidu" id="0x7f02019f" /> <public type="drawable" name="mz_stat_sys_vueling" id="0x7f0201a0" /> <public type="drawable" name="mz_stat_sys_Wallapop" id="0x7f0201a1" /> <public type="drawable" name="mz_stat_sys_youtube" id="0x7f0201a2" /> <public type="drawable" name="mz_stat_sys_aliexpress" id="0x7f0201a3" /> <public type="drawable" name="mz_stat_sys_ElTiempo" id="0x7f0201a4" /> <public type="drawable" name="mz_stat_sys_tapatalk" id="0x7f0201a5" /> <public type="drawable" name="mz_stat_sys_timely" id="0x7f0201a6" /> <public type="drawable" name="mz_stat_sys_HTCMania" id="0x7f0201a7" /> <public type="drawable" name="mz_stat_sys_Paypal" id="0x7f0201a8" /> <public type="drawable" name="mz_stat_sys_Pinterest" id="0x7f0201a9" /> <public type="drawable" name="mz_stat_sys_telegramplus" id="0x7f0201aa" /> <public type="drawable" name="mz_stat_sys_PrinterShare" id="0x7f0201ab" /> <public type="drawable" name="mz_stat_sys_Mensajes" id="0x7f0201ac" /> <public type="drawable" name="mz_stat_sys_skype" id="0x7f0201ad" /> <public type="drawable" name="mz_stat_sys_inbox" id="0x7f0201ae" /> <public type="drawable" name="mz_stat_sys_kakaotalk" id="0x7f0201af" /> <public type="drawable" name="mz_stat_sys_disa" id="0x7f0201b0" />[/php]Como decías, la última es disa y habría que seguir por ahí. El "1" lo puse porque me equivoqué y tenía que poner algo para que compilase de nuevo. Sí, hay que seguir desde ese número. Si empezamos a seguir por otro distinto al final es un follón y además que hay que estár renombrando iconos en el public y por los .smali, mucho lio. Si quieres lo hacemos en lollipop, o en kitkat. En lollipop sería empezar de cero seguramente pero así ya estaría hecho Última edición por iicc Día 13/07/15 a las 13:29:34. |
#32
|
||||
|
||||
Sí, estaba diciendo pero con una versión antigua que hice que tenía por el pc.
Esto es lo modificado del public.xml: <public type="drawable" name="mz_stat_sys_k9 "id="0x7f0201b2"/> <public type="drawable" name="mz_stat_sys_fit "id="0x7f0201b3"/> <public type="drawable" name="mz_stat_sys_googleCalendar "id="0x7f0201b4"/> <public type="drawable" name="mz_stat_sys_keep "id="0x7f0201b5"/> <public type="drawable" name="mz_stat_sys_trackchecker "id="0x7f0201b6"/> <public type="drawable" name="mz_stat_sys_skype "id="0x7f0201b7"/> <public type="drawable" name="mz_stat_sys_alarmdroid "id="0x7f0201b8"/> <public type="drawable" name="mz_stat_sys_spotifyTablet "id="0x7f0201b9"/> <public type="drawable" name="mz_stat_sys_sportstracker "id="0x7f0201ba"/> <public type="drawable" name="mz_stat_sys_trello "id="0x7f0201bb"/> <public type="drawable" name="mz_stat_sys_yahooWeather "id="0x7f0201bc"/> <public type="drawable" name="mz_stat_sys_oeffi "id="0x7f0201bd"/> <public type="drawable" name="mz_stat_sys_skyscanner "id="0x7f0201be"/> <public type="drawable" name="mz_stat_sys_googleplay_update "id="0x7f0201bf"/> <public type="drawable" name="mz_stat_sys_xposed "id="0x7f0201c0"/> <public type="drawable" name="mz_stat_sys_ubreader "id="0x7f0201c1"/> <public type="drawable" name="mz_stat_sys_shazam "id="0x7f0201c2"/> <public type="drawable" name="mz_stat_sys_radiosspain "id="0x7f0201c3"/> <public type="drawable" name="mz_stat_sys_greenify "id="0x7f0201c4"/> <public type="drawable" name="mz_stat_sys_gravitybox "id="0x7f0201c5"/> <public type="drawable" name="mz_stat_sys_gravitybox "id="0x7f0201c6"/> <public type="drawable" name="mz_stat_sys_googleOpinion "id="0x7f0201c7"/> <public type="drawable" name="mz_stat_sys_flymetools "id="0x7f0201c8"/> <public type="drawable" name="mz_stat_sys_dropbox "id="0x7f0201c9"/> <public type="drawable" name="mz_stat_sys_aptoide "id="0x7f0201ca"/> <public type="drawable" name="mz_stat_sys_amplify "id="0x7f0201cb"/> <public type="drawable" name="mz_stat_sys_admDispositivos "id="0x7f0201cc"/> <public type="drawable" name="mz_stat_sys_acdisplay "id="0x7f0201cd"/> <public type="drawable" name="mz_stat_sys_swiftkey "id="0x7f0201ce"/> <public type="drawable" name="mz_stat_sys_touchpal2015 "id="0x7f0201cf"/> <public type="drawable" name="mz_stat_sys_amazonAppStore "id="0x7f0201d0"/> [/php]Como decías, la última es disa y habría que seguir por ahí. El "1" lo puse porque me equivoqué y tenía que poner algo para que compilase de nuevo. Sí, hay que seguir desde ese número. Si empezamos a seguir por otro distinto al final es un follón y además que hay que estár renombrando iconos en el public y por los .smali, mucho lio. Si quieres lo hacemos en lollipop, o en kitkat. En lollipop sería empezar de cero seguramente pero así ya estaría hecho ![]() [php] <public type="drawable" name="mz_stat_sys_podcastaddict "id="0x7f0201b1"/> <public type="drawable" name="mz_stat_sys_k9 "id="0x7f0201b2"/> <public type="drawable" name="mz_stat_sys_fit "id="0x7f0201b3"/> <public type="drawable" name="mz_stat_sys_googleCalendar "id="0x7f0201b4"/> <public type="drawable" name="mz_stat_sys_keep "id="0x7f0201b5"/> <public type="drawable" name="mz_stat_sys_trackchecker "id="0x7f0201b6"/> <public type="drawable" name="mz_stat_sys_skype "id="0x7f0201b7"/> <public type="drawable" name="mz_stat_sys_alarmdroid "id="0x7f0201b8"/> <public type="drawable" name="mz_stat_sys_spotifyTablet "id="0x7f0201b9"/> <public type="drawable" name="mz_stat_sys_sportstracker "id="0x7f0201ba"/> <public type="drawable" name="mz_stat_sys_trello "id="0x7f0201bb"/> <public type="drawable" name="mz_stat_sys_yahooWeather "id="0x7f0201bc"/> <public type="drawable" name="mz_stat_sys_oeffi "id="0x7f0201bd"/> <public type="drawable" name="mz_stat_sys_skyscanner "id="0x7f0201be"/> <public type="drawable" name="mz_stat_sys_googleplay_update "id="0x7f0201bf"/> <public type="drawable" name="mz_stat_sys_xposed "id="0x7f0201c0"/> <public type="drawable" name="mz_stat_sys_ubreader "id="0x7f0201c1"/> <public type="drawable" name="mz_stat_sys_shazam "id="0x7f0201c2"/> <public type="drawable" name="mz_stat_sys_radiosspain "id="0x7f0201c3"/> <public type="drawable" name="mz_stat_sys_greenify "id="0x7f0201c4"/> <public type="drawable" name="mz_stat_sys_gravitybox "id="0x7f0201c5"/> <public type="drawable" name="mz_stat_sys_gravitybox "id="0x7f0201c6"/> <public type="drawable" name="mz_stat_sys_googleOpinion "id="0x7f0201c7"/> <public type="drawable" name="mz_stat_sys_flymetools "id="0x7f0201c8"/> <public type="drawable" name="mz_stat_sys_dropbox "id="0x7f0201c9"/> <public type="drawable" name="mz_stat_sys_aptoide "id="0x7f0201ca"/> <public type="drawable" name="mz_stat_sys_amplify "id="0x7f0201cb"/> <public type="drawable" name="mz_stat_sys_admDispositivos "id="0x7f0201cc"/> <public type="drawable" name="mz_stat_sys_acdisplay "id="0x7f0201cd"/> <public type="drawable" name="mz_stat_sys_swiftkey "id="0x7f0201ce"/> <public type="drawable" name="mz_stat_sys_touchpal2015 "id="0x7f0201cf"/> <public type="drawable" name="mz_stat_sys_amazonAppStore "id="0x7f0201d0"/> [/php] Pues aquí está el fragmento de texto del public.xml Puede parecer que hay algunos repetidos, pero tiene una explicación. Spotify, GooglePlay y AmazonAppStore, al menos a mi, no me están funcionando. No sé a que es debido. Si es debido a algún error en las lineas del código, puedo cambiarlo aquí rápidamente. GravityBox hay dos, uno para KK y otro para L. AmazonAppStore → Uno es la tienda de App, y la otra Amazon en general. No sé cuanto trabajo lleva hacer cada versión. Yo de momento no he probado las betas y cuando salga la release con Android 5, la cambiaré en algún momento, pero todavía no sé cuando. Este es mi caso personal. El resto de gente no sé que hará exactamente. Así que yo soy partidario de tener ambas. Pero si crees que es mucho trabajo se puede hacer para la L. Si puedo ayudar en más cosas estoy por aquí ![]() Edit: En el public.xml veo que Twitter, Whataspp y Viber están mezclados con las aplicaciones chinas. Última edición por yodrako Día 13/07/15 a las 15:22:01. |
Gracias de parte de: | ||
#33
|
||||
|
||||
Vale gracias ahora me pongo.
Sí, las que están mezcladas con las apps chinas son porque ya estaban por defecto en flyme. Creo que lo mejor va a ser hacerlo para kitkat, para que salga la estable de lollipop falta bastante y habrán vuelto a cambiar el systemui... Es curioso porque a mi si me salen los iconos de google play y de amazon. Que rom llevas? |
#34
|
||||
|
||||
La 4.2.0.5 A
Se supone que la última estable, no? Qué raro... Edit: puedo modificar el archivo si dices que a ti te sale. Por no repetir dos veces las cosas más que nada... Última edición por yodrako Día 13/07/15 a las 14:58:46. |
#35
|
||||
|
||||
Si, yo tambien.. Da igual, déjalos y vamos probando. Si no pongo en su lugar otras imágenes y ya está.
|
#36
|
||||
|
||||
[PHP]<public type="drawable" name="mz_stat_sys_podcastaddict" id="0x7f0201b1"/>
<public type="drawable" name="mz_stat_sys_k9" id="0x7f0201b2"/> <public type="drawable" name="mz_stat_sys_fit" id="0x7f0201b3"/> <public type="drawable" name="mz_stat_sys_googleCalendar" id="0x7f0201b4"/> <public type="drawable" name="mz_stat_sys_keep" id="0x7f0201b5"/> <public type="drawable" name="mz_stat_sys_trackchecker" id="0x7f0201b6"/> <public type="drawable" name="mz_stat_sys_skype" id="0x7f0201b7"/> <public type="drawable" name="mz_stat_sys_alarmdroid" id="0x7f0201b8"/> <public type="drawable" name="mz_stat_sys_spotifyTablet" id="0x7f0201b9"/> <public type="drawable" name="mz_stat_sys_sportstracker" id="0x7f0201ba"/> <public type="drawable" name="mz_stat_sys_trello" id="0x7f0201bb"/> <public type="drawable" name="mz_stat_sys_yahooWeather" id="0x7f0201bc"/> <public type="drawable" name="mz_stat_sys_oeffi" id="0x7f0201bd"/> <public type="drawable" name="mz_stat_sys_skyscanner" id="0x7f0201be"/> <public type="drawable" name="mz_stat_sys_googleplay_update" id="0x7f0201bf"/> <public type="drawable" name="mz_stat_sys_xposed" id="0x7f0201c0"/> <public type="drawable" name="mz_stat_sys_ubreader" id="0x7f0201c1"/> <public type="drawable" name="mz_stat_sys_shazam" id="0x7f0201c2"/> <public type="drawable" name="mz_stat_sys_radiosspain" id="0x7f0201c3"/> <public type="drawable" name="mz_stat_sys_greenify" id="0x7f0201c4"/> <public type="drawable" name="mz_stat_sys_gravitybox" id="0x7f0201c5"/> <public type="drawable" name="mz_stat_sys_gravitybox" id="0x7f0201c6"/> <public type="drawable" name="mz_stat_sys_googleOpinion" id="0x7f0201c7"/> <public type="drawable" name="mz_stat_sys_flymetools" id="0x7f0201c8"/> <public type="drawable" name="mz_stat_sys_dropbox" id="0x7f0201c9"/> <public type="drawable" name="mz_stat_sys_aptoide" id="0x7f0201ca"/> <public type="drawable" name="mz_stat_sys_amplify" id="0x7f0201cb"/> <public type="drawable" name="mz_stat_sys_admDispositivos" id="0x7f0201cc"/> <public type="drawable" name="mz_stat_sys_acdisplay" id="0x7f0201cd"/> <public type="drawable" name="mz_stat_sys_swiftkey" id="0x7f0201ce"/> <public type="drawable" name="mz_stat_sys_touchpal2015" id="0x7f0201cf"/> <public type="drawable" name="mz_stat_sys_amazonAppStore" id="0x7f0201d0"/> <public type="drawable" name="mz_stat_sys_amazonAppStore" id="0x7f0201d1"/> [/PHP] Había un errorcillo. Creo que ahora está mejor |
Gracias de parte de: | ||
#37
|
||||
|
||||
Vale, gracias.
Eso que yo decía que a partir de ese número ya podiamos seguir añadiendo iconos no era cierto, con el MX4 creo que sí lo conseguí, pero con el M1 Note no, hay que estar quitando los ID de las apps chinas. No pasa nada, al final caben casi todas las que has pasado, solo faltan las 4 últimas que les puedo buscar algún hueco. Al final, así compila: Las apps que estaban repetidas les he asignado un número que son unas imágenes que he puesto para que compile. [PHP]<public type="drawable" name="mz_stat_sys_9gag" id="0x7f020186" /> <public type="drawable" name="1" id="0x7f020187" /> <public type="drawable" name="mz_stat_sys_telegram" id="0x7f020188" /> <public type="drawable" name="mz_stat_sys_amazon" id="0x7f020189" /> <public type="drawable" name="mz_stat_sys_Aquamail" id="0x7f02018a" /> <public type="drawable" name="mz_stat_sys_clash" id="0x7f02018b" /> <public type="drawable" name="mz_stat_sys_diradio" id="0x7f02018c" /> <public type="drawable" name="mz_stat_sys_ebay" id="0x7f02018d" /> <public type="drawable" name="mz_stat_sys_alibaba" id="0x7f02018e" /> <public type="drawable" name="mz_stat_sys_facebook" id="0x7f02018f" /> <public type="drawable" name="mz_stat_sys_facebook_message" id="0x7f020190" /> <public type="drawable" name="mz_stat_sys_flynx" id="0x7f020191" /> <public type="drawable" name="mz_stat_sys_gmail" id="0x7f020192" /> <public type="drawable" name="mz_stat_sys_google_plus" id="0x7f020193" /> <public type="drawable" name="mz_stat_sys_hangouts" id="0x7f020194" /> <public type="drawable" name="mz_stat_sys_instagram" id="0x7f020195" /> <public type="drawable" name="mz_stat_sys_imdb" id="0x7f020196" /> <public type="drawable" name="mz_stat_sys_play" id="0x7f020197" /> <public type="drawable" name="mz_stat_sys_screenfilter" id="0x7f020198" /> <public type="drawable" name="mz_stat_sys_smartwatch" id="0x7f020199" /> <public type="drawable" name="mz_stat_sys_line" id="0x7f02019a" /> <public type="drawable" name="mz_stat_sys_snapchat" id="0x7f02019b" /> <public type="drawable" name="mz_stat_sys_soundcloud" id="0x7f02019c" /> <public type="drawable" name="mz_stat_sys_spotify" id="0x7f02019d" /> <public type="drawable" name="mz_stat_sys_alipay" id="0x7f02019e" /> <public type="drawable" name="mz_stat_sys_baidu" id="0x7f02019f" /> <public type="drawable" name="mz_stat_sys_vueling" id="0x7f0201a0" /> <public type="drawable" name="mz_stat_sys_Wallapop" id="0x7f0201a1" /> <public type="drawable" name="mz_stat_sys_youtube" id="0x7f0201a2" /> <public type="drawable" name="mz_stat_sys_aliexpress" id="0x7f0201a3" /> <public type="drawable" name="mz_stat_sys_ElTiempo" id="0x7f0201a4" /> <public type="drawable" name="mz_stat_sys_tapatalk" id="0x7f0201a5" /> <public type="drawable" name="mz_stat_sys_timely" id="0x7f0201a6" /> <public type="drawable" name="mz_stat_sys_HTCMania" id="0x7f0201a7" /> <public type="drawable" name="mz_stat_sys_Paypal" id="0x7f0201a8" /> <public type="drawable" name="mz_stat_sys_Pinterest" id="0x7f0201a9" /> <public type="drawable" name="mz_stat_sys_telegramplus" id="0x7f0201aa" /> <public type="drawable" name="mz_stat_sys_PrinterShare" id="0x7f0201ab" /> <public type="drawable" name="mz_stat_sys_Mensajes" id="0x7f0201ac" /> <public type="drawable" name="mz_stat_sys_skype" id="0x7f0201ad" /> <public type="drawable" name="mz_stat_sys_inbox" id="0x7f0201ae" /> <public type="drawable" name="mz_stat_sys_kakaotalk" id="0x7f0201af" /> <public type="drawable" name="mz_stat_sys_disa" id="0x7f0201b0" /> <public type="drawable" name="mz_stat_sys_podcastaddict" id="0x7f0201b1"/> <public type="drawable" name="mz_stat_sys_k9" id="0x7f0201b2"/> <public type="drawable" name="mz_stat_sys_fit" id="0x7f0201b3"/> <public type="drawable" name="mz_stat_sys_googleCalendar" id="0x7f0201b4"/> <public type="drawable" name="mz_stat_sys_keep" id="0x7f0201b5"/> <public type="drawable" name="mz_stat_sys_trackchecker" id="0x7f0201b6"/> <public type="drawable" name="2" id="0x7f0201b7"/> <public type="drawable" name="mz_stat_sys_alarmdroid" id="0x7f0201b8"/> <public type="drawable" name="mz_stat_sys_spotifyTablet" id="0x7f0201b9"/> <public type="drawable" name="mz_stat_sys_sportstracker" id="0x7f0201ba"/> <public type="drawable" name="mz_stat_sys_trello" id="0x7f0201bb"/> <public type="drawable" name="mz_stat_sys_yahooWeather" id="0x7f0201bc"/> <public type="drawable" name="mz_stat_sys_oeffi" id="0x7f0201bd"/> <public type="drawable" name="mz_stat_sys_skyscanner" id="0x7f0201be"/> <public type="drawable" name="mz_stat_sys_googleplay_update" id="0x7f0201bf"/> <public type="drawable" name="mz_stat_sys_xposed" id="0x7f0201c0"/> <public type="drawable" name="mz_stat_sys_ubreader" id="0x7f0201c1"/> <public type="drawable" name="mz_stat_sys_shazam" id="0x7f0201c2"/> <public type="drawable" name="mz_stat_sys_radiosspain" id="0x7f0201c3"/> <public type="drawable" name="mz_stat_sys_greenify" id="0x7f0201c4"/> <public type="drawable" name="mz_stat_sys_gravitybox" id="0x7f0201c5"/> <public type="drawable" name="3" id="0x7f0201c6"/> <public type="drawable" name="mz_stat_sys_googleOpinion" id="0x7f0201c7"/> <public type="drawable" name="mz_stat_sys_flymetools" id="0x7f0201c8"/> <public type="drawable" name="mz_stat_sys_dropbox" id="0x7f0201c9"/> <public type="drawable" name="mz_stat_sys_aptoide" id="0x7f0201ca"/> [/PHP] He usado los fallos al decompilar del apktool para añadir algunas más y las que estaban en flyme que no eran apps chinas: [PHP]<public type="drawable" name="mz_stat_sys_whatsapp" id="0x7f02021b" /> <public type="drawable" name="stat_sys_data_connected_3g_double" id="0x7f02021c" /> <public type="drawable" name="stat_sys_data_connected_3g_single" id="0x7f02021d" /> <public type="drawable" name="mz_stat_sys_viber" id="0x7f02021e" /> <public type="drawable" name="stat_sys_data_connected_4g_double" id="0x7f02021f" /> <public type="drawable" name="stat_sys_data_connected_4g_single" id="0x7f020220" /> <public type="drawable" name="stat_sys_data_connected_double" id="0x7f020221" /> <public type="drawable" name="mz_stat_sys_twitter" id="0x7f020222" /> <public type="drawable" name="stat_sys_data_connected_e_double" id="0x7f020223" /> <public type="drawable" name="stat_sys_data_connected_e_single" id="0x7f020224" /> <public type="drawable" name="mz_stat_sys_amplify" id="0x7f020225" /> <public type="drawable" name="stat_sys_data_connected_g_double" id="0x7f020226" /> <public type="drawable" name="stat_sys_data_connected_g_single" id="0x7f020227" /> <public type="drawable" name="mz_stat_sys_admDispositivos" id="0x7f020228" /> <public type="drawable" name="stat_sys_data_connected_h_double" id="0x7f020229" /> <public type="drawable" name="mz_stat_sys_acdisplay" id="0x7f02022a" />[/PHP] Ahora me pongo con el .smali |
#38
|
||||
|
||||
Vale, ya está y compila. Solo falta arreglar los iconos, añadir las apps que falta que no caben y probar si salen bien.
He arreglado lo de HTCmania y pinterest, que estaban cambiados. He puesto que cambie la notificación de google play cuando sea una descarga, no sé si funcionará la verdad Así queda el .smali ya casi terminado: [php] .class final Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1; .super Ljava/util/HashMap; .source "MeizuCustomizedIcons.java" # annotations .annotation system Ldalvik/annotation/EnclosingClass; value = Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons; .end annotation .annotation system Ldalvik/annotation/InnerClass; accessFlags = 0x8 name = null .end annotation .annotation system Ldalvik/annotation/Signature; value = { "Ljava/util/HashMap", "<", "Ljava/lang/String;", "Ljava/lang/Integer;", ">;" } .end annotation # direct methods .method constructor <init>()V .locals 7 .prologue const v6, 0x7f02019f const v5, 0x7f02019e const v4, 0x7f020187 const v3, 0x7f020185 const v2, 0x7f02018e .line 28 invoke-direct {p0}, Ljava/util/HashMap;-><init>()V .line 31 const-string v0, "com.tencent.mobileqq" invoke-static {v6}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 32 const-string v0, "com.tencent.mobileqqi" invoke-static {v6}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 33 const-string v0, "com.yahoo.mobile.cliente.android.weather" const v1, 0x7f0201bc invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 34 const-string v0, "hello.vierco.com.htcmania" const v1, 0x7f0201a7 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 35 const-string v0, "com.alibaba.aliexpresshd" const v1, 0x7f0201a3 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 36 const-string v0, "ch.bitspin.timely" const v1, 0x7f0201a6 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 37 const-string v0, "com.mo2o.vueling" const v1, 0x7f0201a0 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 38 const-string v0, "es.eltiempo.weatherapp" const v1, 0x7f0201a4 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 39 const-string v0, "com.wallapop" const v1, 0x7f0201a1 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 40 const-string v0, "com.google.android.youtube" const v1, 0x7f0201a2 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 41 const-string v0, "com.quoord.tapatalkpro.activity" const v1, 0x7f0201a5 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 42 const-string v0, "com.pinterest" const v1, 0x7f0201a9 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 43 const-string v0, "com.paypal.android.p2pmobile" const v1, 0x7f0201a8 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 44 const-string v0, "org.telegram.plus" const v1, 0x7f0201aa invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 47 const-string v0, "com.zhixin.flymeTools" const v1, 0x7f0201c8 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 50 const-string v0, "com.tudou.android" const v1, 0x7f0201b7 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 53 const-string v0, "de.schildbach.oeffi" const v1, 0x7f0201bd invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 54 const-string v0, "net.skyscanner.android.main" const v1, 0x7f0201be invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 55 const-string v0, "com.sina.videocompanion" const v1, 0x7f0201ac invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 56 const-string v0, "com.sina.news" const v1, 0x7f0201ab invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 59 const-string v0, "com.google.android.calendar" const v1, 0x7f0201b4 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 60 const-string v0, "com.amazon.venezia" const v1, 0x7f020189 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 61 const-string v0, "org.kman.AquaMail" const v1, 0x7f02018a invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 62 const-string v0, "com.audioaddict.di" const v1, 0x7f02018c invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 63 const-string v0, "org.telegram.messenger" const v1, 0x7f020188 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 64 const-string v0, "com.supercell.clashofclans" const v1, 0x7f02018b invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 67 const-string v0, "com.mobisystems.ubreader_west" const v1, 0x7f0201c1 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 68 const-string v0, "com.shazam.android" const v1, 0x7f0201c2 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 69 const-string v0, "es.androideapp.radioEsp" const v1, 0x7f0201c3 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 70 const-string v0, "com.oasisfeng.greenify" const v1, 0x7f0201c4 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 71 const-string v0, "im.yixin" const v1, 0x7f0201c6 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 74 const-string v0, "com.alibaba.wireless" const v1, 0x7f020186 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 75 const-string v0, "com.bt.smartwatch" const v1, 0x7f020199 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 76 const-string v0, "com.trello" const v1, 0x7f0201bb invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 77 const-string v0, "com.alipay.android.app" invoke-static {v4}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 78 const-string v0, "com.eg.android.AlipayGphone" invoke-static {v4}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 79 const-string v0, "com.fsck.k9" const v1, 0x7f0201b2 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 80 const-string v0, "com.android.vending" const v1, 0x7f020197 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 81 const-string v0, "com.google.android.keep" const v1, 0x7f0201b5 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 82 const-string v0, "com.ceco.kitkat.gravitybox" const v1, 0x7f0201c5 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 85 const-string v0, "com.sohu.inputmethod.sogou" const v1, 0x7f0201b0 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 86 const-string v0, "com.sohu.newsclient" const v1, 0x7f0201ae invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 87 const-string v0, "com.sohu.sohuvideo" const v1, 0x7f0201af invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 90 const-string v0, "com.qihoo360.mobilesafe" invoke-static {v3}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 91 const-string v0, "com.qihoo360.mobilesafe_meizu" invoke-static {v3}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 92 const-string v0, "com.qihoo360.mobilesafe.opti.powerctl" const v1, 0x7f020184 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 95 const-string v0, "com.imdb.mobile" const v1, 0x7f020196 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 98 const-string v0, "com.soundcloud.android" const v1, 0x7f02019c invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 101 const-string v0, "com.douban.book.reader" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 102 const-string v0, "com.douban.bookcart" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 103 const-string v0, "com.douban.event" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 104 const-string v0, "com.douban.group" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 105 const-string v0, "com.douban.movie" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 106 const-string v0, "com.douban.shuo" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 109 const-string v0, "com.ebay.mobile" const v1, 0x7f02018d invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 110 const-string v0, "com.google.android.apps.fitness" const v1, 0x7f0201b3 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 113 const-string v0, "Com.flynx" const v1, 0x7f020191 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 116 const-string v0, "Com.haxor" const v1, 0x7f020198 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 119 const-string v0, "com.snapchat.android" const v1, 0x7f02019b invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 122 const-string v0, "com.pplive.androidphone" invoke-static {v5}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 123 const-string v0, "com.pplive.androidpad" invoke-static {v5}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 126 const-string v0, "cm.aptoide.pt" const v1, 0x7f0201ca invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 129 const-string v0, "com.dropbox.android" const v1, 0x7f0201c9 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 130 const-string v0, "com.myzaker.zaker_phone_smartbar" const v1, 0x7f0201c9 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 133 const-string v0, "com.spotify.music" const v1, 0x7f0201b9 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 136 const-string v0, "de.robv.android.xposed.installer" const v1, 0x7f0201c0 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 139 const-string v0, "com.google.android.apps.paidtasks" const v1, 0x7f0201c7 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 142 const-string v0, "com.facebook.katana" const v1, 0x7f02018f invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 144 const-string v0, "com.facebook.orca" const v1, 0x7f020190 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 147 const-string v0, "com.google.android.apps.plus" const v1, 0x7f020193 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 149 const-string v0, "com.google.android.talk" const v1, 0x7f020194 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 151 const-string v0, "com.google.android.gm" const v1, 0x7f020192 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 154 const-string v0, "com.instagram.android" const v1, 0x7f020195 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 157 const-string v0, "jp.naver.line.android" const v1, 0x7f02019a invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 160 const-string v0, "com.skype.raider" const v1, 0x7f0201ad invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 163 const-string v0, "com.bambuna.podcastaddict" const v1, 0x7f0201b1 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 166 const-string v0, "com.splunchy.android.alarmclock" const v1, 0x7f0201b8 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 169 const-string v0, "com.stt.android" const v1, 0x7f0201ba invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 172 const-string v0, "com.google.android.finsky.download.MimeTypeActivi ty" const v1, 0x7f0201bf invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 175 const-string v0, "com.metalsoft.trackchecker_mobile" const v1, 0x7f0201b6 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 178 const-string v0, "Com.spotify.music" const v1, 0x7f02019d invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 181 const-string v0, "com.dynamixsoftware.printershare.amazon" const v1, 0x7f0201ab invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 184 const-string v0, "com.android.mms" const v1, 0x7f0201ac invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 187 const-string v0, "com.google.android.apps.inbox" const v1, 0x7f0201ae invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 190 const-string v0, "com.kakao.talk" const v1, 0x7f0201af invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 193 const-string v0, "com.disa" const v1, 0x7f0201b0 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 196 const-string v0, "com.whatsapp" const v1, 0x7f02021b invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 196 const-string v0, "com.viver.voip" const v1, 0x7f02021e invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 199 const-string v0, "com.twitter.android" const v1, 0x7f020222 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 202 const-string v0, "com.ryansteckler.nlpunbounce" const v1, 0x7f020225 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 205 const-string v0, "com.google.android.apps.adm" const v1, 0x7f020228 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 208 const-string v0, "com.achep.acdisplay" const v1, 0x7f02022a invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 195 return-void .end method [/php] |
#39
|
||||
|
||||
Vale, ya está y compila. Solo falta arreglar los iconos, añadir las apps que falta que no caben y probar si salen bien.
He arreglado lo de HTCmania y pinterest, que estaban cambiados. He puesto que cambie la notificación de google play cuando sea una descarga, no sé si funcionará la verdad Así queda el .smali ya casi terminado: [php] .class final Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1; .super Ljava/util/HashMap; .source "MeizuCustomizedIcons.java" # annotations .annotation system Ldalvik/annotation/EnclosingClass; value = Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons; .end annotation .annotation system Ldalvik/annotation/InnerClass; accessFlags = 0x8 name = null .end annotation .annotation system Ldalvik/annotation/Signature; value = { "Ljava/util/HashMap", "<", "Ljava/lang/String;", "Ljava/lang/Integer;", ">;" } .end annotation # direct methods .method constructor <init>()V .locals 7 .prologue const v6, 0x7f02019f const v5, 0x7f02019e const v4, 0x7f020187 const v3, 0x7f020185 const v2, 0x7f02018e .line 28 invoke-direct {p0}, Ljava/util/HashMap;-><init>()V .line 31 const-string v0, "com.tencent.mobileqq" invoke-static {v6}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 32 const-string v0, "com.tencent.mobileqqi" invoke-static {v6}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 33 const-string v0, "com.yahoo.mobile.cliente.android.weather" const v1, 0x7f0201bc invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 34 const-string v0, "hello.vierco.com.htcmania" const v1, 0x7f0201a7 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 35 const-string v0, "com.alibaba.aliexpresshd" const v1, 0x7f0201a3 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 36 const-string v0, "ch.bitspin.timely" const v1, 0x7f0201a6 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 37 const-string v0, "com.mo2o.vueling" const v1, 0x7f0201a0 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 38 const-string v0, "es.eltiempo.weatherapp" const v1, 0x7f0201a4 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 39 const-string v0, "com.wallapop" const v1, 0x7f0201a1 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 40 const-string v0, "com.google.android.youtube" const v1, 0x7f0201a2 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 41 const-string v0, "com.quoord.tapatalkpro.activity" const v1, 0x7f0201a5 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 42 const-string v0, "com.pinterest" const v1, 0x7f0201a9 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 43 const-string v0, "com.paypal.android.p2pmobile" const v1, 0x7f0201a8 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 44 const-string v0, "org.telegram.plus" const v1, 0x7f0201aa invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 47 const-string v0, "com.zhixin.flymeTools" const v1, 0x7f0201c8 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 50 const-string v0, "com.tudou.android" const v1, 0x7f0201b7 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 53 const-string v0, "de.schildbach.oeffi" const v1, 0x7f0201bd invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 54 const-string v0, "net.skyscanner.android.main" const v1, 0x7f0201be invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 55 const-string v0, "com.sina.videocompanion" const v1, 0x7f0201ac invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 56 const-string v0, "com.sina.news" const v1, 0x7f0201ab invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 59 const-string v0, "com.google.android.calendar" const v1, 0x7f0201b4 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 60 const-string v0, "com.amazon.venezia" const v1, 0x7f020189 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 61 const-string v0, "org.kman.AquaMail" const v1, 0x7f02018a invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 62 const-string v0, "com.audioaddict.di" const v1, 0x7f02018c invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 63 const-string v0, "org.telegram.messenger" const v1, 0x7f020188 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 64 const-string v0, "com.supercell.clashofclans" const v1, 0x7f02018b invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 67 const-string v0, "com.mobisystems.ubreader_west" const v1, 0x7f0201c1 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 68 const-string v0, "com.shazam.android" const v1, 0x7f0201c2 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 69 const-string v0, "es.androideapp.radioEsp" const v1, 0x7f0201c3 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 70 const-string v0, "com.oasisfeng.greenify" const v1, 0x7f0201c4 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 71 const-string v0, "im.yixin" const v1, 0x7f0201c6 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 74 const-string v0, "com.alibaba.wireless" const v1, 0x7f020186 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 75 const-string v0, "com.bt.smartwatch" const v1, 0x7f020199 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 76 const-string v0, "com.trello" const v1, 0x7f0201bb invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 77 const-string v0, "com.alipay.android.app" invoke-static {v4}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 78 const-string v0, "com.eg.android.AlipayGphone" invoke-static {v4}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 79 const-string v0, "com.fsck.k9" const v1, 0x7f0201b2 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 80 const-string v0, "com.android.vending" const v1, 0x7f020197 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 81 const-string v0, "com.google.android.keep" const v1, 0x7f0201b5 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 82 const-string v0, "com.ceco.kitkat.gravitybox" const v1, 0x7f0201c5 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 85 const-string v0, "com.sohu.inputmethod.sogou" const v1, 0x7f0201b0 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 86 const-string v0, "com.sohu.newsclient" const v1, 0x7f0201ae invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 87 const-string v0, "com.sohu.sohuvideo" const v1, 0x7f0201af invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 90 const-string v0, "com.qihoo360.mobilesafe" invoke-static {v3}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 91 const-string v0, "com.qihoo360.mobilesafe_meizu" invoke-static {v3}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 92 const-string v0, "com.qihoo360.mobilesafe.opti.powerctl" const v1, 0x7f020184 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 95 const-string v0, "com.imdb.mobile" const v1, 0x7f020196 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 98 const-string v0, "com.soundcloud.android" const v1, 0x7f02019c invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 101 const-string v0, "com.douban.book.reader" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 102 const-string v0, "com.douban.bookcart" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 103 const-string v0, "com.douban.event" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 104 const-string v0, "com.douban.group" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 105 const-string v0, "com.douban.movie" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 106 const-string v0, "com.douban.shuo" invoke-static {v2}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 109 const-string v0, "com.ebay.mobile" const v1, 0x7f02018d invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 110 const-string v0, "com.google.android.apps.fitness" const v1, 0x7f0201b3 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 113 const-string v0, "Com.flynx" const v1, 0x7f020191 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 116 const-string v0, "Com.haxor" const v1, 0x7f020198 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 119 const-string v0, "com.snapchat.android" const v1, 0x7f02019b invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 122 const-string v0, "com.pplive.androidphone" invoke-static {v5}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 123 const-string v0, "com.pplive.androidpad" invoke-static {v5}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 126 const-string v0, "cm.aptoide.pt" const v1, 0x7f0201ca invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 129 const-string v0, "com.dropbox.android" const v1, 0x7f0201c9 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 130 const-string v0, "com.myzaker.zaker_phone_smartbar" const v1, 0x7f0201c9 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 133 const-string v0, "com.spotify.music" const v1, 0x7f0201b9 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 136 const-string v0, "de.robv.android.xposed.installer" const v1, 0x7f0201c0 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 139 const-string v0, "com.google.android.apps.paidtasks" const v1, 0x7f0201c7 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 142 const-string v0, "com.facebook.katana" const v1, 0x7f02018f invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 144 const-string v0, "com.facebook.orca" const v1, 0x7f020190 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 147 const-string v0, "com.google.android.apps.plus" const v1, 0x7f020193 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 149 const-string v0, "com.google.android.talk" const v1, 0x7f020194 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 151 const-string v0, "com.google.android.gm" const v1, 0x7f020192 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 154 const-string v0, "com.instagram.android" const v1, 0x7f020195 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 157 const-string v0, "jp.naver.line.android" const v1, 0x7f02019a invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 160 const-string v0, "com.skype.raider" const v1, 0x7f0201ad invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 163 const-string v0, "com.bambuna.podcastaddict" const v1, 0x7f0201b1 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 166 const-string v0, "com.splunchy.android.alarmclock" const v1, 0x7f0201b8 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 169 const-string v0, "com.stt.android" const v1, 0x7f0201ba invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 172 const-string v0, "com.google.android.finsky.download.MimeTypeActivi ty" const v1, 0x7f0201bf invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 175 const-string v0, "com.metalsoft.trackchecker_mobile" const v1, 0x7f0201b6 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 178 const-string v0, "Com.spotify.music" const v1, 0x7f02019d invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 181 const-string v0, "com.dynamixsoftware.printershare.amazon" const v1, 0x7f0201ab invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 184 const-string v0, "com.android.mms" const v1, 0x7f0201ac invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 187 const-string v0, "com.google.android.apps.inbox" const v1, 0x7f0201ae invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 190 const-string v0, "com.kakao.talk" const v1, 0x7f0201af invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 193 const-string v0, "com.disa" const v1, 0x7f0201b0 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 196 const-string v0, "com.whatsapp" const v1, 0x7f02021b invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 196 const-string v0, "com.viver.voip" const v1, 0x7f02021e invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 199 const-string v0, "com.twitter.android" const v1, 0x7f020222 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 202 const-string v0, "com.ryansteckler.nlpunbounce" const v1, 0x7f020225 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 205 const-string v0, "com.google.android.apps.adm" const v1, 0x7f020228 invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 208 const-string v0, "com.achep.acdisplay" const v1, 0x7f02022a invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; .line 195 return-void .end method [/php] ![]() Leído y entendido como va. No sé si se podría meter alguna cosa dentro de una función (no sé si se puede hacer aquí y con este lenguaje) por ejemplo: [PHP] invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; [/PHP] En cualquier caso lo veo bien (aunque no he comprobado la correspondencia de los iconos) En qué más puedo colaborar? |
|
#40
|
||||
|
||||
Leído y entendido como va.
No sé si se podría meter alguna cosa dentro de una función (no sé si se puede hacer aquí y con este lenguaje) por ejemplo: [php] invoke-static {v1}, Ljava/lang/Integer;->valueOf(I)Ljava/lang/Integer; move-result-object v1 invoke-virtual {p0, v0, v1}, Lcom/android/systemui/statusbar/phone/MeizuCustomizedIcons$1;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; [/php]En cualquier caso lo veo bien (aunque no he comprobado la correspondencia de los iconos) En qué más puedo colaborar? ![]() Pues solo queda adaptar los iconos para que se vean con un tamaño normal. Para el M1 Note, lo más cercano a como son los de Flyme, he visto que es la medida 59x59 Esto lo hago con todos a la vez con un programa que se llama resize pictures y se hace en un segundo. Pero hay una cosa que no he conseguido, a ver si tu sabes. Con este mod, cuando te llega una notificación de Telegram, por ejemplo, el icono sale muy grande y luego vuelve a su tamaño normal. Esto es porque los iconos que todos me pasáis son un cuadrado, mientras que los de flyme están como en un rectángulo, con el icono en el centro. Cuando llega una notificación, flyme adapta el icono a la pantalla al alto del icono, no al ancho. Por tanto, los iconos mios se ven muy gordos mientras que los de Flyme guardan su proporción. No sé si me explico. Lo que habría que hacer es meter los iconos de flyme en una base rectangular de 58x100, para que no se agranden cuando salta una notificación. |
![]() |
![]() |
||||||
|