Can you guys kindly post up the contents of this file please. I have edited it where it lives in;
Application Data> Manila>
But I also have a copy of the same file in the windows folder, should both be exactly the same?
Original:
PHP:
<?xml version="1.0" encoding="utf-16"?>
<InternetPortal>
<IncludeUserFavorites>True</IncludeUserFavorites>
</InternetPortal>
Modified:
PHP:
<?xml version="1.0" encoding="utf-16"?>
<InternetPortal>
<IncludeUserFavorites>True</IncludeUserFavorites>
<Banner
DefaultImagePath="\Windows\HTC\Assets\Images\InternetPortal\banner.qtc"
SelectedImagePath="\Windows\HTC\Assets\Images\InternetPortal\banner_selected.qtc"
Text="Launch Browser"
Width="480"
Height="215" />
</InternetPortal>
What the modified version was doing was causing what looked like a second opera 'loading' image to appear twice at the same time one on top of the other but slightly lower and it had the 'wait' scrolling bar which it never did before. strange...
Should it read:
PHP:
<?xml version="1.0" encoding="utf-16"?>
<InternetPortal>
<IncludeUserFavorites>True</IncludeUserFavorites>
<Banner>DefaultImagePath="\Windows\HTC\Assets\Images\InternetPortal\banner.qtc"
SelectedImagePath="\Windows\HTC\Assets\Images\InternetPortal\banner_selected.qtc"
Text="Launch Browser"
Width="480"
Height="215"</Banner>
</InternetPortal>
Anyone willing to put what they got?
I think this might vary from ROM to ROM but this is what one of mine looked like before I stopped using Manila
Code:
<?xml version="1.0" encoding="utf-16"?>
<InternetPortal>
<IncludeUserFavorites>True</IncludeUserFavorites>
<Banner
DefaultImagePath="\Windows\HTC\Assets\Images\InternetPortal\banner.qtc"
SelectedImagePath="\Windows\HTC\Assets\Images\InternetPortal\banner_selected.qtc"
NavigateUrl="www.google.com"
Text="Launch Opera Browser"
Width="480"
Height="215" />
<OperatorLinks>
</OperatorLinks>
</InternetPortal>
I think you're right. The funny thing is, if i have the following line;
PHP:
NavigateUrl="www.google.com"
I get the correct page, but it also launches a blank page.
Just updated opera mobile to 9.7 and the issues I was having has now stopped. Ta
Hi there, so I have heard there's some way to write sh scripts for android?
I am wanting to make an easy way to randomly change one line in an XML file located on the flash. Meaning it'll need su priviledges.
Basically I'm wanting to make something that'll change the mobile id for grooveshark with one touch, so the trial wont expire (why oh why don't they go to their usual ad supported method?)
I want to make a shortcut on my home screen that I can touch to to reset my trial
Any pointers?
These are the contents of the XML file in /data/data/com.grooveshark.android.v1/
Grooveshark.xml:
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<string name="cc4">8765432198</string>
<string name="cc1">0</string>
<string name="cc2">0</string>
<boolean name="hasTrialStarted" value="true" />
<string name="cc3">0</string>
<int name="splashSponsoredExpires" value="0" />
<boolean name="trialHasExpired" value="false" />
<string name="cid">229</string>
<string name="loginUnPwToken">5f4dcc3b5aa765d61d8327deb882cf99</string>
<string name="username">username</string>
<string name="sessionID">c3a5a6eca887891b9bf69687badb7531</string>
<long name="mobileID" value="555554" />
<int name="sponsoredSplashCount" value="0" />
<int name="trialExpiresTime" value="1382277664" />
<int name="splashSponsorID" value="0" />
<boolean name="gs_tos_bool" value="true" />
<int name="trialNumPlays" value="0" />
</map>
I changed any numbers that'd allow you to auto log in as me
The important part is: <long name="mobileID" value="555554" />
that value has to change whenever your trial expires.
Can anyone give me some pointers? I don't need a tutorial, just an example of shell scripts on the home screen of android.
Well, I have an update. I couldn't find any good reference for shell scripts on linux, so I went ahead and just set up the SDK. I don't have too much java experience, bt I was able to get the interface made pretty easily using the online resources. Now I simply need to make the button in the app death the xml file, find that string and replace it with a random number. I anyone has some good examples of how to search and edit the contents of a file, that'd be awesome. Any takers?
Sent from my DROIDX using XDA App
any new??
Modding - Tweaks - General Changes - Information Sharing
Hi all firstly i would like to say i am very much still a learner when it come to Android modding and have only been doing this for a couple of months as something new to keep me learning, This is just a thread i am using to keep some of the information and edits i utilise, due to the fact i have 6 kids busy life and bad memory i thought it a good idea to keep this somewhere besides my PC for future reference.
Thread Requirements.
1. Basic knowledge of compiling and decompiling apk and jar files so they can be edited.
2. Notepad++ Download
3. APK editing tool - I have been using APK Multi Tool Version 2.0 WIP
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
I will start with CustomSettings.apk as i am editing quite often at this time,
I take no credit for this amazing apk that credit goes completely to ficeto
All drawable icons unless already included will have to be added by the modder
Adding CustomSettings.apk to SecSettings
Firstly you will need to register customsettings to your system to do this
1. pull/extract your SecSettings.apk and decompile it
2.open res/xml/display_headers add line anywhere in display_headers ( where you place it will vary where its shown in phone menu )
Example i placed mine just after the line
Code i placed mine after
Code:
<header android:id="@id/setting_search">
<intent android:targetPackage="com.android.settings" android:targetClass="com.android.settings.search.SearchMain" />
</header>
Code to add to display_headers
Code:
<header android:title="@string/BlaizzrRom" />
<header android:icon="@drawable/ic_settings_blaizzr" android:title="@string/Rom_Ext_Fea">
<intent android:targetPackage="com.ficeto.customsettings" android:action="android.intent.action.MAIN" android:targetClass="com.ficeto.customsettings.RandomActivity" />
</header>
Now open res/values/strings.xml and add these lines, You can change the highlighted text in RED to whatever you want to display in you'r menu, The GREEN highlight text is the Category text
Code to add to Strings[/B
Code:
<string name="Rom_Ext_Fea">[COLOR="Red"]Extended Features[/COLOR]</string>
<string name="BlaizzrRom">[COLOR="Lime"]Blaizzr Rom Settings[/COLOR]</string>
Save\ Recompile Secsettings\ Ensure CustomSettings.apk is already on phone and permissions set correct, push SecSettings to phone set permissions restart and you should now have your extended menu displayed.
It wont really do much ATM until there are some options added..
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Naming CustomSettings Menu
Once you have CustomSettings registered to your system you may want to rename to new menu to better suit your custom rom, To do this
1. decompile Customsettins.apk
2. go res/value/strings.xml
3 Find the entry named " app_name " change this to whatever you want the new menu to be registered as within your system.
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
CustomSettings clickable changing menu headers ( pics )
This one has abit more to it to follow, i will try and make it easy to understand ( sorry if it gets confusing )
1. select 2 pics you wish to use for your headers, name them to easily identify, preferably bnp format but it does not matter to much, i have used gif,jpeg and other with success ( gifs dont animate though )
2. add selected pics to customsettings/res/drawable
3. in same drawable folder create 2 new xml files call these anything you like but it may be usefull to name them something like "rombanner01" & rombanner02 for easy callback
4. in rombanner01.xml add this code ( red highlight area is where you add the name of your pic, same pic name in both entries )
Code:
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/[COLOR="Red"]addsecondpicnamehere[/COLOR]" />
<item android:state_selected="true" android:drawable="@drawable/[COLOR="Red"]addsecondpicnamehere[/COLOR]" />
<item android:drawable="@drawable/rombanner02" />
</selector>
5. in rombanner02 add this code ( red highlight area is where you add the name of your other pic )
Code:
<?xml version="1.0" encoding="utf-8"?>
<animation-list android:oneshot="true"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="3000" android:drawable="@drawable/[COLOR="Red"]addfirstpicnamehere[/COLOR]" />
</animation-list>
6.goto res/loyout and create a new xml file ( name it anything you want for this guide i will use rombanner.xml) add this code
In this code set android:layout_width to the screen width of your device, --- change android:layout_height to the height you want your pic to display at.
Code:
<?xml version="1.0" encoding="utf-8"?>
<ImageView android:layout_gravity="center" android:paddingBottom="3.0dip" android:clickable="true" android:layout_width="1080.0px" android:layout_height="225.0px" android:src="@drawable/rombanner01" android:scaleType="fitXY"
xmlns:android="http://schemas.android.com/apk/res/android" />
7. Now ensure all these new xml files are saved. Now open res/xml/prefences.xml
add this code right below the xmlns:android="http://schemas.android.com/apk/res/android"> line of text ( highlighed red text is where you add the name of your new layout.xml )
Code:
<PreferenceScreen android:layout="@layout/[COLOR="Red"]rombanner[/COLOR]" android:selectable="true" android:key="rom_logo" />
Now recompile your customsettings push to phone and set correct properties and check your new menu you should now have your pic at top of new menu page and when you press it it should switch to your alt picture.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
CustomSettings general pages setup
Everything related to page setup is basically controlled by the res/xml/preferences.xml
to setup a basic page you would use code ( the space between the code would be filled with your code for on that page.
Code:
<PreferenceScreen android:title="Basic Apps Control" android:summary="Control over some of the included applications">
</PreferenceScreen>
Above code will create a page called Basic Apps Control, with a subtext of Control over some of the included applications
CustomSettings adding sub-header / Category
This is used to split pages into sub Categories the code is
Code:
<PreferenceCategory android:title="Application Selection">
</PreferenceCategory>
Above code will create a category called Application selection.
To utilise together we just add them together, Firstly we create the page itself then we add the sub category like so
Code:
<PreferenceScreen android:title="Basic Apps Control" android:summary="Control over some of the included applications">
<PreferenceCategory android:title="Application Selection">
</PreferenceCategory>
</PreferenceScreen>
adding your code between them will add the that item to this page in this category. eg
Code:
<PreferenceScreen android:title="Basic Apps Control" android:summary="Control over some of the included applications">
<PreferenceCategory android:title="Application Selection">
<Preference android:icon="@drawable/ic_SuperSu" android:title="SuperSu" android:key="activity;eu.chainfire.supersu;eu.chainfire.supersu.MainActivity" android:summary="Root Access Control" />
</PreferenceCategory>
</PreferenceScreen>
Will add a tab for superSu and launch the application upon being selected
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This is just the start there is much more to come, sorry i can only add info as i get chance and i will continue to add as i go, if there are any questions or anything else please ask, and if you have any guides you would like to share then please let me know and i will add/link them
Hope this helps someone somewhere and not just me lol
BongOfWar
3minit quick launch and S Finder, Quick Connect on one panel with toggle Android L
First i take no credit for the quick launch mod that belongs to @gharrington
You will need to download 3minit quick launcher smali from here
Just grab the smali files as the codes on there do not work for Lillipop.
now decompile SystemUI.apk and goto..
SystemUI.apk\res\layout open quick_connect_layout_zero.xml
Change it to following:
Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:id="@id/sfinder_qconnect_layout" android:background="@drawable/quick_connect_layout_bg" android:focusable="true" android:descendantFocusability="afterDescendants" android:layout_width="fill_parent" android:layout_height="@dimen/finder_connect_layout_height"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<HorizontalScrollView android:scrollbars="none" android:layout_width="fill_parent" android:layout_height="@dimen/3minit_quick_layout_height">
<com.android.systemui.statusbar.policy.quicklaunch.QuickLaunchContainer android:gravity="center" android:layout_width="wrap_content" android:layout_height="@dimen/3minit_quick_layout_height" android:layout_centerHorizontal="true" />
</HorizontalScrollView>
<LinearLayout android:orientation="vertical" android:id="@id/sfinder_qconnect_layout" android:focusable="true" android:descendantFocusability="afterDescendants" android:layout_width="fill_parent" android:layout_height="@dimen/finder_connect_layout_height">
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:paddingLeft="@dimen/finder_connect_button_padding_right" android:paddingTop="@dimen/finder_connect_button_padding_top" android:paddingRight="@dimen/finder_connect_button_padding_left" android:paddingBottom="@dimen/finder_connect_button_padding_bottom" android:focusable="true" android:descendantFocusability="afterDescendants" android:layout_width="fill_parent" android:layout_height="wrap_content">
<RelativeLayout android:id="@id/sfinder_button_layout" android:background="@drawable/ripple_drawable" android:focusable="true" android:nextFocusLeft="@id/quick_connect_button_layout" android:nextFocusRight="@id/quick_connect_button_layout" android:clickable="true" android:layout_width="0.0dip" android:layout_height="@dimen/finder_connect_button_height" android:layout_weight="0.5" android:layout_marginEnd="9.0dip">
<TextView android:textSize="@dimen/tw_quick_panel_sfinder_qconnect_button_text_size" android:textColor="@drawable/tw_quick_panel_sfinder_qconnect_button_text_color" android:gravity="center" android:id="@id/sfinder_button_big" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/accessibility_sfinder_button" android:singleLine="true" android:drawableLeft="@drawable/tw_quick_panel_quick_sfinder_button_image" android:drawablePadding="@dimen/tw_quick_panel_sfinder_qconnect_drawable_padding" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:fontFamily="sec-roboto-light" />
</RelativeLayout>
<ImageView android:id="@id/expanded_divider_3" android:background="@color/quickpanel_button_divider_color" android:layout_width="1.0dip" android:layout_height="17.0dip" android:layout_marginTop="18.0dip" android:layout_marginBottom="18.0dip" android:alpha="@dimen/quickpanel_button_divider_alpha" android:layout_toStartOf="@id/sfinder_button_layout" />
<RelativeLayout android:id="@id/quick_connect_button_layout" android:background="@drawable/ripple_drawable" android:focusable="true" android:nextFocusLeft="@id/sfinder_button_layout" android:nextFocusRight="@id/sfinder_button_layout" android:clickable="true" android:layout_width="0.0dip" android:layout_height="@dimen/finder_connect_button_height" android:layout_weight="0.5" android:layout_marginStart="9.0dip">
<TextView android:textSize="@dimen/tw_quick_panel_sfinder_qconnect_button_text_size" android:textColor="@drawable/tw_quick_panel_sfinder_qconnect_button_text_color" android:gravity="center" android:id="@id/qconnect_button_big" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/accessibility_qconnect_button" android:singleLine="true" android:drawableLeft="@drawable/tw_quick_panel_quick_qconnect_button_image" android:drawablePadding="@dimen/tw_quick_panel_sfinder_qconnect_drawable_padding" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:fontFamily="sec-roboto-light" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
Now goto SystemUI\res\values\dimens.xml search for "finder_connect_layout_height"
Change code in Red, Add code in Green
Code:
<dimen name="finder_connect_layout_height">[COLOR="Red"]132.0dip[/COLOR]</dimen>
[COLOR="Green"]<dimen name="3minit_quick_layout_height">75.0dip</dimen>[/COLOR]
Toggle
Goto SystemUI\smali\com\android\systemui\statusbar\phone\PhoneStatusBar.smali
search for code "iget-object v8, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mQconnectSfinderView:Lcom/android/systemui/statusbar/QconnectSfinderView;
" (( I use this line as only had 1 line of this in smali ) if you find more than 1 of this line let me know and i will edit guide )
Directly below this code add
Code:
iget-object v0, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mContext:Landroid/content/Context;
invoke-virtual {v0}, Landroid/content/Context;->getContentResolver()Landroid/content/ContentResolver;
move-result-object v0
const-string v1, "3minit_quick_connect_toggle"
const/4 v2, 0x0
invoke-static {v0, v1, v2}, Landroid/provider/Settings$System;->getInt(Landroid/content/ContentResolver;Ljava/lang/String;I)I
move-result v0
if-nez v0, :cond_5
Custom Settings
Basic Switch and SystemUI Restart..
Code:
<SwitchPreference android:title="Quickconnect Panel" android:key="3minit_quick_connect_toggle" android:summaryOn="Panel is hidden" android:summaryOff="Panel is shown" />
<Preference android:title="Restart SystemUI" android:key="tool#restartsystemui" android:summary="Tap after setting 3minit Quick Connect Panel" />
Screen shots below of both panel showing and panel gone through using toggle
Good
mine
mine2
new guide added, hope this is useful to someone
Dear to All, i want to get a best GCam apk file for RMN 7 pro, so would you give a best one . i had installed some GCam vers but it s unstable and many bugs. Thank to All
Hieubshp said:
Dear to All, i want to get a best GCam apk file for RMN 7 pro, so would you give a best one . i had installed some GCam vers but it s unstable and many bugs. Thank to All
Click to expand...
Click to collapse
Use Arnova's v1.5 with the its config with change in saturation to 1.0 and 1.6 for both cameras.
---------- Post added at 07:47 AM ---------- Previous post was at 07:43 AM ----------
Abbashu said:
Use Arnova's v1.5 with the its config with change in saturation to 1.0 and 1.6 for both cameras.
Click to expand...
Click to collapse
And I am using XDA labs app and it's unable to upload my config file so I am pasting its code here, you just copy that code and using a text editor make a .xml file and put it in the Gcam>configs folder. And restore it using gcam Arnova's ver. 1.5
Code:
<map>
<string name="pref_e_hdrplus_key">1</string>
<string name="bl_back_key">0</string>
<string name="pref_camera_picturesize_2ndauxback_key">large</string>
<string name="pref_front_customdenoiseparam_key">0</string>
<string name="pref_front_noise_model_ao_key">750</string>
<string name="pref_autoexposure_key">0</string>
<string name="libs_key">0</string>
<string name="pref_hot_pixel_key">2</string>
<string name="pref_camera_picturesize_front_key">4224x3136</string>
<string name="pref_double_tap_key">Zoom</string>
<string name="key_promote_launch_wear">0</string>
<string name="pref_qjpg_key">100</string>
<string name="refocus_upgrade_version">1</string>
<string name="portrait_fixer">1</string>
<string name="raw_key">37</string>
<string name="pref_camera_grid_lines_mode">0</string>
<string name="pref_camera_pano_orientation">pano_horizontal</string>
<string name="pref_hexagon_key">0</string>
<string name="pref_imax_audio_enabled_key">0</string>
<string name="pref_ext_mic_key">0</string>
<string name="pref_back_denoise_chroma_1_key">500</string>
<boolean name="photobooth_tutorial_shown" value="true"/>
<string name="pref_aperture">0</string>
<string name="pref_last_location_recording_state">1</string>
<string name="pref_has_checked_photobooth_mode">1</string>
<string name="vfp_motion_key">1</string>
<string name="highlight_b_key">10</string>
<string name="pref_video_quality_front_key">large</string>
<string name="pref_camera_picturesize_back_key">8000x6000</string>
<string name="pref_allow_unknown_devices_key">0</string>
<string name="pref_camera_back_flashmode_key">auto</string>
<string name="pref_disable_zoom_key">0</string>
<string name="pref_mode_vesper_level">1</string>
<string name="pref_camera_hdr_key">0</string>
<string name="pref_has_seen_swiped_to_video">1</string>
<string name="pref_cuttlefish_front_torch_mode_key">off</string>
<string name="pref_hdrdenoisefront_key">300</string>
<string name="pref_camera_enable_iris">1</string>
<string name="pref_micro_mode">1</string>
<string name="pref_has_checked_ornament_mode">0</string>
<string name="pref_back_denoise_revert_1_key">5</string>
<string name="pref_shading_mode_key">2</string>
<string name="pref_iso_exynos_key">0</string>
<string name="pref_camera_hdrplus_option_available_key">1</string>
<string name="pref_back_denoise_luma_2_key">100</string>
<string name="pref_back_denoise_luma_0_key">220</string>
<string name="pref_back_denoise_revert_0_key">5</string>
<string name="frames_min_key">9</string>
<string name="buffer_key">0</string>
<string name="pref_sabre_key">0</string>
<string name="pref_badtf_fix_key">0</string>
<string name="pref_meteringmode_key">0</string>
<string name="pref_volume_key_action">Shutter</string>
<string name="pref_opticalstabi_key">1</string>
<string name="pref_auxbackcameraid_key">0</string>
<string name="style_key">2</string>
<string name="pref_front_denoise_luma_0_key">220</string>
<string name="slowmo_key">0</string>
<string name="pref_has_seen_permissions_dialogs">1</string>
<string name="pref_front_noise_model_as_key">1694300</string>
<string name="pref_front_denoise_revert_1_key">5</string>
<string name="pref_exposure_key">0</string>
<int name="tooltip_impression_count_for_micro_tutorial_dismiss" value="1"/>
<string name="pref_video_quality_back_key">large</string>
<string name="iso_up_key">0</string>
<string name="motion_key">1</string>
<long name="tooltip_latest_impression_timestamp_for_cuttlefish_steady_advice" value="1554055080861"/>
<string name="pref_color_transform_key">0</string>
<string name="google_photos_key">1</string>
<string name="pref_camera_video_back_flashmode_key">off</string>
<string name="highlight_f_key">10</string>
<string name="exp_ns_key">0</string>
<string name="pref_back_noise_model_as_key">1694300</string>
<string name="pref_force_raw10_front_key">0</string>
<string name="pref_enable_lowlight_key">1</string>
<string name="config_key">8</string>
<string name="pref_camera_hdr_plus_key">auto</string>
<string name="vfp_ae_key">1</string>
<string name="pref_video_stabilization_key">1</string>
<string name="pref_front_noise_model_bo_key">22500</string>
<string name="pref_bitrate_key">0</string>
<string name="pref_back_tuningmode_key">0</string>
<string name="pixel_awb_key">1</string>
<string name="pref_back_customdenoiseparam_key">0</string>
<string name="pref_camera_video_front_flashmode_key">off</string>
<string name="pref_front_denoise_chroma_2_key">500</string>
<string name="pref_af_mode_front">0</string>
<string name="pref_hdrdenoiseback_key">100</string>
<int name="tooltip_impression_count_for_cuttlefish_steady_advice" value="1"/>
<string name="pref_back_noise_model_ao_key">750</string>
<string name="pref_hdrplus_multi_autoexposure_key">100</string>
<string name="pref_enabled_hdrdenoise_key">0</string>
<string name="pref_ns_image_rotation_key">0</string>
<string name="pref_back_denoise_chroma_0_key">500</string>
<string name="pref_micro_res_key">5</string>
<string name="pref_enable_fps_front_key">0</string>
<string name="pref_back_noise_model_bo_key">22500</string>
<string name="fix_old_wb_key">0</string>
<string name="pref_upgrade_version">16</string>
<long name="tooltip_latest_impression_timestamp_for_micro_tutorial_dismiss" value="1554057214868"/>
<string name="panorama_upgrade_version">1</string>
<string name="pref_front_customnoisemodel_key">0</string>
<string name="pref_front_denoise_chroma_0_key">500</string>
<string name="resampling_key">2</string>
<string name="pref_camera_photosphere_orientation">pano_horizontal</string>
<string name="pref_enable_dbl_key">0</string>
<string name="model_f_key">7</string>
<string name="pref_video_fps_p2018_key">FPS_60</string>
<string name="pref_fix_iso_key">0</string>
<string name="pref_micro_res2_key">2</string>
<string name="cs_video_key">0</string>
<string name="img_key">35</string>
<string name="pref_camera_raw_output_key">0</string>
<long name="tooltip_latest_impression_timestamp_for_ext_mic_tutorial_dismiss" value="1554057162577"/>
<string name="pref_back_denoise_chroma_2_key">500</string>
<string name="pref_video_hevc_setting_key">0</string>
<string name="pref_max_brightness_key">0</string>
<string name="pref_back_denoise_revert_2_key">5</string>
<string name="pref_has_checked_photosphere_mode">1</string>
<string name="pref_camera_sounds_key">1</string>
<string name="pref_front_denoise_luma_2_key">100</string>
<string name="pref_back_customnoisemodel_key">0</string>
<int name="tooltip_impression_count_for_ext_mic_tutorial_dismiss" value="1"/>
<string name="shadow_b_key">16</string>
<string name="pref_focus_tracking_key">1</string>
<string name="pref_camera_recordlocation_key">1</string>
<string name="pref_front_noise_model_bs_key">1694300</string>
<string name="pref_refocus_resolution_key">12</string>
<string name="pref_disable_slowmotion_key">1</string>
<string name="pref_camera_raw_output_option_available_key">0</string>
<string name="pref_front_denoise_revert_2_key">5</string>
<string name="pref_has_checked_cuttlefish_mode">1</string>
<string name="pref_back_noise_model_bs_key">90900</string>
<string name="pref_camera_front_flashmode_key">auto</string>
<string name="pref_raw_compression_key">0</string>
<string name="fix_ns_key">0</string>
<string name="pref_livehdr_key">0</string>
<string name="pref_back_denoise_luma_1_key">150</string>
<string name="pref_video_fps_key">FPS_60</string>
<string name="exp_key">0</string>
<string name="aux_key">0</string>
<string name="pref_front_denoise_luma_1_key">150</string>
<string name="pref_front_tuningmode_key">0</string>
<string name="pref_force_autoexposure_key">0</string>
<string name="pref_max_memory_key">840</string>
<string name="pref_flash_supported_back_camera">1</string>
<string name="pref_camera_picturesize_auxback_key">large</string>
<string name="pref_hdr_support_mode_back_camera">hdr_plus</string>
<string name="flash_ns_key">0</string>
<string name="pref_dirty_lens_detector_key">1</string>
<string name="pref_has_checked_lens_mode">1</string>
<string name="cs_photo_key">0</string>
<string name="pref_distortion_correction_key">2</string>
<string name="pref_camera_countdown_duration_key">0</string>
<string name="pref_e_hdrplus_ns_key">0</string>
<string name="pref_front_denoise_chroma_1_key">500</string>
<string name="bl_front_key">0</string>
<string name="shadow_f_key">16</string>
<string name="model_b_key">7</string>
<string name="pref_has_checked_gouda_mode">1</string>
<string name="pref_camera_advice_settings">1</string>
<string name="pref_front_denoise_revert_0_key">5</string>
<string name="pref_af_mode_back">0</string>
</map>
:good:
Abbashu said:
Use Arnova's v1.5 with the its config with change in saturation to 1.0 and 1.6 for both cameras.
---------- Post added at 07:47 AM ---------- Previous post was at 07:43 AM ----------
And I am using XDA labs app and it's unable to upload my config file so I am pasting its code here, you just copy that code and using a text editor make a .xml file and put it in the Gcam>configs folder. And restore it using gcam Arnova's ver. 1.5
Code:
<map>
<string name="pref_e_hdrplus_key">1</string>
<string name="bl_back_key">0</string>
<string name="pref_camera_picturesize_2ndauxback_key">large</string>
<string name="pref_front_customdenoiseparam_key">0</string>
<string name="pref_front_noise_model_ao_key">750</string>
<string name="pref_autoexposure_key">0</string>
<string name="libs_key">0</string>
<string name="pref_hot_pixel_key">2</string>
<string name="pref_camera_picturesize_front_key">4224x3136</string>
<string name="pref_double_tap_key">Zoom</string>
<string name="key_promote_launch_wear">0</string>
<string name="pref_qjpg_key">100</string>
<string name="refocus_upgrade_version">1</string>
<string name="portrait_fixer">1</string>
<string name="raw_key">37</string>
<string name="pref_camera_grid_lines_mode">0</string>
<string name="pref_camera_pano_orientation">pano_horizontal</string>
<string name="pref_hexagon_key">0</string>
<string name="pref_imax_audio_enabled_key">0</string>
<string name="pref_ext_mic_key">0</string>
<string name="pref_back_denoise_chroma_1_key">500</string>
<boolean name="photobooth_tutorial_shown" value="true"/>
<string name="pref_aperture">0</string>
<string name="pref_last_location_recording_state">1</string>
<string name="pref_has_checked_photobooth_mode">1</string>
<string name="vfp_motion_key">1</string>
<string name="highlight_b_key">10</string>
<string name="pref_video_quality_front_key">large</string>
<string name="pref_camera_picturesize_back_key">8000x6000</string>
<string name="pref_allow_unknown_devices_key">0</string>
<string name="pref_camera_back_flashmode_key">auto</string>
<string name="pref_disable_zoom_key">0</string>
<string name="pref_mode_vesper_level">1</string>
<string name="pref_camera_hdr_key">0</string>
<string name="pref_has_seen_swiped_to_video">1</string>
<string name="pref_cuttlefish_front_torch_mode_key">off</string>
<string name="pref_hdrdenoisefront_key">300</string>
<string name="pref_camera_enable_iris">1</string>
<string name="pref_micro_mode">1</string>
<string name="pref_has_checked_ornament_mode">0</string>
<string name="pref_back_denoise_revert_1_key">5</string>
<string name="pref_shading_mode_key">2</string>
<string name="pref_iso_exynos_key">0</string>
<string name="pref_camera_hdrplus_option_available_key">1</string>
<string name="pref_back_denoise_luma_2_key">100</string>
<string name="pref_back_denoise_luma_0_key">220</string>
<string name="pref_back_denoise_revert_0_key">5</string>
<string name="frames_min_key">9</string>
<string name="buffer_key">0</string>
<string name="pref_sabre_key">0</string>
<string name="pref_badtf_fix_key">0</string>
<string name="pref_meteringmode_key">0</string>
<string name="pref_volume_key_action">Shutter</string>
<string name="pref_opticalstabi_key">1</string>
<string name="pref_auxbackcameraid_key">0</string>
<string name="style_key">2</string>
<string name="pref_front_denoise_luma_0_key">220</string>
<string name="slowmo_key">0</string>
<string name="pref_has_seen_permissions_dialogs">1</string>
<string name="pref_front_noise_model_as_key">1694300</string>
<string name="pref_front_denoise_revert_1_key">5</string>
<string name="pref_exposure_key">0</string>
<int name="tooltip_impression_count_for_micro_tutorial_dismiss" value="1"/>
<string name="pref_video_quality_back_key">large</string>
<string name="iso_up_key">0</string>
<string name="motion_key">1</string>
<long name="tooltip_latest_impression_timestamp_for_cuttlefish_steady_advice" value="1554055080861"/>
<string name="pref_color_transform_key">0</string>
<string name="google_photos_key">1</string>
<string name="pref_camera_video_back_flashmode_key">off</string>
<string name="highlight_f_key">10</string>
<string name="exp_ns_key">0</string>
<string name="pref_back_noise_model_as_key">1694300</string>
<string name="pref_force_raw10_front_key">0</string>
<string name="pref_enable_lowlight_key">1</string>
<string name="config_key">8</string>
<string name="pref_camera_hdr_plus_key">auto</string>
<string name="vfp_ae_key">1</string>
<string name="pref_video_stabilization_key">1</string>
<string name="pref_front_noise_model_bo_key">22500</string>
<string name="pref_bitrate_key">0</string>
<string name="pref_back_tuningmode_key">0</string>
<string name="pixel_awb_key">1</string>
<string name="pref_back_customdenoiseparam_key">0</string>
<string name="pref_camera_video_front_flashmode_key">off</string>
<string name="pref_front_denoise_chroma_2_key">500</string>
<string name="pref_af_mode_front">0</string>
<string name="pref_hdrdenoiseback_key">100</string>
<int name="tooltip_impression_count_for_cuttlefish_steady_advice" value="1"/>
<string name="pref_back_noise_model_ao_key">750</string>
<string name="pref_hdrplus_multi_autoexposure_key">100</string>
<string name="pref_enabled_hdrdenoise_key">0</string>
<string name="pref_ns_image_rotation_key">0</string>
<string name="pref_back_denoise_chroma_0_key">500</string>
<string name="pref_micro_res_key">5</string>
<string name="pref_enable_fps_front_key">0</string>
<string name="pref_back_noise_model_bo_key">22500</string>
<string name="fix_old_wb_key">0</string>
<string name="pref_upgrade_version">16</string>
<long name="tooltip_latest_impression_timestamp_for_micro_tutorial_dismiss" value="1554057214868"/>
<string name="panorama_upgrade_version">1</string>
<string name="pref_front_customnoisemodel_key">0</string>
<string name="pref_front_denoise_chroma_0_key">500</string>
<string name="resampling_key">2</string>
<string name="pref_camera_photosphere_orientation">pano_horizontal</string>
<string name="pref_enable_dbl_key">0</string>
<string name="model_f_key">7</string>
<string name="pref_video_fps_p2018_key">FPS_60</string>
<string name="pref_fix_iso_key">0</string>
<string name="pref_micro_res2_key">2</string>
<string name="cs_video_key">0</string>
<string name="img_key">35</string>
<string name="pref_camera_raw_output_key">0</string>
<long name="tooltip_latest_impression_timestamp_for_ext_mic_tutorial_dismiss" value="1554057162577"/>
<string name="pref_back_denoise_chroma_2_key">500</string>
<string name="pref_video_hevc_setting_key">0</string>
<string name="pref_max_brightness_key">0</string>
<string name="pref_back_denoise_revert_2_key">5</string>
<string name="pref_has_checked_photosphere_mode">1</string>
<string name="pref_camera_sounds_key">1</string>
<string name="pref_front_denoise_luma_2_key">100</string>
<string name="pref_back_customnoisemodel_key">0</string>
<int name="tooltip_impression_count_for_ext_mic_tutorial_dismiss" value="1"/>
<string name="shadow_b_key">16</string>
<string name="pref_focus_tracking_key">1</string>
<string name="pref_camera_recordlocation_key">1</string>
<string name="pref_front_noise_model_bs_key">1694300</string>
<string name="pref_refocus_resolution_key">12</string>
<string name="pref_disable_slowmotion_key">1</string>
<string name="pref_camera_raw_output_option_available_key">0</string>
<string name="pref_front_denoise_revert_2_key">5</string>
<string name="pref_has_checked_cuttlefish_mode">1</string>
<string name="pref_back_noise_model_bs_key">90900</string>
<string name="pref_camera_front_flashmode_key">auto</string>
<string name="pref_raw_compression_key">0</string>
<string name="fix_ns_key">0</string>
<string name="pref_livehdr_key">0</string>
<string name="pref_back_denoise_luma_1_key">150</string>
<string name="pref_video_fps_key">FPS_60</string>
<string name="exp_key">0</string>
<string name="aux_key">0</string>
<string name="pref_front_denoise_luma_1_key">150</string>
<string name="pref_front_tuningmode_key">0</string>
<string name="pref_force_autoexposure_key">0</string>
<string name="pref_max_memory_key">840</string>
<string name="pref_flash_supported_back_camera">1</string>
<string name="pref_camera_picturesize_auxback_key">large</string>
<string name="pref_hdr_support_mode_back_camera">hdr_plus</string>
<string name="flash_ns_key">0</string>
<string name="pref_dirty_lens_detector_key">1</string>
<string name="pref_has_checked_lens_mode">1</string>
<string name="cs_photo_key">0</string>
<string name="pref_distortion_correction_key">2</string>
<string name="pref_camera_countdown_duration_key">0</string>
<string name="pref_e_hdrplus_ns_key">0</string>
<string name="pref_front_denoise_chroma_1_key">500</string>
<string name="bl_front_key">0</string>
<string name="shadow_f_key">16</string>
<string name="model_b_key">7</string>
<string name="pref_has_checked_gouda_mode">1</string>
<string name="pref_camera_advice_settings">1</string>
<string name="pref_front_denoise_revert_0_key">5</string>
<string name="pref_af_mode_back">0</string>
</map>
:good:
Click to expand...
Click to collapse
Thank you and give me apk file please
Hieubshp said:
Thank you and give me apk file please
Click to expand...
Click to collapse
Here is the link of apk file ?
https://f.celsoazevedo.com/file/gcamera/GCam_6.1.021_Advanced_V1.5.190418.1850.apk
Best Google Camera for Redmi Note 7 Pro (China Variant)
I've been doing a lot of testing with several GCam builds on the Redmi Note 7 Pro and I finally found one which gives amazing results. Although it isn't specifically tailored for the Sony IMX586 sensor as we find with other GCam builds developed for the Mi 9 (such as the one modded by xtrme), for some reason it produces much better photos with better color accuracy, details, sharpness, exposure and dynamic range. This GCam build is modded by bulkin043 and it is tailored for a variety of different devices such as the Redmi Note 5 / Pro (whyred), Redmi Note 7 (lavender), Mi A1 (tissot), Mi A2 (jasmine), Mi 6x (wayne) and Mi 8 Lite (platina). During my extensive tests I've found this build to be exceptionally stable with smooth transitions when switching through menus and a very responsive UI.
This build is packed with a lot of great settings such as "Custom Eszdman v2.2" quality level for NightSight, Camera API2 "Metering mode", "ISO priority", and "Lens distortion correction", "Lens blur resolution" and many other unique features. Best of all it comes with a dedicated interface theme (Auto/Light/Dark) which automatically adapts to daylight or night-time conditions. Photobooth and Slow Motion aren't working unfortunately, but that's the case with many GCam builds and so it remains a work in progress.
The only bothersome issue with this build is due to the fact that it permanently crashes video mode when selecting 60fps. Please avoid this framerate for now, or else you will have to reinstall GCam to gain access to video mode again.
This Google Camera is based on the 6.2.030 version and you can download it from > HERE
I will share below the optimal settings for the Redmi Note 7 Pro (after having it thoroughly tested I've found these particular settings to give the best possible results):
[Libs]
Default from Google
[Base settings]
Back camera > Pixel 3a XL/with Pixel 3a config (perfect balance between noise control, details and sharpness with accurate exposure) or Pixel XL/with Pixel 3 config (increased noise, details and sharpness with slightly higher exposure)
Front camera > Pixel 2 XL (good colors, details and sharpness with more noise control) or Nexus 5X (greater details and sharpness with slightly more noise)
Config > Pixel 3a/with Pixel 3a XL and Pixel 3 XL AWB or Pixel 3/with Pixel XL and Pixel 2 XL AWB
[Saturation]
Front Camera > Highlight Saturation (1.9) / Shadow Saturation (2.3)
Back Camera > Highlight Saturation (1.0) / Shadow Saturation (1.6)
[Noise reduction]
Back camera > Activate
Front camera > Activate
DO NOT enable HDR+ Denoise!
[Enable these toggles]
> HDR+ Control
> Save to /DCIM/Camera
> Quick auto exposure settings
> Remove the ISO limit
> Portrait/Disable zoom
> Recompute AWB > On (mandatory!)
All other settings remain on default
NOTICE: Keep in mind that these settings have been tested only on the Redmi Note 7 Pro (China variant). For other compatible devices supported by this build you will have to experiment with the settings yourselves.
Goodmorning everyone. also I have carried out various tests with the carious versions of gcam, and currently I'm using MGC_6_1_021_xcam6_beta4a.apk with the configuration attached
vlachorumsapiens said:
I've been doing a lot of testing with several GCam builds on the Redmi Note 7 Pro and I finally found one which gives amazing results. Although it isn't specifically tailored for the Sony IMX586 sensor as we find with other GCam builds developed for the Mi 9 (such as the one modded by xtrme), for some reason it produces much better photos with better color accuracy, details, sharpness, exposure and dynamic range. This GCam build is modded by bulkin043 and it is tailored for a variety of different devices such as the Redmi Note 5 / Pro (whyred), Redmi Note 7 (lavender), Mi A1 (tissot), Mi A2 (jasmine), Mi 6x (wayne) and Mi 8 Lite (platina). During my extensive tests I've found this build to be exceptionally stable with smooth transitions when switching through menus and a very responsive UI. I haven't experienced any crashes either.
This build is packed with a lot of great settings such as "Custom Eszdman v2.2" quality level for NightSight, Camera API2 "Metering mode", "ISO priority", and "Lens distortion correction", "Lens blur resolution" and many other unique features. Best of all it comes with a dedicated interface theme (Auto/Light/Dark) which automatically adapts to daylight or night-time conditions. Photobooth and Slow Motion aren't working unfortunately, but that's the case with many GCam builds and so it remains a work in progress.
The only bothersome issue with this build is due to the way saturation is programmed to work. When set on default values saturation works properly only on HDR+ Enhanced and NightSight, but on every other mode with HDR+ on photos end up washed out. The only solution to this problem is to increase the saturation values when taking photos with HDR+ on, and change the saturation to default values when using HDR+ Enhanced and NightSight. Otherwise photos will end up oversaturated in these two modes. It's a bit frustrating to constantly have to change the saturation values depending on the mode that is used for taking photos, but future builds will definitely have the ability to import/export XML config files which will enable the possibility of using two different files (one with default saturation values for HDR+ Enhanced and NightSight and one with higher saturation values for the other modes with HDR+ on).
This Google Camera is based on the 6.2.024 version and you can download it from > HERE
I will share below the optimal settings for the Redmi Note 7 Pro (after having it thoroughly tested I've found these particular settings to give the best possible results):
[Libs]
Default from Google
[Base settings]
Back camera > Pixel 3a XL/with Pixel 3a config (perfect balance between noise control, details and sharpness with accurate exposure) or Pixel XL/with Pixel 3 config (increased noise, details and sharpness with slightly higher exposure)
Front camera > Pixel 2 XL (good colors, details and sharpness with more noise control) or Nexus 5X (greater details and sharpness with slightly more noise)
Config > Pixel 3a/with Pixel 3a XL or Pixel 3/with Pixel XL
[Saturation – only for modes with HDR+ on]
Back camera > Highlight Saturation (2.0) / Shadow Saturation (2.4)
Front Camera > Highlight Saturation (1.9) / Shadow Saturation (2.3)
For HDR+ Enhanced and NightSight saturation must be set on default values (1.0/1.6)
Enable "HDR+ Control" and "Save to /DCIM/Camera"
All other settings remain on default
NOTICE: Keep in mind that these settings have been tested only on the Redmi Note 7 Pro (China variant). For other compatible devices supported by this build you will have to experiment with the settings yourselves.
Click to expand...
Click to collapse
Thanks for your information. I installed it and I can confirm the saturation problem with Hdr+ in portrait mode.
Another point: how to use 48 mega pixel in normal photo mode? At this moment only portrait mode use 48
Sent from my Redmi Note 7 Pro using Tapatalk
lucadoc726 said:
Thanks for your information. I installed it and I can confirm the saturation problem with Hdr+ in portrait mode.
Another point: how to use 48 mega pixel in normal photo mode? At this moment only portrait mode use 48
Sent from my Redmi Note 7 Pro using Tapatalk
Click to expand...
Click to collapse
Currently there is no 48MP snapshot support for the normal photo mode. You can use the portrait mode instead which always takes two separate photos. One with background blur applied and one without any background blur. Choose the one you need and delete the other.
lucadoc726 said:
Thanks for your information. I installed it and I can confirm the saturation problem with Hdr+ in portrait mode.
Another point: how to use 48 mega pixel in normal photo mode? At this moment only portrait mode use 48
Click to expand...
Click to collapse
for the problem of poor saturation in portrait mode, I solved by setting ("other setting") Recompute AWB on
bizzino said:
for the problem of poor saturation in portrait mode, I solved by setting ("other setting") Recompute AWB on
Click to expand...
Click to collapse
That doesn't make any sense, but thanks for the info. Good to know this oddly solves the saturation issue.
I'm currently use MGC_6.2.030_RN7_V1f_plus.apk on China ROM.
For the weird unsaturated color image fix,
You just need to enable the GCAM AWB from the setting. Enjoy your gcam.
Settings --> Advanced --> GCam AWB (enable it)
Anyone experience camera freezing when using portrait mode on gcam?
Steve jobz said:
Anyone experience camera freezing when using portrait mode on gcam?
Click to expand...
Click to collapse
Nope.
Try the gcam that I posted above.
TheMrBinary said:
Nope.
Try the gcam that I posted above.
Click to expand...
Click to collapse
Thanks!
---------- Post added at 12:42 PM ---------- Previous post was at 12:38 PM ----------
TheMrBinary said:
Nope.
Try the gcam that I posted above.
Click to expand...
Click to collapse
It crashes when I turn to video.
Steve jobz said:
Thanks!
---------- Post added at 12:42 PM ---------- Previous post was at 12:38 PM ----------
It crashes when I turn to video.
Click to expand...
Click to collapse
Try the GCam I posted on the first page.
P.S. There's no need to constantly change the saturation when switching through different shooting modes anymore. Just enable Recompute AWB > ON and you'll have the same level of saturation in all modes.
Link for Downloading GCam is not working
moasenti said:
Link for Downloading GCam is not working
Click to expand...
Click to collapse
It's working perfectly fine. Not sure why it doesn't work for you, but here's another download link > MGC_6.2.024_IPSGCA_V18ORE .apk
vlachorumsapiens said:
I've been doing a lot of testing with several GCam builds on the Redmi Note 7 Pro and I finally found one which gives amazing results. Although it isn't specifically tailored for the Sony IMX586 sensor as we find with other GCam builds developed for the Mi 9 (such as the one modded by xtrme), for some reason it produces much better photos with better color accuracy, details, sharpness, exposure and dynamic range. This GCam build is modded by bulkin043 and it is tailored for a variety of different devices such as the Redmi Note 5 / Pro (whyred), Redmi Note 7 (lavender), Mi A1 (tissot), Mi A2 (jasmine), Mi 6x (wayne) and Mi 8 Lite (platina). During my extensive tests I've found this build to be exceptionally stable with smooth transitions when switching through menus and a very responsive UI. I haven't experienced any crashes either.
This build is packed with a lot of great settings such as "Custom Eszdman v2.2" quality level for NightSight, Camera API2 "Metering mode", "ISO priority", and "Lens distortion correction", "Lens blur resolution" and many other unique features. Best of all it comes with a dedicated interface theme (Auto/Light/Dark) which automatically adapts to daylight or night-time conditions. Photobooth and Slow Motion aren't working unfortunately, but that's the case with many GCam builds and so it remains a work in progress.
The only bothersome issue with this build is due to the way saturation is programmed to work. When set on default values saturation works properly only on HDR+ Enhanced and NightSight, but on every other mode with HDR+ on photos end up washed out. The only solution to this problem is to increase the saturation values when taking photos with HDR+ on, and change the saturation to default values when using HDR+ Enhanced and NightSight. Otherwise photos will end up oversaturated in these two modes. It's a bit frustrating to constantly have to change the saturation values depending on the mode that is used for taking photos, but future builds will definitely have the ability to import/export XML config files which will enable the possibility of using two different files (one with default saturation values for HDR+ Enhanced and NightSight and one with higher saturation values for the other modes with HDR+ on).
This Google Camera is based on the 6.2.024 version and you can download it from > HERE
I will share below the optimal settings for the Redmi Note 7 Pro (after having it thoroughly tested I've found these particular settings to give the best possible results):
[Libs]
Default from Google
[Base settings]
Back camera > Pixel 3a XL/with Pixel 3a config (perfect balance between noise control, details and sharpness with accurate exposure) or Pixel XL/with Pixel 3 config (increased noise, details and sharpness with slightly higher exposure)
Front camera > Pixel 2 XL (good colors, details and sharpness with more noise control) or Nexus 5X (greater details and sharpness with slightly more noise)
Config > Pixel 3a/with Pixel 3a XL or Pixel 3/with Pixel XL
[Saturation – only for modes with HDR+ on]
Back camera > Highlight Saturation (2.0) / Shadow Saturation (2.4)
Front Camera > Highlight Saturation (1.9) / Shadow Saturation (2.3)
For HDR+ Enhanced and NightSight saturation must be set on default values (1.0/1.6)
Enable "HDR+ Control" and "Save to /DCIM/Camera"
All other settings remain on default
NOTICE: Keep in mind that these settings have been tested only on the Redmi Note 7 Pro (China variant). For other compatible devices supported by this build you will have to experiment with the settings yourselves.
Click to expand...
Click to collapse
Really worked. Thanks brother.
in my oppinion: GCam working in Indian ROm is good more than China Rom
hello to all, I state that I installed on my redmi note pro 7 the custom rom "pixel experience", but after trying different versions of gcam, I personally prefer the xtreme version (MGC_6_1_021_xcam6_beta5). the configuration I use is the one attached: one for the day and one for the night. I attach a comparison of photos with the xtreme and MGC_6.2.030_Bulkin043_V4Q.apk.
https://photos.app.goo.gl/e7rosvZN9Efi5Br7A
Submit your Audio Control/Equalizer App presets! Pretty straight forward premise, in the end hopefully we will all end up with the best our various phone-speaker phone-headset phone-wireless can offer. Audiophiles discussion is encouraged! talk about your preferred app, why, fav preset, ect. Keep it clean, flame free, and most important of all CONSTRUCTIVE.
a little poll - pick your preferred module/app/equalizer
Lets keep this simple folks. Gonna lay down a simple set of guidelines so we give the people what they want! Simply guidelines to make it easier for users looking for a new preset to pick something that they can be somewhat confident it at least sounds good on their device or one very similar.
$: Device Type -- (Manufacturer | Model | other RELEVANT info)
$: Application Used -- (The app this preset was made/used on)
$: Listening Medium -- Did you make this preset while using : Headset | Earbuds | Phone Speaker | Wireless (BT & Other wireless setups) | Wireless to LARGE speakers | Laptop -chromebooks-
$: Sourced From? -- Where your preset is stored @? Surprises from Strangers pertaining to DLs and Files = NO GO! -- (Mega | Google Drive | Dropbox | Media Fire | Daily Uploads | ect.)
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Google Pixel 3a
James DSP
Earbuds -- Specifically PixelBuds
MEGA Link & Below.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<string name="dsp.bs2b.mode">3</string>
<string name="dsp.bass.spectralsmooth">5.0</string>
<boolean name="dsp.masterswitch.enable" value="true" />
<boolean name="dsp.stereowide.enable" value="true" />
<string name="dsp.stereowide.mode">45</string>
<boolean name="dsp.bs2b.enable" value="true" />
<string name="dsp.tone.eq">custom</string>
<string name="dsp.compression.maxrel">800.0</string>
<string name="dsp.compression.maxatk">60.0</string>
<string name="dsp.bass.boostcond">0.5</string>
<boolean name="dsp.bass.enable" value="true" />
<string name="dsp.compression.pregain">7</string>
<string name="dsp.convolver.resampler">/storage/emulated/0/JamesDSP/Convolver/CorredHRTF_Surround1.wav</string>
<string name="dsp.compression.thres2">0</string>
<string name="dsp.compression.thres1">-30</string>
<string name="dsp.masterswitch.limthreshold">-0.1</string>
<boolean name="dsp.compression.enable" value="false" />
<boolean name="dsp.tone.enable" value="true" />
<string name="dsp.masterswitch.limrelease">60.0</string>
<string name="dsp.convolver.mode">2</string>
<string name="dsp.convolver.advimp">-80;-100;0;0;0;0</string>
<boolean name="dsp.streq.enable" value="true" />
<boolean name="dsp.analogmodelling.enable" value="true" />
<string name="dsp.headphone.preset">15</string>
<boolean name="dsp.headphone.enable" value="false" />
<string name="dsp.analogmodelling.tubedrive">8.0</string>
<boolean name="dsp.convolver.enable" value="false" />
<string name="dsp.convolver.files">/storage/emulated/0/JamesDSP/Convolver/CorredHRTF_Surround1.wav</string>
<boolean name="dsp.liveprog.enable" value="true" />
<string name="dsp.streq.stringp">GraphicEQ: 1.5 1.5;</string>
<string name="dsp.tone.filtertype">1</string>
<string name="dsp.tone.eq.custom">25.0000000;40.0000000;63.0000000;100.0000000;160.0000000;250.0000000;400.0000000;630.0000000;1000.0000000;1600.0000000;2500.0000000;4000.0000000;6300.0000000;10000.0000000;16000.0000000;-2.3782387;-0.2953358;-0.2765627;-0.6839380;-0.4663219;0.4269295;0.0553379;0.1398964;1.3656120;2.4667902;2.5229034;2.5505447;4.4044447;4.8117180;4.6943007;</string>
<string name="dsp.bass.maxgain">4</string>
<string name="dsp.bass.gainsmooth">25.0</string>
<string name="dsp.masterswitch.postgain">-1.0</string>
<boolean name="dsp.ddc.enable" value="false" />
<string name="dsp.tone.interpolation">1</string>
<string name="dsp.ddc.files">/storage/emulated/0/JamesDSP/DDC/Butterworth.vdc</string>
<string name="dsp.liveprog.files">/storage/emulated/0/JamesDSP/liveprog/dc_remove.eel</string>
</map>
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
MEGA Link to PRESET FILE
Headset/Speaker/Bluetooth & Settings Files - GITHUB
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
If you participated THX!! THX for your time.