ads

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

lundi 21 septembre 2015

Damaged EFS, no backup - is it possible to flash from another phone (damaged)?



Hi,

I have a problem with my S5. After flashing a custom ROM I found out that my IMEI is null, and so the EFS is corrupted. I tried to restore it from backup only to find out that I have deleted the backup :eek:

What can I do now? I anything? Would restoring EFS from another S5 (with damaged mainboard) could be a solution?
Generally everything works except of phone modem, I have got IMEI written - is there maybe a method to set the IMEI without EFS or a method to create EFS? I already tried sam IMEI changers, but I found out that they only do this on the application level - apps will be able to read different IMEI for licensing, but phone still sees NULL IMEI.



dimanche 20 septembre 2015

another newbie soft bricked his new phone



i just upgraded my phone from a crappy lg l70 to a htc one x+ i bought from newegg here is the link to the one i bought: nevermind cant post links as a new user

though the phone i received has the at&t symbol on the top i tried to flash the rom im using the clockwork recovery now cause i tried to go with viper rom ended up wiping os by mistake when i skimmed and read wipe the phone :P my bad and then i tried going with cynogen and downloaded its stable release and stable release recovery id like to do the viper rom viperX+_2.1.1 is the one i downloaded to try to get and ive tried the adb push ive tride to sideload and ever the viper kernal recovery flasher exe file

i dont have an os and need some help any help is appreciated and sorry in advance for not using another thread ive tried things ive found in atleast 6 other threads and nothing has quite worked for me



vendredi 18 septembre 2015

Unable to Send data from One Activity to Another Activity



**FIRSTACTIVITY**

Code:


public class FirstMarks extends Activity {

