android store does not appear on the application screen
Hello all,
i have flashed this one on the 8180 but i have problem - the android store is not installed also when i try to reinstall market but after reboot it disappear.
any way to fix this problem?
Hello all,
i have flashed this one on the 8180 but i have problem - the android store is not installed also when i try to reinstall market but after reboot it disappear.
any way to fix this problem?
...I take it you didn't pay attention to the instructions,eh? :P
Grab the latest gapps package and flash it... that should take care of what ails you
---------- Post added at 01:14 PM ---------- Previous post was at 01:03 PM ----------
Quote:
Originally Posted by Tutos14
¿Hace falta descargar el SetCPU para cambiar la frecuencia de la CPU?
¿Cual seria una frecuencia segura y estable?
¿Hay que añadir en el Recovery los 128 MB de Swap?
--
Do I need to download the SetCPU to change the CPU frequency?
What would be a safe and stable frequency?
Do I have to add in the 128 MB Recovery Swap?
1.Nope,but that makes things a bit easier (and allow you a better level of control)
You can set a min/max frequency and a governor from Settings>Cyanogenmod Settings>Performance>CPU Settings. If you want that setting to be persistent,select 'set on boot'
2.It depends on the performance you want AND the individual chip. Some can take a massive overclock to 729 and above remaining rock solid,while others become too unstable at 633. You have to check for yourself,but for what it's worth - my phone's set to 30/633MHz on 'Performance',with a Screen Off profile in SetCPU of 30/320 with 'conservative'.
3.Nope,it all depends on whether you need more RAM for some reason... and you are willing to trade some performance for volume... If you do so you can either use a swap script or Comp cache by going to
Settings>Cyanogenmod Settings>Performance>Compcache and use the percentage you want.
I do use swap,though,because I have space to burn and I don't mind the performance drop and I like to keep some news apps in-memory for news and score alerts and the on-board RAM is just not enough AND I don't want to waste CPU on compressing/uncompressing RAM. I have the scripts I found on my phone if you decide to use swap.
We are the Børg.Get assimilated. Resistance Sucks.
=======================================
New build is coming up tonight. The biggest change is improved Bluetooth configuration (may help people with connectivity issues with certain peripherals), fixed MAC addresses for both Bluetooth and Wifi, and a small stability fix for the kernel.
You guys may want to do a data wipe when installing this due to CyanogenMod code changes, otherwise your notification bar may get "stuck" when you receive notifications.
New build is coming up tonight. The biggest change is improved Bluetooth configuration (may help people with connectivity issues with certain peripherals), fixed MAC addresses for both Bluetooth and Wifi, and a small stability fix for the kernel.
Yo, psyke. "fixed" as in it was broken and now is fixed? Or "fixed" as in static? I'm curious because I saw some patches on another device which got the hardware MAC address for the wifi interface. Can't remember where, though. It'd be nice to use the hardware's real MAC address...
Also, does the CRT Off animation work on your device? Ours stopped working a few months ago and I never had time to figure out why. I see in frameworks/base/core/res/res/values/config.xml it's enabled by default in CM's framework, so it must be something in our U8150 device tree.
New build is coming up tonight. The biggest change is improved Bluetooth configuration (may help people with connectivity issues with certain peripherals), fixed MAC addresses for both Bluetooth and Wifi, and a small stability fix for the kernel.
You guys may want to do a data wipe when installing this due to CyanogenMod code changes, otherwise your notification bar may get "stuck" when you receive notifications.
So... you may want to start backing up .
Excelente noticia, gracias por el tiempo que le dedicas a la ROM
PD: El link de descarga no va
--
Excellent news, thanks for the time you devote to the ROM
PS: The download link will not
Yo, psyke. "fixed" as in it was broken and now is fixed? Or "fixed" as in static? I'm curious because I saw some patches on another device which got the hardware MAC address for the wifi interface. Can't remember where, though. It'd be nice to use the hardware's real MAC address...
Extremely bad choice of words on my part . I meant "repaired", as in, it's using the proper address as seen on a stock ROM.
For bluetooth, you may need to switch to brcm_patchram_plus in order to allocate the MAC address properly. I gotta run but we'll discuss that in detail later.
Quote:
Also, does the CRT Off animation work on your device? Ours stopped working a few months ago and I never had time to figure out why. I see in frameworks/base/core/res/res/values/config.xml it's enabled by default in CM's framework, so it must be something in our U8150 device tree.
Yo, psyke. "fixed" as in it was broken and now is fixed? Or "fixed" as in static? I'm curious because I saw some patches on another device which got the hardware MAC address for the wifi interface. Can't remember where, though. It'd be nice to use the hardware's real MAC address...
Continuing what I said previously: the MAC addresses are based on the serial number defined in /sys/module/g_android/parameters/serial_number. The wifi device uses the serial with the last group of hex values incremented by one, and the Bluetooth incremented by two.
The script is quite messy and may fail under certain conditions (e.g. if the base serial number's last group of hex digits are > x0FD). It could use some improvement, but it works for now.
For the wifi mac address, the init script does a sed expression filter on the static mac address in /system/wifi/nvram.txt, writing the real mac address in /data/misc/wifi/nvram.txt. This works when libhardware_legacy's WIFI_DRIVER_MODULE_ARG is configured to use the latter file.
For Bluetooth, the script writes the mac address to /data/misc/bluetooth/bdaddr, and "setprop ro.bt.bdaddr_path /data/misc/bluetooth/bdaddr" is added to the init.u81x0.rc file.
This is the part that affects your U8150: the ro.bt.bdaddr_path prop is parsed only by brcm_patchram_plus, which you don't use. You should switch over to using it, if possible.
I was previously using Huawei's brcm_patchram_plus proprietary binary due to a problem with CM7's version, but it stopped working once the above property was set (some weird error related to oncrpc...).
I did some troubleshooting and discovered that CM7's brcm_patchram_plus isn't fully compatible with my U8160 when using the "--enable_lpm" (low power mode) option; the HCI device completely stops responding properly after it's used.
I checked the Huawei brcm_patchram_plus binary via a hex editor and found that some of the hci values for lpm are different compared to the CM7 source. I edited the source and rebuilt the binary, placing it in the device tree as a prebuilt binary.
For your device, I recommend you remove your original hciattach service, and replace with this:
Code:
service hciattach /system/bin/brcm_patchram_plus \
--enable_hci --enable_lpm --baudrate 3000000 \
/dev/ttyHS0
user bluetooth
group qcom_oncrpc bluetooth net_bt_admin system
disabled
oneshot
If it doesn't work (or Bluetooth can only initialize on first boot, and fails afterwards), then either remove "--enable_lpm", or try my prebuilt binary instead of the stock CM7 one.
Quote:
Also, does the CRT Off animation work on your device? Ours stopped working a few months ago and I never had time to figure out why. I see in frameworks/base/core/res/res/values/config.xml it's enabled by default in CM's framework, so it must be something in our U8150 device tree.
What you need is:
Code:
<!-- Use the new fancy screen off animation.
Turn off to use new Gingerbread animation -->
<bool name="config_animateScreenLights">false</bool>
When writing an app with performance in mind, you most likely want to write it native code using the … more
XDA Developers was founded by developers, for developers. It is now a valuable resource for people who want to make the most of their mobile devices, from customizing the look and feel to adding new functionality. Are you a developer?