Stock ICS Browser Crash and FC with Java activated now? - Android Q&A, Help & Troubleshooting

Guys i don't know if this the right place to post, i apologize if there is already a thread or it's not just the right place.
2-3 days ago, right after flash a new rom for my Xperia Play i noticed stock browser (and other based stock browser's app of course) keep fc very often. My guess was the new rom i just flashed, but when i got back to Cyanogenmod, the problem was still there.
I did a little research on google and it seems i'm not alone, but the problem seems to clear with just de-activating Java Script (but in this way the browser is practically useless), but more important
THIS PROBLEMS SEEMS TO SHOW JUST FROM 3-4 DAYS AGO.
Something happened with Java plugin for Android?
Somebody else has this issue?
If u look around many threads have been created in the last 2 days about this problem, in forums all around internet, just search in google "stock browser ics crash" and filter "last 24 hours" ,no matter what rom \ device , but all ICS (or 4.1 too) with stock browser)
EDIT: if u wanna try: open http://www.badtaste.it/ and open 4 tabs on background...and then try it with Java Script OFF
EDIT II: I think has something to do with AD messagges...
EDIT III: It seems the only browsers are ok, are the ones NOT based on stock browser , so Chrome is ok...

Still nobody? Impossible!
Some related threads: http://www.xoomforums.com/forum/ics-general-discussion/19607-browser-keeps-crashing.html
http://code.google.com/p/android/issues/detail?id=40784
http://forums.androidcentral.com/sa...35-s3-native-browser-repeatedly-crashing.html
As u can see int doesn't matter what device or rom, for example i ama on cyanogenmod 9 with xperia play

well, so guess it's just me....

me too on cm10 with java script enable

http://code.google.com/p/android/issues/detail?id=41016&thanks=41016&ts=1354792627

Related

[Q] Two versions of one app installed at the same time?

