NOTE & CAUTION:
I'm One X owner, thus I have not test this mod on X+.
I made this patch just for fulfilling self-obligation.
While it should work as expected.
You should wait for experienced user to try and report first if you don't know how to went back to original state.
Click to expand...
Click to collapse
As per title, the patch provide fix for faulty camera parameters reported to 3rd party camera on 4.18 Base ROM.
In case you haven't notice, 3rd party camera can only detect 6 MegaPixels on Android 4.2.2 & Sense 5.
While this has been plaguing 3rd party camera, HTC's stock camera remain intact on 8MP because it utilised internal buildflags to determine camera capabilities.
For awesome conspiracy theorists, this is not intentionally camera lockdown scheme from HTC to force people stay on HTC stock camera. Story telling at second post..
Click to expand...
Click to collapse
To Demostrate, lets look at: Gallery Google 1.1.40012 (AOSP Camera)
L - Before; R - After
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Click to expand...
Click to collapse
How-to:
Just flash it through recovery.
Click to expand...
Click to collapse
Notes:
I'm not responsible for whatever consequences caused by this patch.
Use as you one responsible and use as your will..
Just remember to give me credit and link to the thread, Thanks.
A Reply/PM will always be appreciated.
Credits:
Urgh? No one yet..
Initially I have no interest to seek out for a solution.
However, it caught my back as I incidentally saw following lines from a logcat purposely tracing other issue.
target logcat: cat_and_dog.txt
W/NvCameraSettingsParser( 144): Changed: preview-size: 960x720 -> 1280x720 {176x144,320x240,352x288,480x480,640x480,704x576,720x408,720x480,720x576,768x432,800x448,960x720,960x960,1280x720,1280x752,1360x720}
W/NvCameraSettingsParser( 144): Changed: picture-size: 3264x2448 -> 2688x1520 {320x240,480x480,640x368,640x480,800x600,960x960,1024x768,1280x720,1280x752,1280x960,1088x1088,1440x1080,1456x1088,1536x1536,1600x1200,1836x1080,1920x1080,1952x1952,2048x1152,2048x1360,2048x1536,2448x2448,2592x1456,2592x1520,2592x1920,2592x1944,2592x1952,3}
Click to expand...
Click to collapse
According to infomation, the last correct picture-size parameter was 2592x1952 that is why we get a 6MP picture size.
Why on earth would the camera parameters end with ,3, right?
The answer is obiviously simple enough. The parameters was long enough (over 256 words) and eventually lead to unexpected truncating circumstance.
Well, curiosity got me. I decide to dig out more..
HEX from various of camera.tegra.so. I figured out picture-size-values from them. It is where standard camera API ultimately gets the picture size parameters.
Target library: endeavoru 3.14 camera.tegra.so
320x240,480x480,640x368,640x480,800x600,1024x768,1280x720,1456x1088,2592x1456,2048x1152,640x368,1280x752,1280x960,1440x1080,1600x1200,1836x1080,1920x1080,2048x1152,2048x1360,2048x1536,2592x1456,2592x1520,2592x1920,2592x1944,2592x1952,3264x1840,3264x2448
Click to expand...
Click to collapse
Target library: endeavoru 4.18 camera.tegra.so; new values highlighted
320x240,480x480,640x368,640x480,800x600,960x960,1088x1088,1024x768,1280x720,1456x1088,2592x1456,2048x1152,640x368,1280x752,1280x960,1440x1080,1536x1536,1600x1200,1836x1080,1920x1080,1952x1952,2048x1152,2048x1360,2048x1536,2448x2448,2592x1456,2592x1520,2592x1920,2592x1944,2592x1952,3264x1840,3264x2448
Click to expand...
Click to collapse
It was those new rectangle picture sizes deemed to be culprit, because the parameters list somehow became too long. The addition values should corresponding to the rectangle crop size newly offer by HTC Sense 5 Camera.
I reckon it's safe to live without them because HTC stock camera doesn't really rely on CameraService to obtain picture-size-values. Other camera apps are fully relying on Camera.getParameters() API to obtain picture size parameters however they are unlikely expecting any rectangle picture sizes.
Eventually, I came out with solution: append new rectangle picture sizes as suffix.
Leave and lead them to truncate. Secured 3264x2448, save the world.
Target library: endeavoru 4.18 camera.tegra.so; the solution
320x240,480x480,640x368,640x480,800x600,1024x768,1280x720,1456x1088,2592x1456,2048x1152,640x368,1280x752,1280x960,1440x1080,1600x1200,1836x1080,1920x1080,2048x1152,2048x1360,2048x1536,2592x1456,2592x1520,2592x1920,2592x1944,2592x1952,3264x1840,3264x2448,2448x2448,1952x1952,1536x1536,1088x1088,960x960
Click to expand...
Click to collapse
Because it occuring in tegra HAL, I went on applied checking on X+ (enrc2b).. It appears that we're not alone..
Reserved.
Note for Moderators: I looked through Android Development, Original Android Development and Themes and Apps still not quite sure where this suit the most. Please feel free to move the thread to the right place.
Sideline: AOSP to Sense 5 :: GalleryGoogle 1.1.40012 :: Photo Sphere
Click to expand...
Click to collapse
sorry for my noobish question does the same thing apply on android 4.3 too.
This is exactly the same patch tombriden added into Aosp+ and cm
Sent from my One X+ using Tapatalk 4
anurag09 said:
sorry for my noobish question does the same thing apply on android 4.3 too.
Click to expand...
Click to collapse
Didn't get what you asking. This mod is for Sense not AOSP base ROM.
HTC others devices are all Qualcomm, I don't see there are suffering the same issue.
Lloir said:
This is exactly the same patch tombriden added into Aosp+ and cm
Sent from my One X+ using Tapatalk 4
Click to expand...
Click to collapse
Now I knew... :good:
can't flasg
I'm getting an error in recovery that installation is aborted.
gcarlo443 said:
I'm getting an error in recovery that installation is aborted.
Click to expand...
Click to collapse
Either that you don't have busybox or the zip is damaged.
You can also manually replacing /system/lib/hw/camera.tegra.so on Android using file explorer. Remember to set the correct file permission.
Still 6mp
I replaced camera.tegra.so manually and still 6mp max on 3rd party apps
it works
After replacing the old file of InsertCoin 5 I now have 8 MP with Camera Zoom FX. :good:
gcarlo443 said:
I replaced camera.tegra.so manually and still 6mp max on 3rd party apps
Click to expand...
Click to collapse
Reboot.
how?
what insert coin 5?
---------- Post added at 06:24 PM ---------- Previous post was at 06:17 PM ----------
HebeGuess said:
Reboot.
Click to expand...
Click to collapse
I rebooted twice still same thing
gcarlo443 said:
what insert coin 5?
---------- Post added at 06:24 PM ---------- Previous post was at 06:17 PM ----------
I rebooted twice still same thing
Click to expand...
Click to collapse
I use InsertCoin 5.0-6. I just replaced the camera.tegra.so in /system/lib/hw, changed the permissions to 644 (rw-r--r--) with Root Explorer and rebooted the phone. Now I can additionally select "8,0MP" and "Wide 6,0MP" in Camera Zoom FX (see screenshot below), before that the highest value was "5,1MP".
Finally
Finally working now! Was doing.it wrong lol thankyou so much!
it's an old thread, but I wish to confirm that it works on HOX+ with android 4.2.2 :good:
many thanks!
An off-topic question, if you don't mind. Is there a way to change the intensity/brightness of the flash light while we take photos?
Related
Works on arc and arc s
As they write:
Any modification implies a tad of risk and I am not responsible for any failure that may occur on the phone, but if done right, do not have to have any problem.
It requires:
- Be Root.
- RootExplorer or analog.
Installing the camera:
1. Make a backup of the original and SemcCameraUI.apk CameraExtensionPermission.apk found in system / app / root with the explorer, to have backup in case something goes wrong.
2. Download the modified files I uploaded the zip and unzip in the sd of the phone.
5. Copy the two files modified in the root system explorer /
3. Change the permissions of both files, must be attached as the catch below *.
4. Move the two files to system / app / replacing the original.
5. reboot
*. Permits:
http://s3.subirimagenes.com:81/imagen/previo/thump_70163941.png
and now the camera does not compress images both before a photo and now occupying 2.40 mb 1.40 mb noting an improvement to enlarge the images.
Attached Images
Does it only work on the arc and arc s?
Nice! Works on Neo too! Thank you!!
Works great on neo man, great mod.
Anything improvement on image qualities?
Sent from my MT15i using XDA App
Size in increased for sure, took some random pictures and they were approximately 1,8 MB each.
I can't comment on the quality, seems better but could be a placebo. I need to make some comparison photos to make sure.
iR¡[email protected]!* via Tapatalk
same here ..... size is now almost 1.8 mb ..width and height is same but im not sure about quality.. looks same.... I attached images.
rasgula said:
same here size is now almost 1.8 mb but im not sure about quality.. looks same.... I attached images.
Click to expand...
Click to collapse
How do the a actual photos look?
Any difference in noise levels?
iR¡[email protected]!* via Tapatalk
i think just same nothing change .... i guess only one change just size from 826 KB to almost 1.8 mb
regards
Can someone take 2 picture...one with stock app, one with modded and upload it so we can compare?
Sorry, in my oppinion, if the qualities are almost the same why do we need it to be the lager size instead of the smaller?
Larger size = larger memory we need = longer time to upload or send via bluetooth.
If my memory correct,
Someone already said use with Camera360 the file size is bigger, however the quality nothing improvement, someone point out this is becoz of the camera driver issue, the driver compress the image
So someone said the key point is the SE, I use X10 and Arc
The X10 enlarge the photo is better then Arc, and the X10 take the photo size is bigger than Arc by the stock cam app
So the driver issue may be true
what improvement does this mod apply ?
@larut: u can mod camera with auto-flash for RAY? I need it because RAY dont have auto-flash in stock rom
Pic taken with original camera files
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Pic taken after adding modded files
They seem almost identical.
iR¡[email protected]!* via Tapatalk
Take a picture of something detailed,like grass,a tree...
Sent from my LT18a using Tapatalk
i think original is better
Only the compression is removed. That means there will be less JPEG artifacts. No change in noise reduction/details etc.
will it work on miui roms?
soumya_digi said:
Only the compression is removed. That means there will be less JPEG artifacts. No change in noise reduction/details etc.
Click to expand...
Click to collapse
Maybe the effect will be more noticable when taking a picture in the dark, with lots of noise.
To the Neo owners that have it already:
The Arc's camera is said to make better pictures than ours, do you notice any improvements? Will flash asap.
---------- Post added at 12:04 PM ---------- Previous post was at 11:35 AM ----------
So, I made 3 comparison pics, under different condictions, but some have a bit different lighting conditions. This is because the some clouds went in fornt of the sun, while my phone was rebooting (takes ~3 min. no kidding, it's a shame). Sorry about that.
See for yourself.
http://www.box.com/s/2oq3gvcgoni1jjt2ost7
---------- Post added at 12:06 PM ---------- Previous post was at 12:04 PM ----------
abhisheak.bansal said:
will it work on miui roms?
Click to expand...
Click to collapse
I don't think so, unless you have the same apk's in the system/app folder.
---------- Post added at 12:07 PM ---------- Previous post was at 12:06 PM ----------
soumya_digi said:
Only the compression is removed. That means there will be less JPEG artifacts. No change in noise reduction/details etc.
Click to expand...
Click to collapse
Posted some pics made under low lighting conditions, see for yourself
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Disclaimer: We are not responsible for any damages on your device.
Original Slim Features:
The Real Dark Slim
Notification drawer Shortcuts
Full hardware key rebinding!
Keyboard rotation
SlimCenter
Check out our full feature list here
Changelog
Find our latest Changelog go here
Chat with the slim team and other slim users
IRC: #slimusers @freenode
New to IRC? Don't have a native app? Try the Freenode web client [link] or the Firefox extension Chatzilla [link]
Google+ [link]
Twitter [link]
Facebook [Link]
Installation instructions
For Most Users
Please keep in mind if a special instruction is needed it will be noted in the Changelog
Download the latest build from [here]
Addons ( if you don't have it already) from [here][/URL]]
!Recommended! Full wipe, and manual format /system
Flash ROM and the addons you want, reboot
FAQ
Check out out FAQ before posting! Keeps more common questions answered in one place!
Help us out!
If you want to help us by translating slim to your language check out Crowdin.net and submite your translations.
Or consider a donation.
Thanks!
You can find the full list of credits here
Source
Please visit here for the rom source code.
Kernel source can be found here
Reserved
Reserved2
Thanks Flinny!
Will downloads and backups be moved to /data/media like other 4.2 roms?
Nice to see all the aosp developers starting to come over here!
Sent from my HTC One using Tapatalk 4 Beta
Custom DPI greater than 320?
>>>Hi, any way to make everything bigger? In Settings/Interface/General/LCD Density, I can only select 213, 240, or 320, but the HTC One can support much higher dpi.... 468dpi I believe.
oops... Nevermind, found it.
A big thanks to all the Devs for developing for this incredible device. Now that we have S Off the opportunities are nearly endless for this device.
Sent from my One using xda app-developers app
everything looks to be working great for me except the camera quality seems noticeably worse which i assume is mainly HTCs fault with the whole ultrapixel situation.
i guess after the official stock experience leaks everything will be fine and dandy.
---------- Post added at 01:42 AM ---------- Previous post was at 01:38 AM ----------
my lock screen doesn't look like the one pictured tho. i would like it to look similar, any advice?
jwebb1111 said:
everything looks to be working great for me except the camera quality seems noticeably worse which i assume is mainly HTCs fault with the whole ultrapixel situation.
i guess after the official stock experience leaks everything will be fine and dandy.
---------- Post added at 01:42 AM ---------- Previous post was at 01:38 AM ----------
my lock screen doesn't look like the one pictured tho. i would like it to look similar, any advice?
Click to expand...
Click to collapse
If you want your lockscreen to look like the screenshot, you'll have to go to Settings - Interface - Lock screen and make adjustments in there. I haven't tried it, so there may be another area you need to modify. You'll need to make sure "Screen Security - Show slider before secure unlock" is on and I suspect that you'll also need to modify notification drawer to have the row of icons above the carousel.
neo_lithic3K said:
If you want your lockscreen to look like the screenshot, you'll have to go to Settings - Interface - Lock screen and make adjustments in there. I haven't tried it, so there may be another area you need to modify. You'll need to make sure "Screen Security - Show slider before secure unlock" is on and I suspect that you'll also need to modify notification drawer to have the row of icons above the carousel.
Click to expand...
Click to collapse
i'm talking about aesthetic rather than shortcuts and slider. here is wha tmine looks like. it behaves rather erratically as well.
Is their any way to make the FONTS bigger? This ROM is cool but the FONTS are so small you can barely see anything on your phone...
falcon26 said:
Is their any way to make the FONTS bigger? This ROM is cool but the FONTS are so small you can barely see anything on your phone...
Click to expand...
Click to collapse
You'll need to go into Interface-General-LCD Density and change it there. I changed mine to 468.
Can't turn on NFC
Anyone else having a problem with NFC? I can't seem to turn it on. I can check the NFC checkbox which then makes the text grey. It stays like that for some time but eventually, it unchecks itself and text turns back to white.
neo_lithic3K said:
Anyone else having a problem with NFC? I can't seem to turn it on. I can check the NFC checkbox which then makes the text grey. It stays like that for some time but eventually, it unchecks itself and text turns back to white.
Click to expand...
Click to collapse
Yeah I am too. I just stays greyed out.
I am also getting some funky colors on the camera. The ffc has a greenish tint and the regular camera is has a purple tint.
Sent from my One using xda premium
s33d1ing said:
Yeah I am too. I just stays greyed out.
I am also getting some funky colors on the camera. The ffc has a greenish tint and the regular camera is has a purple tint.
Sent from my One using xda premium
Click to expand...
Click to collapse
I don't take many pictures with the camera but I checked and I do see a purplish tint with the ffc. But, I don't see any tints with the regular camera.
neo_lithic3K said:
Anyone else having a problem with NFC? I can't seem to turn it on. I can check the NFC checkbox which then makes the text grey. It stays like that for some time but eventually, it unchecks itself and text turns back to white.
Click to expand...
Click to collapse
hmm works for me on a ul. Everyone on a att has this problem?
Can you provide a logcat?
Thanks,
Nick.
Flinny said:
hmm works for me on a ul. Everyone on a att has this problem?
Can you provide a logcat?
Thanks,
Nick.
Click to expand...
Click to collapse
Ok sent. THX I'm on AT&T.
neo_lithic3K said:
Ok sent. THX I'm on AT&T.
Click to expand...
Click to collapse
Thanks I will take a look when I get a second New build is up can you confirm it's still broken in the mean time?
Nick.
Flinny said:
Thanks I will take a look when I get a second New build is up can you confirm it's still broken in the mean time?
Nick.
Click to expand...
Click to collapse
No problem. I'll take a look this weekend.
Still broken for me on 6.9. Sorry I haven't got around to making a logcat.
Edit: Ok I made a logcat and attached it.
Sent from my One using xda premium
-=Welcome To=-
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
-=About Illusion=- Illusion is based on android lollipop with new code being implemented on a regular basis. Quality is the first priority here and it shows. We are dedicated to bringing the best of android to your device with additions from across the android community in a clean user friendly way. So go ahead give it a flash and rest easy knowing you can run our stuff comfortably without worry.
-=Credit/Thanks=-
Credit goes out across the board to all the android community. but the majority of it will be Euphoria and Cyanogenmod. We include most major features from both these teams along with others like Liquid Smooth so Thank you for being open source.
New wallpaper by : Austin Kinnetz
-=Issues/Bugs=- Current bugs
-=Changelog=-
Check the about phone screen for changelog
Little hint for everyone... Ddt2sleep
Long press homescreen
Slide up or press the 3 little dots
Launcher settings:
Gestures
Double tap to....... Sleep
And more
-=ScreenShots=- !!Coming Soon!!
-=Source=-
KERNEL / ROM
-=Downloads=- Latest Illusion
-=Donate=-
Donations are awesome and help in many ways so if you like what we’ve got going on feel free to make a small donation.
-=Google + Community=-
Visit our community for continued support and exclusive releases
Illusion Community
Reserved
When adjusting custom kernel values I recomend Faux clock.
Please be careful with voltage control.
This look awesome, I will def try after work tonight! Thanks for your hard work! I see that you have "Lots more kernel stuff", I was wondering if you were able to get the QI charging bug worked out? I believe its a kernel issue. please correct me if I am wrong.
Thanks again
This is for a fact the smoothest LP rom yet, because the others are only fully smooth if you use lionheart governor which uses more battery. This rom is smooth using interactive. Also love the expanded mode per app feature, I missed it so bad.
Misc battery drain present?
JPBeard21 said:
Misc battery drain present?
Click to expand...
Click to collapse
Not on any of the other devices..
I think that's a cm thing.
$droyd$ said:
Not on any of the other devices..
I think that's a cm thing.
Click to expand...
Click to collapse
I thought it was more of an AOSP thing. There was speculation it was related to NFC or WiFi, possibly rild?
---------- Post added at 05:06 PM ---------- Previous post was at 05:04 PM ----------
JPBeard21 said:
I thought it was more of an AOSP thing. There was speculation it was related to NFC or WiFi, possibly rild?
Click to expand...
Click to collapse
Edit: Saw the Misc battery drain bug across many devices on "unofficial" (AOSP) builds...
JPBeard21 said:
I thought it was more of an AOSP thing. There was speculation it was related to NFC or WiFi, possibly rild?
---------- Post added at 05:06 PM ---------- Previous post was at 05:04 PM ----------
Edit: Saw the Misc battery drain bug across many devices on "unofficial" (AOSP) builds...
Click to expand...
Click to collapse
There is no aosp builds for this device.. All but one other ROM is based on cm sorry to disappoint.
DPI
I couldn't find the file in the prop build to change the dpi, it appeared to be missing, so I created a new one and named it "ro.sf.lcd_density" and set the value at "640", then rebooted. Worked like a charm!
$droyd$ said:
There is no aosp builds for this device.. All but one other ROM is based on cm sorry to disappoint.
Click to expand...
Click to collapse
Isn't CM based on AOSP? Either way was just curious about battery drain bug but I enjoy the OT discussion
Lazereth said:
I couldn't find the file in the prop build to change the dpi, it appeared to be missing, so I created a new one and named it "ro.sf.lcd_density" and set the value at "640", then rebooted. Worked like a charm!
Click to expand...
Click to collapse
In Display settings there's a DPI changer baked in.. But yes that's why the bug is present because the line does not exist.. I've fixed the source so all updates will be good.
That's what I get for not reading the description well...
Stock messaging app fc'ing for anyone else? The one with the green and white striped caption bubble like icon...
ohlin5 said:
Stock messaging app fc'ing for anyone else? The one with the green and white striped caption bubble like icon...
Click to expand...
Click to collapse
Works for me ..
ohlin5 said:
Stock messaging app fc'ing for anyone else? The one with the green and white striped caption bubble like icon...
Click to expand...
Click to collapse
I've had no fc at all and I've unfortunately been using it for over an hr with my boss..lol
@$droyd$ .. I'm truly impressed and very excited about your rom!!
The only issue I've had so far is the gps icon sticking after reboot.. I know there's a fix around here somewhere though.
Many thanks and check your donation box later..
$droyd$ said:
Works for me ..
Click to expand...
Click to collapse
Lol weird...went into app manager, forced stopped it, launched it again and works fine now
Kris Nelson said:
I've had no fc at all and I've unfortunately been using it for over an hr with my boss..lol
@$droyd$ .. I'm truly impressed and very excited about your rom!!
The only issue I've had so far is the gps icon sticking after reboot.. I know there's a fix around here somewhere though.
Many thanks and check your donation box later..
Click to expand...
Click to collapse
Yeah the GPS thing seems to come and go.. I think I can fix it for the next release.. I've also committed a change for the hangouts call bug to fix it in source and DPI issue..
Thanks for the input.
$droyd$ said:
Yeah the GPS thing seems to come and go.. I think I can fix it for the next release.. I've also committed a change for the hangouts call bug to fix it in source and DPI issue..
Thanks for the input.
Click to expand...
Click to collapse
Alright, so let me throw another one at you (or anyone else) - I've had this issue on every aosp-based ROM I've used so far, but if you have you location set to battery saving, then flip location off and back on again, does the setting revert back to high accuracy for everyone else?
Also having an issue where things appear crazy off scale...see the upper right & left buttons, and the Swiftkey keyboard in the following shots I'm posting
Hint#
The included illusion launcher has settings that will enable you to have gesture sleep (double tap)
Please, any one have ported systemui for Note 4 N910C from s6 with name wifi on button togle wifi???
radioxmen said:
Please, any one have ported systemui for Note 4 N910C from s6 with name wifi on button togle wifi???
Click to expand...
Click to collapse
There's an active work to port S6 firmware to our Note 4. It's called "GlamourROM" and it's made by the XDA user @henrylife
While the rom is working, there're actually some major bugs here and there:
1) Front camera doesn't work
2) Grid View in launcher
3) SMS crash while writing longer messages
4) Framework's missaligned layouts
5) S-Pen doesn't properly work/it's not enabled in settings
6) Lockscreen effects
7) Automatic brightness
You can see all the work here https://www.facebook.com/glamourrom Cheers
yoniinfante said:
There's an active work to port S6 firmware to our Note 4. It's called "GlamourROM" and it's made by the XDA user @henrylife
While the rom is working, there're actually some major bugs here and there:
1) Front camera doesn't work
2) Grid View in launcher
3) SMS crash while writing longer messages
4) Framework's missaligned layouts
5) S-Pen doesn't properly work/it's not enabled in settings
6) Lockscreen effects
7) Automatic brightness
You can see all the work here https://www.facebook.com/glamourrom Cheers
Click to expand...
Click to collapse
Hmm... why this comment feels like a deja-vu to me?
galaxynote2 said:
Hmm... why this comment feels like a deja-vu to me?
Click to expand...
Click to collapse
haaaaaa, you got me hahahahahahaha, I hope ur not bad bro lol
yoniinfante said:
haaaaaa, you got me hahahahahahaha, I hope ur not bad bro lol
Click to expand...
Click to collapse
Neh, no problem! If it helps people it's fine to me :good:
yoniinfante said:
There's an active work to port S6 firmware to our Note 4. It's called "GlamourROM" and it's made by the XDA user @henrylife
While the rom is working, there're actually some major bugs here and there:
1) Front camera doesn't work
2) Grid View in launcher
3) SMS crash while writing longer messages
4) Framework's missaligned layouts
5) S-Pen doesn't properly work/it's not enabled in settings
6) Lockscreen effects
7) Automatic brightness
You can see all the work here https://www.facebook.com/glamourrom Cheers
Click to expand...
Click to collapse
The problem is 64bit libraries which are unable to initialize, I created the framework files from scratch, tons of class edit, with my Note 4 I'm not going to retry to hack kernel for 64-bit support, almost fully bricked mine, thanks to god that it managed to boot 3hrs later, it was in bricked-state already, if I can get another Note 4 for kernel hacking I would mess with it otherwise it's a big no...
All SPen support is in my ROM present, although with the Air Commander, it's not a ROM "port" it's a total recreation of the framework and hundreds of hours "test and trial", if I get Package update problems solved, a beta release will be uploaded...
Oh and btw Samsung totally cleaned the frameworks and apps from all the "Gimmicky" things, their listeners aren't there, that's a lot of manual implementing, but I will look into it when I'm done with the initial release of it, Cheers!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
henrylife said:
The problem is 64bit libraries which are unable to initialize, I created the framework files from scratch, tons of class edit, with my Note 4 I'm not going to retry to hack kernel for 64-bit support, almost fully bricked mine, thanks to god that it managed to boot 3hrs later, it was in bricked-state already, if I can get another Note 4 for kernel hacking I would mess with it otherwise it's a big no...
All SPen support is in my ROM present, although with the Air Commander, it's not a ROM "port" it's a total recreation of the framework and hundreds of hours "test and trial", if I get Package update problems solved, a beta release will be uploaded...
Oh and btw Samsung totally cleaned the frameworks and apps from all the "Gimmicky" things, their listeners aren't there, that's a lot of manual implementing, but I will look into it when I'm done with the initial release of it, Cheers!
Click to expand...
Click to collapse
if you can help here we all gonna appreciate it so much :highfive::fingers-crossed:
http://forum.xda-developers.com/not...ers-only/wip-64bit-build-exynos-5433-t3090926
yoniinfante said:
if you can help here we all gonna appreciate it so much :highfive::fingers-crossed:
http://forum.xda-developers.com/not...ers-only/wip-64bit-build-exynos-5433-t3090926
Click to expand...
Click to collapse
I said I can't risk with losing the phone, once I brick it it's gone and noone pays it back to me, sorry
@henrylife you made such an amazing work and put a lot of time of your personal life. Once you publish the Rom, I recommend you to put a Paypal donation button in your profile because you really deserve them. I don't have paypal and I dont have a proper age to donate but I know that a lot of people would donate to you without problem :good: .
What's the state of the rom right now?
galaxynote2 said:
@henrylife you made such an amazing work and put a lot of time of your personal life. Once you publish the Rom, I recommend you to put a Paypal donation button in your profile because you really deserve them. I don't have paypal and I dont have a proper age to donate but I know that a lot of people would donate to you without problem :good: .
What's the state of the rom right now?
Click to expand...
Click to collapse
I have the donation link under the profile, about the state of the ROM, hmm after the video it will be released as it is, it's my wish to put such a video to youtube and hopefully it gets popular
henrylife said:
I have the donation link under the profile, about the state of the ROM, hmm after the video it will be released as it is, it's my wish to put such a video to youtube and hopefully it gets popular
Click to expand...
Click to collapse
can we have the youtube link? tanks:fingers-crossed:
This fixes the crash that happens when switching to the front facing camera in Google Camera.
Tested on Stock oxygen Oreo rom
Root required
attached two files one magisk other just contains the lib to be copied with a file manager to
Code:
/system/vendor/lib
FRONTCAM_PORTRAIT_FIX_OP3T[1].zip - Magisk
OP3 - Oreo https://forum.xda-developers.com/showpost.php?p=75402132&postcount=45
OP5/5T https://forum.xda-developers.com/showpost.php?p=75403078&postcount=46
if you like my work zend me a beer
Im already making an backup , ill give my feedback after install! thank you for your work in advance !!!!
---------- Post added at 01:09 AM ---------- Previous post was at 12:48 AM ----------
rrusl1 said:
Im already making an backup , ill give my feedback after install! thank you for your work in advance !!!!
Click to expand...
Click to collapse
i mae an backup , then wiped cache/dalvik - then installed gcam , then fix ,- reboot
Fix woked , but HDR+ is working only when portrait mode is on , and photos are very "Blured" , but still its amazing progresss , thank you very much for this !!!!
---------- Post added at 01:44 AM ---------- Previous post was at 01:09 AM ----------
Ok , for all front cam features working u will need :
1.This vers of gcam https://www.celsoazevedo.com/files/android/google-camera/f/changelog40/
2.Those settings -
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
@defcomg
It's good to have you working a little for our device. Thanks for the impressive work!
Since you seem to be the only dev with deep knowledge on android camera libs, I would like to hear your opinion on this issue.
Camera2 API Bugs
It has been reported counteless times, I've myself tweeted oneplus and carl pei about the issue, but nothing official ever came out.
There are two big issues right now. The crash described in that post under certain conditions (which also makes Gcam crash wheen shooting bright light using some of the hdr+ enhanced profiles;
The second one actually brokes the third party manual camera experience. IF you shoot under camera2 api using full auto, photos will come right (as gcam can do), even when using ISO above 799 (auto picked from software). Once you try manual controls, iso inputs above 799 will be the same as 799. What does it mean? We actually can't use a third party camera like filmic pro or cinema4k under low light settings or we can't use more advanced photo cams, like camera fv-5, to shoot low light with manual controls (which have some extras that stock cam lacks like the intervalometer).
Let me say again. Don't read this as a request. We just would love to have a word if it can be easily fixable, or even fixable, by someone who might have the time to spend.
Thanks again, and sorry for the little off-topic.
rdNNNN said:
@defcomg
It's good to have you working a little for our device. Thanks for the impressive work!
Since you seem to be the only dev with deep knowledge on android camera libs, I would like to hear your opinion on this issue.
Camera2 API Bugs
It has been reported counteless times, I've myself tweeted oneplus and carl pei about the issue, but nothing official ever came out.
There are two big issues right now. The crash described in that post under certain conditions (which also makes Gcam crash wheen shooting bright light using some of the hdr+ enhanced profiles;
The second one actually brokes the third party manual camera experience. IF you shoot under camera2 api using full auto, photos will come right (as gcam can do), even when using ISO above 799 (auto picked from software). Once you try manual controls, iso inputs above 799 will be the same as 799. What does it mean? We actually can't use a third party camera like filmic pro or cinema4k under low light settings or we can't use more advanced photo cams, like camera fv-5, to shoot low light with manual controls (which have some extras that stock cam lacks like the intervalometer).
Let me say again. Don't read this as a request. We just would love to have a word if it can be easily fixable, or even fixable, by someone who might have the time to spend.
Thanks again, and sorry for the little off-topic.
Click to expand...
Click to collapse
Hmm this might need logs but you can do this
Add these to build.prop
persist.camera.cafscan=5 persist.camera.hal.debug=5 persist.camera.q3a.debug=5 persist.camera.sensor.debug=5 persist.camera.stats.aec.debug=5 persist.camera.stats.q3a.debug=5
Reboot
Download Terminal Emulator from playstore
Type su
Then Type dumpsys media.camera > /sdcard/opcam.txt
Then from /vendor/lib/libmmcamera_imx298**.so
Attach those files as well logcat after using the camera with described I'll see I can do anything
OP5/5T Test
Test Fix for the Op5/5T
FRONTCAM_PORTRAIT_FIX_OP5T.zip - Magisk
OnePlus 3?
sasanksai said:
OnePlus 3?
Click to expand...
Click to collapse
It's not a magisk zip extract .so file and try
defcomg said:
Test Fix for the Op5/5T
FRONTCAM_PORTRAIT_FIX_OP5T.zip - Magisk
Click to expand...
Click to collapse
resulted in purple pics. (not only on gcam, tried open cam and snap cam as well)
I just tried it with the ROM NOS on the 28th and it works very well!
defcomg said:
Test Fix for the Op5/5T
FRONTCAM_PORTRAIT_FIX_OP5T.zip - Magisk
Click to expand...
Click to collapse
Purple pics and portrait does not work no images are takes when shutter button is tapped do you want any logs?
Fixed on GCam5.1.018-Arnova8G2-V1.6.
Working nice.best work.only 1 issue that the front portrait pic is good but the person face is not so clear in pic.
Dedojyoti said:
Working nice.best work.only 1 issue that the front portrait pic is good but the person face is not so clear in pic.
Click to expand...
Click to collapse
front camera doesnt autofocus , focus by pressing then take picture
defcomg said:
It's not a magisk zip extract .so file and try
Click to expand...
Click to collapse
Camera force closes when using front HDR+ on op3
Front Portrait works fine
Front portrait works very much fine...?
Apk I have used is: GCam5.1.018-Arnova8G2-V1.6 (no config needed)
From this link: https://www.celsoazevedo.com/files/android/google-camera/
defcomg said:
It's not a magisk zip extract .so file and try
Click to expand...
Click to collapse
Camera FC
There are two zips for 5t. Which one to flash ??
defcomg said:
Test Fix for the Op5/5T
FRONTCAM_PORTRAIT_FIX_OP5T.zip - Magisk
Click to expand...
Click to collapse
Hi, as reported getting the purple tint when taking pictures on front cam with or without HDR+.
Here I send you the logs when entering the app and taking a pic with HDR+ on.
Apk Used: MGC_5.1.018.177470874.41362666__A7.0-8.1_MI5S_v2e.apk
I send 2 pics to show HDR+ is actually working.
I tried installing the magisk module but I am getting error 2 ( using Z-Unleashed, 8.1, TWRP 3.2.1), any guidance will be greatly appreciated.
Thanks for the awesome work.
lostdiamond said:
I tried installing the magisk module but I am getting error 2 ( using Z-Unleashed, 8.1, TWRP 3.2.1), any guidance will be greatly appreciated.
Thanks for the awesome work.
Click to expand...
Click to collapse
Same here on my 5t. A big thumbs for the hard work but need guidance.