    TextView tv_Subjects1, tv_Internal1, tv_External1;
    EditText et_Int_Eng, et_Int_M1, et_Int_MM, et_Int_Phy, et_Int_Chem, et_Int_Cp, et_Int_ElcsLab, et_Int_EpLab, et_Int_ItLab, et_Int_Draw;
    EditText et_Ext_Eng, et_Ext_M1, et_Ext_MM, et_Ext_Phy, et_Ext_Chem, et_Ext_Cp, et_Ext_ElcsLab, et_Ext_EpLab, et_Ext_ItLab, et_Ext_Draw;
    Button btn_Cal1;
    int IEng, IM1, IMM, IPhy, IChem, ICp, IElcsLab, IItLab, IEpLab, IDraw;
    int EEng, EM1, EMM, EPhy, EChem, ECp, EElcsLab, EItLab, EEpLab, EDraw;
    int ITotal1 =0, ETotal1 =0, Total1 =0;
    float Percentage1=0;
    String STotal1=" ", SPercentage1=" ";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.marks_1);

        //SETTING FONT.
        Typeface mytypeface = Typeface.createFromAsset(getAssets(), "font.ttf");

        //INITIALISING VIEWS.
        //INITIALISING TEXT VIEWS.
        tv_Subjects1 = (TextView) findViewById(R.id.tv_Subject1);
        tv_Internal1 = (TextView) findViewById(R.id.tv_Internal1);
        tv_External1 = (TextView) findViewById(R.id.tv_External1);
        //INITIALISING EDIT TEXT.
        //INTERNAL
        et_Int_Eng = (EditText) findViewById(R.id.et_Int_Eng);
        et_Int_M1 = (EditText) findViewById(R.id.et_Int_M1);
        et_Int_MM = (EditText) findViewById(R.id.et_Int_MM);
        et_Int_Phy = (EditText) findViewById(R.id.et_Int_Phy);
        et_Int_Chem = (EditText) findViewById(R.id.et_Int_Chem);
        et_Int_Cp = (EditText) findViewById(R.id.et_Int_Cp);
        et_Int_ElcsLab = (EditText) findViewById(R.id.et_Int_ElcsLab);
        et_Int_EpLab = (EditText) findViewById(R.id.et_Int_EpLab);
        et_Int_ItLab = (EditText) findViewById(R.id.et_Int_ItLab);
        et_Int_Draw = (EditText) findViewById(R.id.et_Ext_Draw);
        //EXTERNAL
        et_Ext_Eng = (EditText) findViewById(R.id.et_Ext_Eng);
        et_Ext_M1 = (EditText) findViewById(R.id.et_Ext_M1);
        et_Ext_MM = (EditText) findViewById(R.id.et_Ext_MM);
        et_Ext_Phy = (EditText) findViewById(R.id.et_Ext_Phy);
        et_Ext_Chem = (EditText) findViewById(R.id.et_Ext_Chem);
        et_Ext_Cp = (EditText) findViewById(R.id.et_Ext_Cp);
        et_Ext_ElcsLab = (EditText) findViewById(R.id.et_Ext_ElcsLab);
        et_Ext_EpLab = (EditText) findViewById(R.id.et_Ext_EpLab);
        et_Ext_ItLab = (EditText) findViewById(R.id.et_Ext_ItLab);
        et_Ext_Draw = (EditText) findViewById(R.id.et_Ext_Draw);
        //INITIALISING BUTTON
        btn_Cal1 = (Button) findViewById(R.id.btn_Cal1);

        //INITIALISING FONT.
        tv_Subjects1.setTypeface(mytypeface);
        tv_Internal1.setTypeface(mytypeface);
        tv_External1.setTypeface(mytypeface);
        btn_Cal1.setTypeface(mytypeface);

        //GETTING VALUES FROM EDIT TEXT.
        //ENGLISH.
        try {
            IEng = getInt(et_Int_Eng);
            EEng = getInt(et_Ext_Eng);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a ENGLISH Number");
        }

        //M1.
        try {
            IM1 = getInt(et_Int_M1);
            EM1 = getInt(et_Ext_M1);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a M1 Number");
        }
        //MM.
        try {
            IMM = getInt(et_Int_MM);
            EMM = getInt(et_Ext_MM);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a MM Number");
        }

        //PHYSICS.
        try {
            IPhy = getInt(et_Int_Phy);
            EPhy = getInt(et_Ext_Phy);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a PHYSICS Number");
        }

        //CHEMISTRY
        try {
            IChem = getInt(et_Int_Chem);
            EChem = getInt(et_Ext_Chem);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a CHEMISTRY Number");
        }

        //CP.
        try {
            ICp = getInt(et_Int_Cp);
            ECp = getInt(et_Ext_Cp);

        } catch (NumberFormatException e) {
            Log.i("Log", "Not a CP Number");
        }

        //DRAWING.
        try {
            IDraw = getInt(et_Int_Draw);
            EDraw = getInt(et_Ext_Draw);
        } catch (NumberFormatException e) {
            Log.i("Log", "Not a DRAW Number");
        }

        //ELCS LAB.
        try{
            IElcsLab = getInt(et_Int_ElcsLab);
            EElcsLab = getInt(et_Ext_ElcsLab);

        }catch (NumberFormatException e){
            Log.i("Log", "Not a ELCS Number");
        }

        //EP/EC LAB.
        try{
            IEpLab = getInt(et_Int_EpLab);
            EEpLab= getInt(et_Ext_EpLab);

        }catch (NumberFormatException e){
            Log.i("Log", "Not a EP LAB Number");
        }

        //IT LAB.
        try{
            IItLab = getInt(et_Int_ItLab);
            EItLab = getInt(et_Ext_ItLab);

        }catch (NumberFormatException e){
            Log.i("Log", "Not a ITLAB Number");
        }



        //TOTALING ALL SUBJECTS
        //TOTALING INTERNAL MARKS.
        ITotal1 = (IEng + IM1 + IMM + IPhy + IChem + ICp + IElcsLab + IEpLab + IItLab + IDraw);

        //TOTALING EXTERNAL MARKS.
        ETotal1 = (EEng + EM1 + EMM + EPhy + EChem + ECp + EElcsLab + EEpLab + EItLab + EDraw);

        //TOTALING INTERNAL & EXTERNAL MARKS.
        Total1 = (ITotal1 + ETotal1);

        //CONVERTING INT TOTAL1 INTO STRING.
        //STotal1 = String.valueOf(Total1);

        //PERCENTAGE CALCULATION.
        Percentage1 = (float) Total1 / 10;
        //SPercentage1 = String.valueOf(Percentage1);

        //WHEN BUTTON CALCULATE IS CLICKED.
        btn_Cal1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent i = new Intent(FirstMarks.this, FirstResult.class);
                Bundle bundle = new Bundle();
                bundle.putInt("res1", Total1);
                bundle.putFloat("per1", Percentage1);
                i.putExtras(bundle);
                startActivity(i);
                finish();

            }
        });


    }

    //FUNCTION TO GET TEXT FROM EDIT TEXT AND CONVERT INTO INTEGER.
    private int getInt(EditText et) throws NumberFormatException {
        return Integer.valueOf(et.getText().toString());
    }
}


