Affichage des articles dont le libellé est settings. Afficher tous les articles
Affichage des articles dont le libellé est settings. Afficher tous les articles

samedi 28 février 2015

[Q] Help Getting S4 Back to Factory Settings topic






I am completely new to rooting and I followed Wolfdroid's tutorial to root my phone.
I got to the point where i had CWM, but when I was trying to install from my SD card there was no option.
I'm stuck with the Samsung "unlock" Custom load up screen and every time i try to go into recovery, it immediately goes to download odin mode, but it still says im not rooted. I know it's possible to boot normally by going to download and pressing Volume down, but if it's possible I would like to get my phone back to an completely unrooted state.
I've tried unrooting with SuperSU but that just ends up freezing.
Samsung Galaxy S4(Verizon) SCH-I545 NK1






[Q] New install, no extra settings?? topic






Just flashed latest ROM and gapps for PA, but it seems to just be stock lollipop. It has the PA OTA but nothing else, no where can I change any of the old PA settings any ideas?






[Q] How to backup and restore privacy manager settings topic






I keep on updating my phone with the latest rom almost every other day and also I use the CM privacy manager a lot to control access as well as to prevent wakes and autostart.
But everytime i flash an update to my current ROM (i like to do a full wipe rather than dirty flash), I have to redo all the privacy settings. Is there a way these settings can be backed up and restored?






vendredi 27 février 2015

Post your color control settings here! topic






Let's see what everyone is running with all the new color control settings in custom kernels integrated thanks to our kernel devs and @savaco. Thanks all people involved. Now help all of us out and let's get some of those color settings your holding hostage[emoji6]






Is it possible to theme settings screen ? topic






Hi,
Changing theme changes only wallpaper and icons, what i need is a dark theme for settings or being able to select background color, its white now.
Is it possible by any chance ?

Thanks






[MOD][Xposed] Instagram Like Settings topic






Insta Like Settings

Introduction
Insta Like Settings is inspired by a module request from r/xposed. It can intercept Instagram's double-tap-to-like feature and the heart icon click to prevent accidential likes. You can choose between a custom like dialog, no interaction at all or the default behavior (like the image).

Features
  • Customize Double-Tap behavior

  • Customize heart icon click behavior


Requirements
  • Xposed Framework

  • Android 4.0.3+ (including Lollipop)


Download
The module will shortly be available on the Xposed repo.

Source Code
The source code will be available on GitHub in a couple of hours.

Changelog
1.0
initial release










CPU Default Settings topic






Hi im not quite sure wheather cpu settings reset to default after reboot on lollipop(N910F) im trying some tweaks out and its not exactly clear.Im on a stock lollipop rom and kernel.Can N910F users share their stock cpu settings?

Thanks






mercredi 25 février 2015

[Q] How to get color inversion toggle in the Quick Settings on stock HTC One M8? topic






I am a frequent inverted mode user, mainly for its ability to invert colors.

I would like to have "Color Inversion" mode enabled from the pull down Quick Settings on stock HTC One M8 Android 5.0.1 .

I know that the color inversion mode is enabled by going to the Accessibility menu in the Settings, but I feel that it can be accessible from the the Quick Settings menu. I just don't know how to enable it.

Thanks in advance.






[Guide][KitKat][Xperia] Guide How to add Flip Animation Quick Settings topic






Guide Smali How to add Flip Animation Quick Settings

Flip Animation Quick Settings , Youtube https://www.youtube.com/watch?v=DBBE...ature=youtu.be

REQUIREMENT :
- ApkTool RC
- Notepad++
- Xperia KitKat
- Brain
- Patient
- Experience


STEP -1
Decompile SystemUI.apk
Download attached resources and sources, merge to your decompiled systemui

STEP -2
SystemUI.apk/res/layout/somc_statusbar_notification_tools_button.xml
add the red line