It seems that this is the first time I start a new thread.
Hi, all. I want to know how to install two versions of one same application at the same time.
As a matter of fact, I want to install Opera Mini 4.2 China Version and Opera Mini 4.2 Internaional Version at the time. But...Since Opera Mini 5 makes it difficult to describe the question, here takes HelloWorld.apk as an example.
Well, there are two versions of the application "HelloWorld": 1.0 and 1.1. (This is just an example)
I have installed HelloWorld 1.0 on my phone, and when I try to install HelloWorld 1.1, the 1.0 version will be replaced. But...I want to have both of them installed on my phone. That is to say, there will be two "HelloWorld" icons in the app drawer.
I use APKTool to extract the com.hello.world.apk into some "text" files, including an AndroidManifest.xml and a lot of *.smali files. In the AndroidManifest.xml, I saw this:
<manifest package="com.hello.world" versionCode="100" versionName="1.0">
I chaged the value "com.hello.world" to "com.goodbye.world". Then I re-build the apk file and transferred it to my phone.
I installed the modified package, it was successfully installed and I see two "HelloWorld" icons in my app drawer!
I try to launch the HelloWorld 1.0, it succeeds.
I try to launch the HelloWorld 1.1, it FCs immediately.
Well, this is my situation. How can I make both of them launch-able in my phone? Is it possible? What should I modify apart from "package" filed in AndroidManifest.xml?
Thanks a lot.
~~~~
wzyboy
wzyboy said:
It seems that this is the first time I start a new thread.
Hi, all. I want to know how to install two versions of one same application at the same time.
As a matter of fact, I want to install Opera Mini 4.2 China Version and Opera Mini 4.2 Internaional Version at the time. But...Since Opera Mini 5 makes it difficult to describe the question, here takes HelloWorld.apk as an example.
Well, there are two versions of the application "HelloWorld": 1.0 and 1.1. (This is just an example)
I have installed HelloWorld 1.0 on my phone, and when I try to install HelloWorld 1.1, the 1.0 version will be replaced. But...I want to have both of them installed on my phone. That is to say, there will be two "HelloWorld" icons in the app drawer.
I use APKTool to extract the com.hello.world.apk into some "text" files, including an AndroidManifest.xml and a lot of *.smali files. In the AndroidManifest.xml, I saw this:
<manifest package="com.hello.world" versionCode="100" versionName="1.0">
I chaged the value "com.hello.world" to "com.goodbye.world". Then I re-build the apk file and transferred it to my phone.
I installed the modified package, it was successfully installed and I see two "HelloWorld" icons in my app drawer!
I try to launch the HelloWorld 1.0, it succeeds.
I try to launch the HelloWorld 1.1, it FCs immediately.
Well, this is my situation. How can I make both of them launch-able in my phone? Is it possible? What should I modify apart from "package" filed in AndroidManifest.xml?
Thanks a lot.
~~~~
wzyboy
Click to expand...
Click to collapse
Well I'm not an android programmer but if I'm understanding you correctly you did the following (in the order I'm listing them):
1) Installed helloworld 1.1 (which over-wrote v1.0)
2) Opened the APK for helloworld 1.0 and made the manifest change
3) Installed the modded helloworld 1.0 on your phone
From a programmer point of view (just not with Android), if you followed the above scenario what is happening is HW1.1 installs it's files which are updated versions of the previous one (why else install an update). When you modded the HW1.0 you only changed the name and nothing else.
What is happening is when you go to install the modded version it's overwriting the newer files with the older ones since the phone is assuming the modded app is an entirely new program and allows the process to occur. This is why the modded one works and the 1.1 won't since the files it needs are the wrong version.
The only option of really have is to mod the actual program to look for different filenames, but without the source code to that app, that isn't going to happen.
Basically you need to have version 1.1 use the default files, and with the modded 1.0 you need to tell the software to "look" for the updated filenames (just don't forget to rename the actual files too).
Short of all that, as far as I know your SOL.
Rayvenhawk said:
Well I'm not an android programmer but if I'm understanding you correctly you did the following (in the order I'm listing them):
1) Installed helloworld 1.1 (which over-wrote v1.0)
2) Opened the APK for helloworld 1.0 and made the manifest change
3) Installed the modded helloworld 1.0 on your phone
From a programmer point of view (just not with Android), if you followed the above scenario what is happening is HW1.1 installs it's files which are updated versions of the previous one (why else install an update). When you modded the HW1.0 you only changed the name and nothing else.
What is happening is when you go to install the modded version it's overwriting the newer files with the older ones since the phone is assuming the modded app is an entirely new program and allows the process to occur. This is why the modded one works and the 1.1 won't since the files it needs are the wrong version.
The only option of really have is to mod the actual program to look for different filenames, but without the source code to that app, that isn't going to happen.
Basically you need to have version 1.1 use the default files, and with the modded 1.0 you need to tell the software to "look" for the updated filenames (just don't forget to rename the actual files too).
Short of all that, as far as I know your SOL.
Click to expand...
Click to collapse
Great thanks to your reply. But...
Android uses .apk files to install and run the application. When installing an apk file, the package installer just copys the apk file to /data/app directory and "register" the program in the system. The apk itself will not be "extracted" or anything else. That is to say, an apk file can be installed, and also can be run.
On the other hand, the apk will generate some files in /data/data directory when running. I am considering that it was these file that made the modded version FCs. I will try to look into these files to see will this works...
English is my second language, hoping that I did not made many grammar misktaks...
+1 on this topic. It's been a year and a half since the last reply and I've done a bit of searching online to find no answers. I anyone have some feedback on this? I'd ultimately like to use this to install two Google voice applications. I actually have an app from a blacked out version with a different icon. But if I install it it will overwrite the original Google voice app
cowboyaryk said:
+1 on this topic. It's been a year and a half since the last reply and I've done a bit of searching online to find no answers. I anyone have some feedback on this? I'd ultimately like to use this to install two Google voice applications. I actually have an app from a blacked out version with a different icon. But if I install it it will overwrite the original Google voice app
Click to expand...
Click to collapse
You are one hell of an archaeologist
Sent from My Samsung Galaxy S2 running Paranoidandroid Rom.What else if not?=P
I'd also like to know if that's possible. Even if it were possible, and an updated version of helloworld is relaeased (Say, HelloWorld v1.2), which version would it replace? Would it replace the (original) HelloWorld 1.1 or the (modded)HelloWorld 1.0?
Yes. Titanium backup. Profiles. These are the keywords.
lambstone said:
Yes. Titanium backup. Profiles. These are the keywords.
Click to expand...
Click to collapse
any idea how i would use TB and "profiles" to do it? sounds like you know from experience
Please use the Q&A Forum for questions &
Read the Forum Rules Ref Posting
Moving to Q&A
lufc said:
Please use the Q&A Forum for questions &
Read the Forum Rules Ref Posting
Moving to Q&A
Click to expand...
Click to collapse
thanks cheif i'm not the one who posted this almost two years ago
bbsrailfan said:
I'd also like to know if that's possible. Even if it were possible, and an updated version of helloworld is relaeased (Say, HelloWorld v1.2), which version would it replace? Would it replace the (original) HelloWorld 1.1 or the (modded)HelloWorld 1.0?
Click to expand...
Click to collapse
It would replace the only legitimate version found, the unmodded one. The point of modding the APK is to make Android see it as a completely different app, and not think of one as an update to the other.
dstruct2k said:
It would replace the only legitimate version found, the unmodded one. The point of modding the APK is to make Android see it as a completely different app, and not think of one as an update to the other.
Click to expand...
Click to collapse
do how do you mod the apk? change the filename? i'm sure theres more to it than that
lambstone said:
Yes. Titanium backup. Profiles. These are the keywords.
Click to expand...
Click to collapse
that feature on tibu is for switching DATA profiles basically so two or people can play the same game or whatever and keep they're progress separate like having multiple saved games. its not for switching versions of an app
I've tried to googling how to install multiple same applications in one device,but i didn't found anything how to do that simply...there are lot of stuff using ant and ruby script,but don't understand with that..so anyone figured out how to install multiple same apps with simply method? because i want to install operamini 7.5,but I've already instaled version 6.5...
sorry for my bad english
Need to install Galaxy S4 gallery on custom rom which has S4 gallary apk
Need help to install two versions of Gallary S4 and S5 Gallary can someone help...since I like the spiral option very good in S4 gallary which I miss and I like few features of Gallary from S5....in Ozcan rom on S4 i19500...please help
Necro, sorry. I have the same question. I have a copy of the old ifunny app and want both the new and the old, I would also like to run two versions of the same game (one with a nodded apk for unlimited coins and etc and one stock) I wouldn't mind if they shared data but if there's a way to make it where the asks do not share days that would be cool too.
Possible solution
Hi there,
While searching for a solution I found this thread and as it is one of the first results in google I thought to share what I found (didn't try yet) :
http://android.stackexchange.com/questions/19935/how-to-keep-two-versions-of-an-app-installed
It's first answer has a guide how to run two versions of same app throigh modifying onee of them with apktool.
Greets
Gachmuret said:
Hi there,
While searching for a solution I found this thread and as it is one of the first results in google I thought to share what I found (didn't try yet) :
http://android.stackexchange.com/questions/19935/how-to-keep-two-versions-of-an-app-installed
It's first answer has a guide how to run two versions of same app throigh modifying onee of them with apktool.
Greets
Click to expand...
Click to collapse
Hi
I would also like to do this for Google earth app I want to have both version 7.1.3 and 8.0.1 because the earlier version has more features but the latest looks more beautiful so I read the instructions from that link but it is way too complicated for a noob user like me plus judging from the last message it seems it hasn't been resolved so isn't there an app or xposed mod that does this automatically ?

[Q] Browser question (reverbnation related)

Hey all, thanks for taking the time to read this
I have a question about browsers....
I have tried many different browsers (mostly the popular ones) and have tried to access the music on my reverbnation page...unfortunately it will not initialize and wont play, I have no Idea why, ive tried changing the user agent to desktop, ipad..etc etc
I did some research on line and on these and different forums but I can only find very very old bits about it. can anyone tell me if they have an android browser that will play music on an artist page on reverbnation and if not, is it reverbnations fault or something missing from android browsers?
if anyone is willing to help and needs more info, please feel free to ask for whatever details you'd like.
first of all... is your android device has flash player? Since android 4.1 and up don't have flash player supported so maybe that's the reason why you can't play music on you browsers.
Hi and thanx for the response..I'm suing a custom rom and flash was installed on it version 11.1.115.17
What is the android version of your custom rom? What is your android device anyway? I'm using a Lg Optimus Black with a custom rom too and flash doesn't work for me either so i think that custom rom just doesn't support flash. Try searching for keywords like "flash player for CM9 on .....(your device's name)" or "flash player for .......(custom's rom name) on .......(your devide's name)" or something around that on google and maybe you can find the solution.
Sorry i'm not that much help but maybe other members of XDA have solutions for you. Wish you luck...

Problems with oma rk29 JB beta 1.5

Hi Oma, I hope you read this. I'm new so I can't post in the official thread of this rom.
I tested the android 4.2.2 beta build 1.5 for rk29 devices in my tablet (AOC mw0711) and worked great but I had some issues:
1-At the beginnig, a window will pop every second saying something like: "system ui has stopped" and I was able to stop it when I activated the full!screen app. The problem was completely fixed when I set the dpi to 120 in the build.prop.
2-For some reason, I wasn't able to place widgets in the lockscreen.
3-The rotation was working but wrongly. With this build I wasn't able to fix it in the build.prop
4-Everything looks weird with Dolphin Browser mini. I think this was already reported....
5-With the official rom of my tablet, I can take screenshots pressing both buttons of volume at the same time but I wasn't able to do that with this rom. I think this problem doesn't matter.
6- In settings, I wasn't able to access developer options
7-I know the angry birds thing is an old issue but for some reason, this game works completely perfect with the official JB rom
of my tablet, however I had the problem with the official ICS rom.
Keep your awesome work, I hope you start soon working with CM for rk29 devices and sorry for my english
Edit: Would someone can link this post into this thread please, it's because I can't post there. forum.xda-developers[.]com/showthread.php?p=38384541

Installed ROM for the first time and got myself into trouble - please help

So I always knew that ROMs are powerful and adding an extra dimension to an old device.
I had a TAB 10.1 and decide to install kitkat on it- [KK 4.4.4]Nameless ROM GT.
Followed Zedomax from highonandroid from a movie I found on YouTube and I can't be more frustrated!
The whole device is slow, the app store is not installed, I'm not used to anything and the whole OS glitches and freezes.
What the hell do I do now? Can someone please help me before I'll lose my mind? I start to regret I did this whole rooting thing but it's obviously too late.
When I got on the official tread of that ROM on the developers forum I see 800+ pages and I don't even know where to start.
In a search for a good soul out there who will save me from that mess.
Thanks!
to be more specific
imgingi said:
So I always knew that ROMs are powerful and adding an extra dimension to an old device.
I had a TAB 10.1 and decide to install kitkat on it- [KK 4.4.4]Nameless ROM GT.
Followed Zedomax from highonandroid from a movie I found on YouTube and I can't be more frustrated!
The whole device is slow, the app store is not installed, I'm not used to anything and the whole OS glitches and freezes.
What the hell do I do now? Can someone please help me before I'll lose my mind? I start to regret I did this whole rooting thing but it's obviously too late.
When I got on the official tread of that ROM on the developers forum I see 800+ pages and I don't even know where to start.
In a search for a good soul out there who will save me from that mess.
Thanks!
Click to expand...
Click to collapse
I would like to know how to install the Google Play store.
Tried everything I saw online (manula download from the browser) but after installation the deivce wont open the store. It'll try, a white screen will appear and nothing happens. Somone?
imgingi said:
I would like to know how to install the Google Play store.
Tried everything I saw online (manula download from the browser) but after installation the deivce wont open the store. It'll try, a white screen will appear and nothing happens. Somone?
Click to expand...
Click to collapse
same problems as you
imgingi said:
So I always knew that ROMs are powerful and adding an extra dimension to an old device.
I had a TAB 10.1 and decide to install kitkat on it- [KK 4.4.4]Nameless ROM GT.
Followed Zedomax from highonandroid from a movie I found on YouTube and I can't be more frustrated!
The whole device is slow, the app store is not installed, I'm not used to anything and the whole OS glitches and freezes.
What the hell do I do now? Can someone please help me before I'll lose my mind? I start to regret I did this whole rooting thing but it's obviously too late.
When I got on the official tread of that ROM on the developers forum I see 800+ pages and I don't even know where to start.
In a search for a good soul out there who will save me from that mess.
Thanks!
Click to expand...
Click to collapse
Well when installing a ROM you should also have the appropriate gapps package as well. The gapps package contains the play store and syncing libs needed as well as some other Google apps hence the name gapps. You could use Google to find the gapps package for your android version. Download it, reboot into recovery and flash. Reboot and play store should be there.

Firefox help

I'm sorry if this is posted in the wrong place I just need some help. Why is it that every EVERY time I have tabs open in Firefox on android and then I move to another app for a few seconds then I go back into Firefox it like reloads ALL my tabs I have to sign back in and its super annoying how can I fix this? And yes I have plenty of ram free I'm talking like 1 gig of ram free at almost all times
Information provided by you is very limited , you didnt even mention the rom you are running it on, kernel, firefox version etc.
please do so, and as much info you might provide.
My bad I did not think that information would be relevant to Firefox tabs ya know. But anyway I'm on viper os ROM android 9 and I'm using predator kernel 6.0 and my Firefox version is 68.7.0. Its done this nobmayter what kernel or version of Firefox I use thanks. And it even did this when I was on evira kernel and just using the stock kernel for this ROM as well.

Categories

Resources