... Ich auch nicht. Bluetooth teste ich gleich mal.
Edith sagt :
Bluetooth läuft einwandfrei
... Ich auch nicht. Bluetooth teste ich gleich mal.
Edith sagt :
Bluetooth läuft einwandfrei
Also ich habe weder auf chroma, noch auf Terminus solche Probleme wie du, also kann es sein, dass du die gleichen Probleme bekommen kannst. Habe auch auf xda nichts von Bluetooth Problemen gelesen.
Hast du clean oder dirty geflashed? Hast du das neueste radio und den neusten Bootloader?
Clean Flash gemacht... Hatte eigentlich noch nie so Probleme, keine Ahnung woran das liegt. Kann es auch am Kernel liegen? Habe den aktuellen Code_Blue drauf.
Nö... Den habe ich auch laufen gehabt.
Hatte noch das 2.0.50.2.25 Radio drauf. Ist aber jetzt beides aktuell. Kann das etwa mit dem Bluetooth zu tun haben? Kann morgen erst wieder testen.
Im Chroma Thread ist definitiv über Bluetooth gesprochen worden. Auf den letzten Seiten, seit dem neuen Update, auf jeden Fall. Nutze Bluetooth nicht. Kann da auch nicht mehr sagen.
Hast du für bluetooth irgendwelche Tipps von da?
Hier ist der XDA- Thread
volantis-MPZ44Q-preview-d15ad483.tgz
Nen bissle Eigeninitiative ist nie verkehrt;)
mit Tapa vom Nexus 5
SlimKang by Fraz mit HellsCore
So Jungs, das Schweigen hat ein Ende:
Update!!!
Changelog:Primary (Recommended)
Download:LG-Support
OP ist akuell!
06/05/2015
Added: Double tap to sleep anywhere on the lock screen
Added: Support for Visual Voicemail for Verizon Wireless (shamu)
Bugfix: An issue where text is not showing up on first instance for Increasing Ring
Bugfix: An issue where if a user does not flashes GApps pulldown/home button/etc does not work (need confirmation)
Bugfix: Gallery2 - Fix crash when Bluetooth service is disabled
Bugfix: Google Now not working on shamu, fixed now
Bugfix: Increasing ringtone volume preview behavior
Bugfix: Some apps were ignoring the custom DPI scaling
Bugfix: VoLTE would not work when using T-Mobile LYZ28E radio .14R (shamu)
DeskClock: Remove "hot pink" on switches
Updated: Better handling of expanded volume sliders
Updated: Code cleanup across a number of components in the ROM
Updated: Expanded volume slider now uses Android M drawable
Updated: Increase brightness faster if ambient light is brightening quickly
Updated: Proprietary binaries to LYZ28E (shamu)
Chroma Update 17. Juni
- Clean Install empfohlen.
- Wer die DPI geändert hatte, sollte vorher auf die Stock DPI 480 wechseln.
- Empfohlene GApps von zephiK > BaNk's
Zitat von zephiK
Chroma 06/17/2015 Nexus 5 (hammerhead)
This is a full rewrite of the ROM. A full wipe is required if you did not flash the preview builds. Some features are not included and are meant to not be included, some features will be coming back in a future build (don't ask or request which ones, you can see the list in the changelog).If you used a DPI other than stock using the DPI changer built in settings, [COLOR="Red"]I suggest going back to the default DPI before you flash the new build to prevent boot loops[/COLOR].
Also use BaNkS' gapps, otherwise you may not be able to pull down from status bar / home button may not work. This is because of the provisioning provided by GApps.
Download: 14:28
Vielen Dank für das Update-Posten!
OP ist aktuell.
Changelog eingeügt.
Bitte die Hinweise beachten. Clean install ist erforderlich!
Aktuell fehlen noch einige Feature, die der Dev noch überdenkt.
Einige werden aber wohl raus bleiben. Guckt Euch einfach den Changelog im OP an.
Zitat von zephiKAlles anzeigenChroma 06/20/2015 Nexus 5 (hammerhead)
Chroma Android 5.1.1 Series
06/20/2015
If you changed your DPI using the built-in DPI switcher. Revert back to 560 DPI as the built-in DPI changer is no longer available as of 06/20. This is removed due to instability (mainly bootloops when people dirty flash the ROM with the custom DPI intact). After you wipe and the DPI still doesn’t change? Do a clean wipe.
Added: Ability to disable advanced reboot (developer options)
Added: Ability to disable bar color in battery saver mode
Added: Ability to disable navigation ring
Added: National data roaming
Added: Navigation ring customization
Added: Power button for navigation bar
Added: Status bar header long click actions
Battery - battery saver settings
Date - Set calendar event
Time - Set alarm
Settings - QS tiles settings
Weather - LockClock settingsAdded: Tiles
- Battery saver
- Heads up
- Screenshot
- Screen timeout
- SyncBugfix: Clear all recents in bottom right now works
Bugfix: Fix there is no sounds and delays 1s when pressing "Touch sounds" sometimes
Removed: LCD density changer -- use texdroider, change in build.prop etcChangelog: https://docs.google.com/document/d/1c7…dit?usp=sharing
Edith sagt !!!!
Zitat von zephiKIf you downloaded the rom already, I think I uploaded the old compiled build containing the bug, im reuploading the rom now with the one i just compiled at the time of the post.
Edit: its up
MD5: 87CD9B91A16E0B30E7D6DDB75F6ECEC8
Sent via Nexus 5 MultiRom: Cataclysm / Android M
Neuer Download
xposed-sdk22-arm64-20150609.zip
Update
Chroma 06/20/2015 Nexus 5 (hammerhead)
[COLOR=#ff4d4d]Bitte beachten :
unbedingt vor dem flashen des Updates
die DPI auf Stock 480 ändern! [/COLOR]
Changelog: https://docs.google.com/document/d/1c7…dit?usp=sharing
Download: xposed-sdk22-arm64-20150609.zip[/QUOT
Was hat die DPI mit flashen zu tun? Habe den Hinweis schon öfter gesehen aber nicht verstanden
Gesendet von meinem Nexus 5 mit Tapatalk
Er hat den dpi changer wohl aus der Rom genommen.
Deshalb wohl notwendig um nicht in einen bootloop zu kommen.
In Choma system/addon.d ist ein Backup Skript für den Erhalt der DPI während eines "dirty updates". 99-backup.sh
ZitatAlles anzeigen
#!/sbin/shpropfile="/system/etc/backup.conf"
backupfile="/tmp/backup/backup.conf"
backuppath="/tmp/backup"
mkdir -p $backuppath
propbackuppath="$backuppath/prop"
mkdir -p $propbackuppathpersist_lcd_density=1
load_prop() {
if [ -f "$1" ]; then
source "$1"
fi
}backup_prop() {
cp "/system/build.prop" "$propbackuppath/build.prop"
}restore_prop() {
if [ "$persist_lcd_density" = "1" ]; then
if [ -f "$propbackuppath/build.prop" ]; then
local USERLCD=`sed -n -e'/ro\.sf\.lcd_density/s/^.*=//p' $propbackuppath/build.prop`
busybox sed -i "s|ro.sf.lcd_density=.*|ro.sf.lcd_density=$USERLCD|" /system/build.prop
fi
fi
}
D.H. du flashst einfach nur das update, aber die DPI, die du vorher drauf hattest, ist nach dem Reboot erhalten. Deswegen der Hinweis mit der DPI.
BTW. Die 560 DPI ist wohl CopyPasta vom N6. Oder hat jemand schon mal 560 auf dem hammerhead ausprobiert?
Sent via Nexus 5 MultiRom: Cataclysm / Android M
560... Da haste dann wohl nur ein Icon auf dem Homescreen
Gesendet von meinem Nexus 5 mit Tapatalk
Chroma 06/26/2015 Nexus 5 (hammerhead)
Updated: Android-5.1.1_r4 to Android-5.1.1_r5 - http://aosp.changelog.to/android-5.1...-5.1.1_r5.html
...mehr im Changelog
->Changelog: Chroma Changelog - Google Docs
->Download: chroma_hammerhead-ota-2015-06-26.zip | chroma_hammerhead-ota-2015-06-26.zip | by zephiK for Nexus 5
EDIT:
Bekannter Bug: Kamera Knipston verursacht scheinbar nen FC da Google in 5.1.1_r5 da wohl etwas geändert hat, zephiK (Dev) wird das bald möglichst mit der nächsten Build fixen, bis dahin den Ton am besten deaktivieren!
Gesendet von meinem Nexus 5 mit Tapatalk
Hey Konsi , machst du gut hier!!
Bei der Frequenz geht das gerade noch [emoji12]
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!