**SECOND ACTIVITY**

Code:


public class FirstResult extends Activity {

    EditText et_Total1,et_Percentage1;
    Button btn_Exit1;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.result_first);

        //INITIALISING VIEWS.
        et_Total1 = (EditText) findViewById(R.id.et_Total1);
        et_Percentage1 = (EditText) findViewById(R.id.et_Percentage1);
        btn_Exit1 = (Button) findViewById(R.id.btn_Exit1);

        //GETTING DATA FROM PREVIOUS ACTIVITY.
        Bundle b = getIntent().getExtras();
        int res1 = b.getInt("res1", 0);
        float per1 = b.getFloat("per1", 0);

      //CONVERTING TO STRING.
        String sres1 = String.valueOf(res1);
        String sper1 = String.valueOf(per1);

        //SETTING RESULTS.
        et_Total1.setText(sres1);
        et_Percentage1.setText(sper1);

        //WHEN EXIT IS CLICKED.
        btn_Exit1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                finish();
                System.exit(0);
          }
        });


    }
}





jeudi 17 septembre 2015

Nubia Z9 mini another sim problem



Hi, can you help me ?
My phone is ZTE nubia Z9 mini and I have 2 sims, sim1(this sim use for calls,etc... ) works fine. But i have sim2 for net. But this sim2 didn´t recognize the phone, if i put that sim2 in phone, the phone behavior like there is no sim. I tried used only this sim2 in different slots with no success. I try this sim2 in sister´s iphone and works. And try sister´s sim ,but my phone didn´t recognize it too. My sim1 works fine in both slots. I tried this in V1.19(official) ,V3.14(from navin) and V3.16(from navin) and i wiped data,cache,dalvik but not internal storage.
Where can be problem ?



mercredi 16 septembre 2015

[BUG] Another Memory Bug



I had force stopped/greenified apps but even after that Android isn't releasing their used memory.
I had to uninstall all Apps and minimize using to WhatsApp,Gmail,Hangout and Hike Messenger.
I can't even keep extra apps installed.

I am using Greenify with Xposed Framework to freeze system apps and prevent them from waking up.
Still there is no way to gain memory of frozen apps.

Easy way to notice:
1. Open Settings-Applications-Running Apps-
2. Memorize free RAM.
3. Try force stopping bunch of heavy Apps.
4. You won't see free RAM increased no matter what you do.

I was actually thinking to give up S6 Edge but I hope Samsung or someone might fix this annoying Memory bug.

Note: I have tried all custom ROM's till latest Crash ROM V2.4.



dimanche 13 septembre 2015

I need help bad i cant pay for another phone



Ok so i got a lg g3 it is in bad shape it is stuck in fast boot and im to knew to these to know what i need to do there is not much help on this out there my lg g3 is verizon and it 985 25b please any help would be needed this is my work phone and i cant work with out it thanks