Code:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:gravity="center" android:orientation="vertical" android:id="@id/tools_button_layout" android:background="@drawable/somc_quick_settings_tool_button_bg" android:clickable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:minHeight="1.0dip"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
        <ImageView android:id="@id/tools_button_img" android:layout_width="@dimen/qs_tile_icon_size" android:layout_height="@dimen/qs_tile_icon_size" android:scaleType="center" android:contentDescription="@null" />
        <ImageView android:id="@id/tools_button_anim" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="wrap_content" android:scaleType="center" android:contentDescription="@null" />
    </FrameLayout>
    <TextView android:textSize="@dimen/status_bar_tools_button_label_text_size" android:gravity="top|center" android:id="@id/tools_button_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/status_bar_tools_button_margin_bottom" android:lines="2" android:scrollHorizontally="false" android:includeFontPadding="false" />
</LinearLayout>






go to
com/sonymobile/systemui/statusbar/tools/ToolsButton.smali
Add the red line




Code:


# static fields
.field private static final TAG:Ljava/lang/String;


# instance fields
.field private mHandler:Landroid/os/Handler;

.field private mAccentColor:I

.field private mAnimationFrames:Ljava/util/ArrayList;
    .annotation system Ldalvik/annotation/Signature;






Add the red line and pay attention to the register number in blue hint, each device can be different ,
it can be v3, v2, .. you must adapt it.




Code:


.method public constructor <init>(Landroid/content/Context;)V
    .locals 9
    .param p1, "context"    # Landroid/content/Context;

    .prologue
    const/4 v8, 0x1

    const/4 v7, 0x0

    const/4 v6, -0x1

    const/4 v5, 0x0

    invoke-direct {p0, p1}, Landroid/widget/FrameLayout;-><init>(Landroid/content/Context;)V

    const/high16 v3, -0x80000000

    iput v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mState:I

    iput v7, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mCurrentAnimationImage:I

    iput-object v5, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mAnimationFrames:Ljava/util/ArrayList;

    new-instance v3, Landroid/util/SparseArray;

    const/16 v4, 0xa

    invoke-direct {v3, v4}, Landroid/util/SparseArray;-><init>(I)V

    iput-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mBitmaps:Landroid/util/SparseArray;

    iput-boolean v7, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mButtonClicked:Z

    iput v7, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mButtonType:I

    iput-object p1, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mContext:Landroid/content/Context;

    new-instance v3, Landroid/util/SparseArray;

    invoke-direct {v3}, Landroid/util/SparseArray;-><init>()V

    iput-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mStateIcons:Landroid/util/SparseArray;

    new-instance v3, Landroid/os/Handler;

    invoke-direct {v3}, Landroid/os/Handler;-><init>()V

    iput-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mHandler:Landroid/os/Handler;


    new-instance v3, Landroid/util/SparseIntArray;

    invoke-direct {v3}, Landroid/util/SparseIntArray;-><init>()V

    iput-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mStateContentDescription:Landroid/util/SparseIntArray;

    new-instance v2, Landroid/widget/FrameLayout$LayoutParams;

    invoke-direct {v2, v6, v6}, Landroid/widget/FrameLayout$LayoutParams;-><init>(II)V

    .local v2, "params":Landroid/widget/FrameLayout$LayoutParams;
    invoke-static {p1}, Landroid/view/LayoutInflater;->from(Landroid/content/Context;)Landroid/view/LayoutInflater;

    move-result-object v1

    .local v1, "inflater":Landroid/view/LayoutInflater;
    const v3, 0x7f04001d

    invoke-virtual {v1, v3, v5}, Landroid/view/LayoutInflater;->inflate(ILandroid/view/ViewGroup;)Landroid/view/View;

    move-result-object v3

    check-cast v3, Landroid/widget/LinearLayout;

    iput-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mVerticalLayout:Landroid/widget/LinearLayout;

    iget-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mVerticalLayout:Landroid/widget/LinearLayout;

    invoke-virtual {v3, p0}, Landroid/widget/LinearLayout;->setOnClickListener(Landroid/view/View$OnClickListener;)V

    iget-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mVerticalLayout:Landroid/widget/LinearLayout;

    invoke-virtual {v3, p0}, Landroid/widget/LinearLayout;->setOnLongClickListener(Landroid/view/View$OnLongClickListener;)V






Next
add the red mehod




Code:


.method private enableButton(Z)V
    .locals 1
    .param p1, "enable"    # Z

    .prologue
    if-eqz p1, :cond_0

    move-object v0, p0

    .local v0, "enableButton":Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;
    :goto_0
    invoke-virtual {p0, v0}, Landroid/view/View;->setOnClickListener(Landroid/view/View$OnClickListener;)V

    invoke-virtual {p0, v0}, Landroid/view/View;->setOnLongClickListener(Landroid/view/View$OnLongClickListener;)V

    invoke-virtual {p0, v0}, Landroid/view/View;->setOnTouchListener(Landroid/view/View$OnTouchListener;)V

    return-void

    .end local v0    # "enableButton":Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;
    :cond_0
    const/4 v0, 0x0

    goto :goto_0
.end method

.method private mOnLongClickVerticalLayout()V
    .locals 6

    .prologue
    iget-object v0, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mVerticalLayout:Landroid/widget/LinearLayout;

    return-void
.end method


.method private setImageBitmap(Landroid/widget/ImageView;Landroid/graphics/Bitmap;Z)V
    .locals 2
    .param p1, "imageView"    # Landroid/widget/ImageView;
    .param p2, "bitmap"    # Landroid/graphics/Bitmap;
    .param p3, "colorize"    # Z

    .prologue

    invoke-virtual {p1, p2}, Landroid/widget/ImageView;->setImageBitmap(Landroid/graphics/Bitmap;)V

    const v0, -0x55555556

    invoke-static {p3}, Ljava/lang/Boolean;->valueOf(Z)Ljava/lang/Boolean;

    move-result-object v1

    invoke-virtual {p1, v0, v1}, Landroid/view/View;->setTag(ILjava/lang/Object;)V






Next find this line

Code:


# virtual methods

and add all red method




Code:


# virtual methods
.method public flip()V
    .locals 2

    .prologue
    const/4 v0, 0x0

    invoke-virtual {p0, v0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->flipTile(I)V

    return-void
.end method

.method public flipTile(I)V
    .locals 1
    .param p1, "delay"    # I

    .prologue
    .line 159
    const/4 v0, 0x1

    invoke-virtual {p0, p1, v0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->flipTile(IZ)V

    .line 160
    return-void
.end method

.method public flipTile(IZ)V
    .locals 5
    .param p1, "delay"    # I
    .param p2, "flipRight"    # Z

    .prologue
    .line 163
    invoke-virtual {p0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->isFlipTilesEnabled()Z

    move-result v2

    if-nez v2, :cond_0

    .line 190
    :goto_0
    return-void

    .line 164
    :cond_0
    iget-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mContext:Landroid/content/Context;

    if-eqz p2, :cond_1

    const v2, 0x7f05001c

    :goto_1
    invoke-static {v3, v2}, Landroid/animation/AnimatorInflater;->loadAnimator(Landroid/content/Context;I)Landroid/animation/Animator;

    move-result-object v0

    check-cast v0, Landroid/animation/AnimatorSet;

    .line 167
    .local v0, "anim":Landroid/animation/AnimatorSet;
    iget-object v2, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mVerticalLayout:Landroid/widget/LinearLayout;

    invoke-virtual {v0, v2}, Landroid/animation/AnimatorSet;->setTarget(Ljava/lang/Object;)V

    .line 168
    const-wide/16 v2, 0xc8

    invoke-virtual {v0, v2, v3}, Landroid/animation/AnimatorSet;->setDuration(J)Landroid/animation/AnimatorSet;

    .line 169
    new-instance v2, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;

    invoke-direct {v2, p0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;-><init>(Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;)V

    invoke-virtual {v0, v2}, Landroid/animation/AnimatorSet;->addListener(Landroid/animation/Animator$AnimatorListener;)V

    .line 182
    new-instance v1, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;

    invoke-direct {v1, p0, v0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;-><init>(Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;Landroid/animation/AnimatorSet;)V

    .line 189
    .local v1, "doAnimation":Ljava/lang/Runnable;
    iget-object v2, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mHandler:Landroid/os/Handler;

    int-to-long v3, p1

    invoke-virtual {v2, v1, v3, v4}, Landroid/os/Handler;->postDelayed(Ljava/lang/Runnable;J)Z

    goto :goto_0

    .line 164
    .end local v0    # "anim":Landroid/animation/AnimatorSet;
    .end local v1    # "doAnimation":Ljava/lang/Runnable;
    :cond_1
    const v2, 0x7f05001b

    goto :goto_1
.end method

.method public isFlipTilesEnabled()Z
    .locals 3

    .prologue
    const/4 v0, 0x1

    .line 154
    iget-object v1, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mContext:Landroid/content/Context;

    invoke-virtual {v1}, Landroid/content/Context;->getContentResolver()Landroid/content/ContentResolver;

    move-result-object v1

    const-string v2, "quick_settings_tiles_flip"

    invoke-static {v1, v2, v0}, Landroid/provider/Settings$System;->getInt(Landroid/content/ContentResolver;Ljava/lang/String;I)I

    move-result v1

    if-ne v1, v0, :cond_0

    :goto_0
    return v0

    :cond_0
    const/4 v0, 0x0

    goto :goto_0
.end method


.method protected varargs addState(ILjava/lang/Integer;Lcom/sonymobile/systemui/statusbar/tools/ToolsButton$ToolsIcon;[Lcom/sonymobile/systemui/statusbar/tools/ToolsButton$ToolsIcon;)V
    .locals 2
    .param p1, "stateId"    # I
    .param p2, "stringId"    # Ljava/lang/Integer;
    .param p3, "stateIcon"    # Lcom/sonymobile/systemui/statusbar/tools/ToolsButton$ToolsIcon;
    .param p4, "animationIcons"    # [Lcom/sonymobile/systemui/statusbar/tools/ToolsButton$ToolsIcon;

    .prologue

    iget-object v0, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mStateIcons:Landroid/util/SparseArray;

    invoke-virtual {v0, p1, p3}, Landroid/util/SparseArray;->put(ILjava/lang/Object;)V

    iget-object v0, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mStateContentDescription:Landroid/util/SparseIntArray;

    invoke-virtual {p2}, Ljava/lang/Integer;->intValue()I






next search this method and add the red line




Code:


.method public onClick(Landroid/view/View;)V
    .locals 2
    .param p1, "view"    # Landroid/view/View;

    .prologue
    iget-object v0, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mAnimationView:Landroid/widget/ImageView;

    invoke-virtual {v0}, Landroid/view/View;->getVisibility()I

    move-result v0

    if-nez v0, :cond_0

    iget v0, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mButtonType:I

    const/4 v1, 0x2

    if-ne v0, v1, :cond_1

    :cond_0
    invoke-virtual {p0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->onAction()V

    invoke-virtual {p0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->flip()V

    const/4 v0, 0x1

    iput-boolean v0, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mButtonClicked:Z
       
    :cond_1
    return-void
.end method

.method public onLongClick(Landroid/view/View;)Z
    .locals 2
    .param p1, "view"    # Landroid/view/View;

    .prologue
    const/4 v0, 0x0

    .local v0, "clickHandled":Z
    iget-object v1, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mAnimationView:Landroid/widget/ImageView;

    invoke-virtual {v1}, Landroid/view/View;->getVisibility()I

    move-result v1

    if-eqz v1, :cond_0

    invoke-virtual {p0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->onLongClickPopup()Z

    move-result v1

    if-eqz v1, :cond_1

    const/4 v0, 0x1

    :cond_0
    :goto_0
    invoke-direct {p0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mOnLongClickVerticalLayout()V

    return v0

    :cond_1
    const/4 v0, 0x0

    goto :goto_0
.end method






Compile your systemUI
STEP-3
Decompile the newly recompiled again
next go to systemui/res/values/public.xml





Code:


<public type="anim" name="wallpaper_recents_launch_from_launcher_exit" id="0x7f05001a" />
    <public type="anim" name="flip_left" id="0x7f??????" />
    <public type="anim" name="flip_right" id="0x7f??????" />
    <public type="xml" name="somc_skin_permissions" id="0x7f060000" />


next go to
com/sonymobile/systemui/statusbar/tools/ToolsButton.smali
serach this method

Code:


.method public flipTile(IZ)V
    .locals 5
    .param p1, "delay"    # I
    .param p2, "flipRight"    # Z

    .prologue
    .line 163
    invoke-virtual {p0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->isFlipTilesEnabled()Z

    move-result v2

    if-nez v2, :cond_0

    .line 190
    :goto_0
    return-void

    .line 164
    :cond_0
    iget-object v3, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mContext:Landroid/content/Context;

    if-eqz p2, :cond_1

    const v2, 0x7f05001c

    :goto_1
    invoke-static {v3, v2}, Landroid/animation/AnimatorInflater;->loadAnimator(Landroid/content/Context;I)Landroid/animation/Animator;

    move-result-object v0

    check-cast v0, Landroid/animation/AnimatorSet;

    .line 167
    .local v0, "anim":Landroid/animation/AnimatorSet;
    iget-object v2, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mVerticalLayout:Landroid/widget/LinearLayout;

    invoke-virtual {v0, v2}, Landroid/animation/AnimatorSet;->setTarget(Ljava/lang/Object;)V

    .line 168
    const-wide/16 v2, 0xc8

    invoke-virtual {v0, v2, v3}, Landroid/animation/AnimatorSet;->setDuration(J)Landroid/animation/AnimatorSet;

    .line 169
    new-instance v2, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;

    invoke-direct {v2, p0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;-><init>(Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;)V

    invoke-virtual {v0, v2}, Landroid/animation/AnimatorSet;->addListener(Landroid/animation/Animator$AnimatorListener;)V

    .line 182
    new-instance v1, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;

    invoke-direct {v1, p0, v0}, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;-><init>(Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;Landroid/animation/AnimatorSet;)V

    .line 189
    .local v1, "doAnimation":Ljava/lang/Runnable;
    iget-object v2, p0, Lcom/sonymobile/systemui/statusbar/tools/ToolsButton;->mHandler:Landroid/os/Handler;

    int-to-long v3, p1

    invoke-virtual {v2, v1, v3, v4}, Landroid/os/Handler;->postDelayed(Ljava/lang/Runnable;J)Z

    goto :goto_0

    .line 164
    .end local v0    # "anim":Landroid/animation/AnimatorSet;
    .end local v1    # "doAnimation":Ljava/lang/Runnable;
    :cond_1
    const v2, 0x7f05001b

    goto :goto_1
.end method


change the red value in the smali
according to the value you got in your own public.xml

const v2, 0x7f05001c
with

Code:


<public type="anim" name="flip_right" id="0x7f??????" />

and
const v2, 0x7f05001b
with

Code:


<public type="anim" name="flip_left" id="0x7f??????" />





Done and compile your systemUI

Credits :
- Sony
- Darck CM
- CyanogenMod










[Q] Unbrick Phone (Unfortunately, Settings has Stopped) topic






Is there any chance I can unbrick my LG Realm aka LS620. I rooted the phone with Kingroot and then deleted some Bloatware. Doing that I must have done

something to some vital system apps. Now my situation is as follows:

-cannot access any system settings(error message: Unfortunately, Settings has stopped)
-other apps like Contacts, Messaging, Gallery, E-mail give me the error message: Unfortunately, 'Appname' has stopped.
-phone still boots up
-since I cannot access Settings I can NOT enable "USB Debugging" or "Unknown Sources"
-since I cannot enable those, I cannot connect to a PC to use adb to sideload apks or install non Google Play Store apks like Towelroot
-I still can put the phone in "Download Mode"
-I performed a factory reset which did not fix the problem, actually it made it worse since the phone is not rooted anymore, as verified with Root Check

I tried to flash the phone using kdz and tot/dll files for the LG L70 which is a very similar phone but that gives me only errors. I cannot find the

firmware for the LS620 anywhere as apparently a lot of other people can't. I spent now more than 2 unsuccessful weeks on the internet trying to find a fix

for my problem. My thinking is that if I somehow could install Towelroot by maybe tricking the phone to thinks it is a genuine goole play store apk I could
then trie to root the phone again and re-install the Settings system apk.

At this point I am out of my wits, but I refuse to believe there is no solution. There are a lot of smart people out there and on this forum, the answer

must lurk somewhere. The simplest of course would be to find the firmware for the LS620. So, if you can help please respond and let me know. My apologies

for this rather lengthy post.

Thanks,
Joe






mardi 24 février 2015

[Q] What are the "recommended" manual settings for the camera? topic






What are the "general recommended settings" for the manual camera settings for photos and videos? I have extremely limited knowledge of the technical terms of photography as I always leave my cameras on auto when taking pictures/videos.






dimanche 22 février 2015

[Q] Settings and keyboard don't work topic






Yesterday my brother rooted his G2 and deleted some apps, including Calendar. Now most of the settings and keyboard don't work. He gave the phone to me and I can't even connect it to the computer in other modes than "charge only". WiFi doesn't work too. I tried finding out answers by myself but couldn't find anything I can understand.






[Q] I messed up *#*#4636#*#* settings HTC One E8 topic






Guys,
I guess I've messed up some settings in *#*#4636#*#* (Testing Menu) in the
Phone Info-> Select Radio Band -> Set GSM/UMTS band.

I'm running Reliance CDMA in Slot 1 and Airtel GSM in Slot 2.

The phone doesn't recognize Airtel SIM in Slot 2 anymore.
I tried inserting the Airtel SIM in Slot 1, but even then it didn't work.
Restarted also didn't work.
Called up Airtel customer care to check, but my number is very well active.
I need to try other nano-SIM in Slot 2 and give it a try.
Will update with my findings here tomorrow.
Any inputs really appreciated.

Thanks!






samedi 21 février 2015

Kernel settings not sticking topic






No matter what kernel I use or what app to configure the kernel the settings won't stick does anyone have this problem






[Q] missing dock settings on lollipop topic






So, the lag is annoying but since lollipop I can't get sound from the official dock.
Only from the nexus 7 speaker, seems to charge and recognise it's on a dock but there only reason for the dock is the line out...
There used to be some settings in the sound menu for this but there is nothing there any longer - can anyone help?
Seriously regretting this update might just root and get something usable on it!






samedi 14 février 2015

What does updating cyanogenmod through settings delete? topic






Ive only flashed my phone manually once or twice before and im just wondering what i need to save before flashing through the settings.

Couldn't find any thread on this so if there is one i apologize and would appreciate a link
Thnx






[Q&A] [4.4.4][Audio Mod][YKG Team] Beast v1.6 Dolby Digital, all Sony audio settings topic






Q&A for [4.4.4][Audio Mod][YKG Team] Beast v1.6 Dolby Digital, all Sony audio settings & more

Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer.

Before posting, please use the forum search and read through the discussion thread for [4.4.4][Audio Mod][YKG Team] Beast v1.6 Dolby Digital, all Sony audio settings & more. If you can't find an answer, post it here, being sure to give as much information as possible (firmware version, steps to reproduce, logcat if available) so that you can get help.

Thanks for understanding and for helping to keep XDA neat and tidy! :)






vendredi 13 février 2015

[Q] Can APN settings now be edited on Lollipop versions? topic






I purchased this phone on eBay for use on a non-Verizon network (Rogers). Unfortunately, it seems that since the 4.4.3 OTA, APN settings cannot be manually entered, and the network preference list does not work with my SIM card (says it's full with 0 items, exactly like this). I've done a lot of reading, and I've seen lots of people complaining about the same issue, but it seems no solution has been found. Yes, I've flashed custom ROMs like ViperOneM8. I even tried editing build.prop as shown in a very old post here but that also failed. I also even tried to open the SQLite database to edit it manually, but had no luck there either.

SO now I'm wondering if the new OTA has re-enabled this (I doubt it, but I want to ask before I re-sell the phone!).






Is it possible to get app settings or per ap dpi without xposed? topic






As title asks. Is it possible to get app settings or per ap dpi without xposed?






jeudi 12 février 2015

[Q] Create extra tab in settings menu (lollipop) ? topic






Hai guys, need help in creating a new section(similar to about phone) ?
Searched the forum and found how to do in jellybean, ICS but cannot repeat the same steps for lollipop.
Can anyone provide a little help on how to do it in lollipop.