mercredi 9 septembre 2015

Another bricked tablet thread.



Hello,

in may this year i bought my HDX7. I did not like fire os so i decided to install a custom rom (HDX Nexus v2.0.5 http://forum.xda-developers.com/kind...-v1-1-t2835838). I followed this guide http://forum.xda-developers.com/kind...apped-t2954893 and everything went smoothly. I was rooted, safestraped (3.75). I've made second partiton for custom rom and installed it. It worked! Since then i did not change ANYTHING in my device but one day (week ago?) when i was watching a Twitch stream, tablet froze. I shut it down by holding power button. So the problem is it bootloops now between grey kindle fire logo and safestrap: dissabled screen. I guess im soft bricked? I tried this http://forum.xda-developers.com/show....php?t=2793253 but no results. Adb, fastboot and safestrap seems to be working. Where should i start?

I do not have backup/recovery file since i did nothing with stock partition.
Last known OS: FireOS 13.3.2.4 and HDX Nexus v2.0.5
Safestrap: 3.75

Thanks for your time.



vendredi 4 septembre 2015

Pass data from one activity to another



Can you help me. I have developed a app with a quiz. When the quiz is finished a new activity (result) appears showing the score. I want to pass the score to a new activity namely score. Here is my code. What is wrong. The score must be showed in a textview.

Result.java

Code:


package app.mobiledevicesecurity;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class Result extends Activity
{

    private static Button playbtn;
    private static Button menubutton;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_result);
        OnClickPlayButtonListener();
        OnClickMenuButtonListener();
        TextView textResult = (TextView) findViewById(R.id.textResult);
        Bundle b = getIntent().getExtras();
        int score = b.getInt("score");
        textResult.setText("You scored" + " " + score + " for the quiz.");
        Intent i = new Intent(getApplicationContext(), Result.class);
        i.putExtra("somevariable",score);
        startActivity(i);
    }

    public void OnClickPlayButtonListener() {
        playbtn = (Button) findViewById(R.id.btn);
        playbtn.setOnClickListener(
                new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        Intent intent = new Intent("app.mobiledevicesecurity.Quiz");
                        startActivity(intent);
                    }
                }
        );
    }

    public void OnClickMenuButtonListener() {
        menubutton = (Button) findViewById(R.id.menubtn);
        menubutton.setOnClickListener(
                new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                      Intent intent = new Intent(getApplicationContext(), MainActivity.class);
                        startActivity(intent);
                      }
                }
        );
    }


Scores.java

Code:


package app.mobiledevicesecurity;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
import android.content.Intent;

public class Scores extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_scores);
        Intent intent = getIntent();
        String value = intent.getStringExtra("somevariable");
        TextView txtScore1 = (TextView) findViewById(R.id.txtScore1);
        txtScore1.setText("You scored" + " " + value + " for the quiz.");
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_scores, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}





lundi 31 août 2015

What can go wrong flashing a modem file from another s6 variant?



So yeah what are some things that could go wrong doing this? I have a phone that has a ton of ROMs available for it, just not my carrier. I'm able to flash ROMs and they seem to work except for mobile data, voice, and SMS.



What can go wrong flashing a modem file from another s6 variant?



I have a USCC Galaxy S6 (SM-G920R4), and all of the ROMs here don't have any support for it as far as I know. I was able to flash XtreStoLite and everything was working fine with the exception of the mobile data and voice. Is it possible to flash a modem from another device to get this to work? What are some options for getting the mobile data and voice to work?



Hi I have a few questions about using a phone made for another neterwork (att) on tmo



Well in short I have an At&t Model GS4 the i337 its currently unlocked running on stock Nj4 and of course want to root it. First of all i suspect i need to use t mobile roms now that i am on that network.
Here is a list of questions and links are also appreciated as answers anything that helps!

First and foremost how should i root this (my last device was a G3) so if things are different please tell me also, I their an app or a thread you can point me to.
Secondly how do i update it to a v5.1 or the latest so updating them rom later is not a problem if i must use odin to do this (i want to use the latest to use odin the least)

Lastly anyone who can give directions on how to root and get to the latest version of android i wold greatly appreciate the time anyone spend to respond to this this post i TYIA

So any links that will work work with NJ4 I would be so happy I have only experience with the G3 I feel i know what to do with it but the Gs4 is new to me and i appreciate any help i receive/

Thank yo for reading this and TYIA for responding thank you for your help i hope its as simple as someone posting some links so i can do this easy i again thanks for leading me through the fog and TIA



images locked by another google account



hi I changed my phone from lg gpro2 d838 to lg g3 d855 and the images which were locked in that device are not opening up in the new device the error which i am getting is images locked by another google account cannot open,
please suggest what should I do i need those images.



samedi 29 août 2015

[XT1033] Another soak on the way for Asian retail



soakRefer screenshot, (Thanks to Twitter)
Don't know whether for 5.1 or stagefright..
Its for Stock 5.0.1 & still not on Air.



vendredi 28 août 2015

Got the S5 today...it has a locked bootloader, what's another great upgrade from S3?



LIKE IT SLEAKNESS, a lot of original dev options, easy ass rooting, good for running/sports? Any suggestions, with AT&T carrier preferably



mercredi 26 août 2015

Another WiFi issue - cannot turn on after upgrade



Hi,

I've decided to upgrade my Rom from a very old insert coin to either a new one or skydragon..

After flashing the ROM I can't turn on wifi, I searched around and found this to be a firmware problem and so have tried upgrading that (a few times).

Nothing I have attempted is working, kernals I've tried installing include the custom skydragon one, and fw_3.28.401.9_custom_without_red_text.

I can connect/flash via fastboot or recovery, the fastboot vars were

(bootloader) version: 0.5
(bootloader) version-bootloader: 3.16.0.0000
(bootloader) version-baseband: 1.16.21331831.A16G
(bootloader) version-cpld: None
(bootloader) version-microp: None
(bootloader) version-main:
(bootloader) version-misc: PVT SHIP S-ON
(bootloader) meid: 00000000000000
(bootloader) product: m8_ul
(bootloader) platform: hTCBmsm8974
(bootloader) modelid: 0P6B63000
(bootloader) cidnum: HTC__622
(bootloader) battery-status: good
(bootloader) battery-voltage: 0mV
(bootloader) partition-layout: Generic
(bootloader) security: on
(bootloader) build-mode: SHIP
(bootloader) boot-mode: FASTBOOT
(bootloader) commitno-bootloader: c3d94491
(bootloader) hbootpreupdate: 11
(bootloader) gencheckpt: 0

But are these now (note S-OFF & SuperCID):

(bootloader) version: 0.5
(bootloader) version-bootloader: 3.19.0.0000
(bootloader) version-baseband: 1.22.21331147A1.29G
(bootloader) version-cpld: None
(bootloader) version-microp: None
(bootloader) version-main: 3.28.401.9
(bootloader) version-misc: PVT SHIP S-OFF
(bootloader) meid: 00000000000000
(bootloader) product: m8_ul
(bootloader) platform: hTCBmsm8974
(bootloader) modelid: 0P6B63000
(bootloader) cidnum: 11111111
(bootloader) battery-status: good
(bootloader) battery-voltage: 0mV
(bootloader) partition-layout: Generic
(bootloader) security: off
(bootloader) build-mode: SHIP
(bootloader) boot-mode: FASTBOOT
(bootloader) commitno-bootloader: df77f8b7
(bootloader) hbootpreupdate: 11
(bootloader) gencheckpt: 0

Does anyone know what I need to do now, if it's another kernal to try could you link it and let me know which method to use.

Thanks.



HTC One M7 dual sim 5.0.2 another language



Hi everybody!
is there someone who knows where I can download morelocale for my HTCOne M7 5.0.2 dual sim?
Thank you!